949596979899100101
* * @param description * The value to set */ public void setDescriptionValue(String description) { content.addProperty(new TextType(metadata, PDFAFIELDPREFIX, DESCRIPTION, description)); }
110111112113114115116117
public TextType getAncestor() { return (TextType) getProperty(localPrefix + ANCESTOR); } public String getAncestorValue() { TextType tt = ((TextType) getProperty(localPrefix + ANCESTOR)); return tt == null ? null : tt.getStringValue(); }
115116117118119120121
TextType tt = ((TextType) getProperty(localPrefix + ANCESTOR)); return tt == null ? null : tt.getStringValue(); } public void setAncestorValue(String text) { addProperty(new TextType(metadata, localPrefix, ANCESTOR, text)); }
127128129130131132133134
public TextType getAuthorsPosition() { return (TextType) getProperty(localPrefix + AUTHORS_POSITION); } public String getAuthorsPositionValue() { TextType tt = ((TextType) getProperty(localPrefix + AUTHORS_POSITION)); return tt == null ? null : tt.getStringValue(); }
132133134135136137138
TextType tt = ((TextType) getProperty(localPrefix + AUTHORS_POSITION)); return tt == null ? null : tt.getStringValue(); } public void setAuthorsPositionValue(String text) { addProperty(new TextType(metadata, localPrefix, AUTHORS_POSITION, text)); }
144145146147148149150151
public TextType getCaptionWriter() { return (TextType) getProperty(localPrefix + CAPTION_WRITER); } public String getCaptionWriterValue() { TextType tt = ((TextType) getProperty(localPrefix + CAPTION_WRITER)); return tt == null ? null : tt.getStringValue(); }
149150151152153154155
TextType tt = ((TextType) getProperty(localPrefix + CAPTION_WRITER)); return tt == null ? null : tt.getStringValue(); } public void setCaptionWriterValue(String text) { addProperty(new TextType(metadata, localPrefix, CAPTION_WRITER, text)); }
161162163164165166167168
public TextType getCategory() { return (TextType) getProperty(localPrefix + CATEGORY); } public String getCategoryValue() { TextType tt = ((TextType) getProperty(localPrefix + CATEGORY)); return tt == null ? null : tt.getStringValue(); }
166167168169170171172
TextType tt = ((TextType) getProperty(localPrefix + CATEGORY)); return tt == null ? null : tt.getStringValue(); } public void setCategoryValue(String text) { addProperty(new TextType(metadata, localPrefix, CATEGORY, text)); }
178179180181182183184185
public TextType getCity() { return (TextType) getProperty(localPrefix + CITY); } public String getCityValue() { TextType tt = ((TextType) getProperty(localPrefix + CITY)); return tt == null ? null : tt.getStringValue(); }