Method from org.apache.jempbox.xmp.XMPSchemaPhotoshop Detail: |
public void addSupplementalCategory(String s) {
addBagValue(prefix + ":SupplementalCategories", s);
}
Add a new supplemental category. |
public String getAuthorsPosition() {
return getTextProperty(prefix + ":AuthorsPosition");
}
|
public String getCaptionWriter() {
return getTextProperty(prefix + ":CaptionWriter");
}
|
public String getCategory() {
return getTextProperty(prefix + ":Category");
}
|
public String getCity() {
return getTextProperty(prefix + ":City");
}
|
public String getCountry() {
return getTextProperty(prefix + ":Country");
}
|
public String getCredit() {
return getTextProperty(prefix + ":Credit");
}
|
public String getDateCreated() {
return getTextProperty(prefix + ":DateCreated");
}
|
public String getHeadline() {
return getTextProperty(prefix + ":Headline");
}
|
public String getInstructions() {
return getTextProperty(prefix + ":Instructions");
}
|
public String getSource() {
return getTextProperty(prefix + ":Source");
}
|
public String getState() {
return getTextProperty(prefix + ":State");
}
|
public List<String> getSupplementalCategories() {
return getBagList(prefix + ":SupplementalCategories");
}
Get a list of all supplemental categories. |
public String getTransmissionReference() {
return getTextProperty(prefix + ":TransmissionReference");
}
The transmission reference. |
public Integer getUrgency() {
return getIntegerProperty(prefix + ":Urgency");
}
|
public void removeSupplementalCategory(String s) {
removeBagValue(prefix + ":SupplementalCategories", s);
}
Remove a supplemental category. |
public void setAuthorsPosition(String s) {
setTextProperty(prefix + ":AuthorsPosition", s);
}
|
public void setCaptionWriter(String s) {
setTextProperty(prefix + ":CaptionWriter", s);
}
|
public void setCategory(String s) {
if( s != null && s.length() > 3 )
{
throw new RuntimeException( "Error: photoshop:Category is limited to three characters value='" + s + "'" );
}
setTextProperty(prefix + ":Category", s);
}
Category; limited to 3 7-bit characters. |
public void setCity(String s) {
setTextProperty(prefix + ":City", s);
}
|
public void setCountry(String s) {
setTextProperty(prefix + ":Country", s);
}
|
public void setCredit(String s) {
setTextProperty(prefix + ":Credit", s);
}
|
public void setDateCreated(String s) {
setTextProperty(prefix + ":DateCreated", s);
}
Date created; creation date of the source document which may be
earlier than the digital representation. |
public void setHeadline(String s) {
setTextProperty(prefix + ":Headline", s);
}
|
public void setInstructions(String s) {
setTextProperty(prefix + ":Instructions", s);
}
|
public void setSource(String s) {
setTextProperty(prefix + ":Source", s);
}
|
public void setState(String s) {
setTextProperty(prefix + ":State", s);
}
|
public void setTransmissionReference(String s) {
setTextProperty(prefix + ":TransmissionReference", s);
}
The transmission reference. |
public void setUrgency(Integer s) {
if( s != null )
{
if( s.intValue() < 1 || s.intValue() > 8 )
{
throw new RuntimeException( "Error: photoshop:Urgency must be between 1 and 8. value=" + s );
}
}
setIntegerProperty(prefix + ":Urgency", s);
}
|