use of org.apache.xmpbox.type.TextType in project pdfbox by apache.
the class PhotoshopSchema method setInstructions.
public void setInstructions(String text) {
TextType tt = (TextType) instanciateSimple(INSTRUCTIONS, text);
setInstructionsProperty(tt);
}
use of org.apache.xmpbox.type.TextType in project pdfbox by apache.
the class PhotoshopSchema method setCountry.
public void setCountry(String text) {
TextType tt = (TextType) instanciateSimple(COUNTRY, text);
setCountryProperty(tt);
}
use of org.apache.xmpbox.type.TextType in project pdfbox by apache.
the class PhotoshopSchema method setHeadline.
public void setHeadline(String text) {
TextType tt = (TextType) instanciateSimple(HEADLINE, text);
setHeadlineProperty(tt);
}
use of org.apache.xmpbox.type.TextType in project pdfbox by apache.
the class PhotoshopSchema method setSource.
public void setSource(String text) {
TextType source = (TextType) instanciateSimple(SOURCE, text);
setSourceProperty(source);
}
use of org.apache.xmpbox.type.TextType in project pdfbox by apache.
the class PhotoshopSchema method setState.
public void setState(String text) {
TextType tt = (TextType) instanciateSimple(STATE, text);
setStateProperty(tt);
}
Aggregations