use of org.apache.xmpbox.type.TextType in project pdfbox by apache.
the class AdobePDFSchema method setPDFVersion.
/**
* Set the PDFVersion
*
* @param value
* Value to set
*/
public void setPDFVersion(String value) {
TextType version;
version = createTextType(PDF_VERSION, value);
addProperty(version);
}
use of org.apache.xmpbox.type.TextType in project pdfbox by apache.
the class PDFAIdentificationSchema method setAmd.
/**
* Set the PDF/A amendment identifier
*
* @param value
* The amendment identifier value to set
*/
public void setAmd(String value) {
TextType amd = createTextType(AMD, value);
addProperty(amd);
}
use of org.apache.xmpbox.type.TextType in project pdfbox by apache.
the class PhotoshopSchema method setAuthorsPosition.
public void setAuthorsPosition(String text) {
TextType tt = (TextType) instanciateSimple(AUTHORS_POSITION, text);
setAuthorsPositionProperty(tt);
}
use of org.apache.xmpbox.type.TextType in project pdfbox by apache.
the class PhotoshopSchema method setSupplementalCategories.
public void setSupplementalCategories(String text) {
TextType tt = (TextType) instanciateSimple(SUPPLEMENTAL_CATEGORIES, text);
setSupplementalCategoriesProperty(tt);
}
use of org.apache.xmpbox.type.TextType in project pdfbox by apache.
the class PhotoshopSchema method setCity.
public void setCity(String text) {
TextType tt = (TextType) instanciateSimple(CITY, text);
setCityProperty(tt);
}
Aggregations