Package org.apache.padaf.xmpbox.type

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


   * Get the Nickname property value
   *
   * @return the Nickname value
   */
  public String getNicknameValue() {
    TextType tt = ((TextType) getProperty(localPrefixSep + NICKNAME));
    return tt == null ? null : tt.getStringValue();
  }
View Full Code Here


   *
   * @param value
   *            Value to set
   */
  public void setKeywordsValue(String value) {
    TextType keywords;
    keywords = new TextType(metadata, localPrefix, KEYWORDS, value);
    addProperty(keywords);
  }
View Full Code Here

   *
   * @param value
   *            Value to set
   */
  public void setPDFVersionValue(String value) {
    TextType version;
    version = new TextType(metadata, localPrefix, PDF_VERSION, value);
    addProperty(version);

  }
View Full Code Here

   *
   * @param value
   *            Value to set
   */
  public void setProducerValue(String value) {
    TextType producer;
    producer = new TextType(metadata, localPrefix, PRODUCER, value);
    addProperty(producer);
  }
View Full Code Here

   *
   * @param text
   *            Value to set
   */
  public void setCoverageValue(String text) {
    addProperty(new TextType(metadata, localPrefix, COVERAGE, text));
  }
View Full Code Here

   *
   * @param mimeType
   *            Value to set
   */
  public void setFormatValue(String mimeType) {
    addProperty(new TextType(metadata, localPrefix, FORMAT, mimeType));
  }
View Full Code Here

   *
   * @param text
   *            Value to set
   */
  public void setIdentifierValue(String text) {
    addProperty(new TextType(metadata, localPrefix, IDENTIFIER, text));
  }
View Full Code Here

   *
   * @param text
   *            Value to set
   */
  public void setSourceValue(String text) {
    addProperty(new TextType(metadata, localPrefix, SOURCE, text));
  }
View Full Code Here

   * Return the value of the coverage
   *
   * @return Coverage value
   */
  public String getCoverageValue() {
    TextType tt = (TextType) getProperty(localPrefixSep + COVERAGE);
    return tt == null ? null : tt.getStringValue();
  }
View Full Code Here

   * return the file format value
   *
   * @return the format value
   */
  public String getFormatValue() {
    TextType tt = (TextType) getProperty(localPrefixSep + FORMAT);
    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.