use of org.apache.xmpbox.type.TextType in project pdfbox by apache.
the class PhotoshopSchema method setHistory.
public void setHistory(String text) {
TextType tt = (TextType) instanciateSimple(HISTORY, text);
setHistoryProperty(tt);
}
use of org.apache.xmpbox.type.TextType in project pdfbox by apache.
the class XMPBasicSchema method setLabel.
/**
* set a word or a short phrase which identifies a document as a member of a user-defined collection
*
* @param text
* the label value to set
*/
public void setLabel(String text) {
TextType tt = (TextType) instanciateSimple(LABEL, text);
setLabelProperty(tt);
}
use of org.apache.xmpbox.type.TextType in project pdfbox by apache.
the class XMPMediaManagementSchema method setManagerVariant.
/**
* Set ManagerVariant value
*
* @param value
* ManagerVariant value to set
*/
public void setManagerVariant(String value) {
TextType tt = (TextType) instanciateSimple(MANAGERVARIANT, value);
setManagerVariantProperty(tt);
}
use of org.apache.xmpbox.type.TextType in project pdfbox by apache.
the class XMPMediaManagementSchema method setRenditionParams.
/**
* Set RenditionParams Value
*
* @param url
* RenditionParams Value to set
*/
public void setRenditionParams(String url) {
TextType tt = (TextType) instanciateSimple(RENDITIONPARAMS, url);
setRenditionParamsProperty(tt);
}
use of org.apache.xmpbox.type.TextType in project pdfbox by apache.
the class XMPMediaManagementSchema method setOriginalDocumentID.
/**
* Set OriginalDocumentId value
*
* @param url
* OriginalDocumentId value to set
*/
public void setOriginalDocumentID(String url) {
TextType tt = (TextType) instanciateSimple(ORIGINALDOCUMENTID, url);
setOriginalDocumentIDProperty(tt);
}
Aggregations