Method from org.apache.jempbox.xmp.XMPSchemaPDF Detail: |
public String getKeywords() {
return getTextProperty( prefix + ":Keywords" );
}
|
public String getPDFVersion() {
return getTextProperty( prefix + ":PDFVersion" );
}
|
public String getProducer() {
return getTextProperty( prefix + ":Producer" );
}
Get the value of the producer property. |
public void setKeywords(String keywords) {
setTextProperty( prefix + ":Keywords", keywords );
}
|
public void setPDFVersion(String pdfVersion) {
setTextProperty( prefix + ":PDFVersion", pdfVersion );
}
Set the PDF file version. 1.2,1.3,... |
public void setProducer(String producer) {
setTextProperty( prefix + ":Producer", producer );
}
|