499500501502503504505506
* Get the Nickname property value * * @return the Nickname value */ public String getNicknameValue() { TextType tt = ((TextType) getProperty(localPrefixSep + NICKNAME)); return tt == null ? null : tt.getStringValue(); }
737475767778798081
* * @param value * Value to set */ public void setKeywordsValue(String value) { TextType keywords; keywords = new TextType(metadata, localPrefix, KEYWORDS, value); addProperty(keywords); }
9596979899100101102103104
* * @param value * Value to set */ public void setPDFVersionValue(String value) { TextType version; version = new TextType(metadata, localPrefix, PDF_VERSION, value); addProperty(version); }
118119120121122123124125126
* * @param value * Value to set */ public void setProducerValue(String value) { TextType producer; producer = new TextType(metadata, localPrefix, PRODUCER, value); addProperty(producer); }
123124125126127128129
* * @param text * Value to set */ public void setCoverageValue(String text) { addProperty(new TextType(metadata, localPrefix, COVERAGE, text)); }
177178179180181182183
* * @param mimeType * Value to set */ public void setFormatValue(String mimeType) { addProperty(new TextType(metadata, localPrefix, FORMAT, mimeType)); }
187188189190191192193
* * @param text * Value to set */ public void setIdentifierValue(String text) { addProperty(new TextType(metadata, localPrefix, IDENTIFIER, text)); }
249250251252253254255
* * @param text * Value to set */ public void setSourceValue(String text) { addProperty(new TextType(metadata, localPrefix, SOURCE, text)); }
340341342343344345346347
* Return the value of the coverage * * @return Coverage value */ public String getCoverageValue() { TextType tt = (TextType) getProperty(localPrefixSep + COVERAGE); return tt == null ? null : tt.getStringValue(); }
424425426427428429430431
* return the file format value * * @return the format value */ public String getFormatValue() { TextType tt = (TextType) getProperty(localPrefixSep + FORMAT); return tt == null ? null : tt.getStringValue(); }