Package org.apache.padaf.xmpbox.type

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


   *
   * @param url
   *            ManageFrom Value to set
   */
  public void setManageFromValue(String url) {
    setManageFrom(new TextType(metadata, localPrefix, MANAGEFROM, url));
  }
View Full Code Here


   * Get ManageFrom value
   *
   * @return ManageFrom value
   */
  public String getManageFromValue() {
    TextType tt = getManageFrom();
    return tt != null ? tt.getStringValue() : null;
  }
View Full Code Here

   *
   * @param url
   *            OriginalDocumentId value to set
   */
  public void setOriginalDocumentIDValue(String url) {
    setOriginalDocumentID(new TextType(metadata, localPrefix,
        ORIGINALDOCUMENTID, url));
  }
View Full Code Here

   * Get OriginalDocumentId value
   *
   * @return OriginalDocumentId value
   */
  public String getOriginalDocumentIDValue() {
    TextType tt = getOriginalDocumentID();
    return tt != null ? tt.getStringValue() : null;
  }
View Full Code Here

   *
   * @param url
   *            renditionClass Value to set
   */
  public void setRenditionClassValue(String url) {
    setRenditionClass(new TextType(metadata, localPrefix, RENDITIONCLASS,
        url));
  }
View Full Code Here

   * Get RenditionClass value
   *
   * @return RenditionClass value
   */
  public String getRenditionClassValue() {
    TextType tt = getRenditionClass();
    return tt != null ? tt.getStringValue() : null;
  }
View Full Code Here

   *
   * @param url
   *            RenditionParams Value to set
   */
  public void setRenditionParamsValue(String url) {
    setRenditionParams(new TextType(metadata, localPrefix, RENDITIONPARAMS,
        url));
  }
View Full Code Here

   * Get RenditionParams value
   *
   * @return RenditionParams value
   */
  public String getRenditionParamsValue() {
    TextType tt = getRenditionParams();
    return tt != null ? tt.getStringValue() : null;
  }
View Full Code Here

   *
   * @param url
   *            VersionId value to set
   */
  public void setVersionIDValue(String url) {
    setVersionID(new TextType(metadata, localPrefix, VERSIONID, url));
  }
View Full Code Here

   * Get VersionId value
   *
   * @return VersionId value
   */
  public String getVersionIDValue() {
    TextType tt = getVersionID();
    return tt != null ? tt.getStringValue() : null;
  }
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.