Package org.apache.padaf.xmpbox.type

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


   *            Name of property
   * @param description
   *            Description which will be used
   */
  public void addPropertyDescription(String name, String description) {
    propDescs.add(new PropertyDescription(name, description));
  }
View Full Code Here


          propTypeAnnot = field.getAnnotation(PropertyType.class);
          try {
            if (xmlPropDesc != null) {
              Iterator<PropertyDescription> it = xmlPropDesc
                  .iterator();
              PropertyDescription tmp;
              propDesc = null;
              while (it.hasNext() && (propDesc == null)) {
                tmp = it.next();
                if (tmp.getPropertyName().equals(propName)) {
                  propDesc = tmp.getDescription();
                }
              }

            } else {
              propDesc = propExtDefAnnot.propertyDescription();
View Full Code Here

TOP

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

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.