Package org.apache.padaf.xmpbox.type

Examples of org.apache.padaf.xmpbox.type.TextType


   *
   * @param description
   *            The value to set
   */
  public void setDescriptionValue(String description) {
    content.addProperty(new TextType(metadata, PDFAFIELDPREFIX,
        DESCRIPTION, description));
  }
View Full Code Here


  public TextType getAncestor() {
    return (TextType) getProperty(localPrefix + ANCESTOR);
  }
 
  public String getAncestorValue() {
    TextType tt = ((TextType) getProperty(localPrefix + ANCESTOR));
    return tt == null ? null : tt.getStringValue();
  }
View Full Code Here

    TextType tt = ((TextType) getProperty(localPrefix + ANCESTOR));
    return tt == null ? null : tt.getStringValue();
  }
 
  public void setAncestorValue(String text) {
    addProperty(new TextType(metadata, localPrefix, ANCESTOR, text));
  }
View Full Code Here

  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();
  }
View Full Code Here

    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));
  }
View Full Code Here

  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();
  }
View Full Code Here

    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));
  }
View Full Code Here

  public TextType getCategory() {
    return (TextType) getProperty(localPrefix + CATEGORY);
  }
 
  public String getCategoryValue() {
    TextType tt = ((TextType) getProperty(localPrefix + CATEGORY));
    return tt == null ? null : tt.getStringValue();
  }
View Full Code Here

    TextType tt = ((TextType) getProperty(localPrefix + CATEGORY));
    return tt == null ? null : tt.getStringValue();
  }
 
  public void setCategoryValue(String text) {
    addProperty(new TextType(metadata, localPrefix, CATEGORY, text));
  }
View Full Code Here

  public TextType getCity() {
    return (TextType) getProperty(localPrefix + CITY);
  }
 
  public String getCityValue() {
    TextType tt = ((TextType) getProperty(localPrefix + CITY));
    return tt == null ? null : tt.getStringValue();
  }
View Full Code Here

TOP

Related Classes of org.apache.padaf.xmpbox.type.TextType

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.