Package org.odftoolkit.odfdom.dom.element.form

Examples of org.odftoolkit.odfdom.dom.element.form.FormPropertyElement


      String officeTimeValue, Double officeValue, String officeCurrency) {
    FormPropertiesElement parentEle = getFormPropertiesElementForWrite();

    // find the existing property with the appointed form property name
    NodeList properties = parentEle.getChildNodes();
    FormPropertyElement formProperty = null;
    for (int i = 0; i < properties.getLength(); i++) {
      FormPropertyElement property = (FormPropertyElement) properties
          .item(i);
      if (property.getFormPropertyNameAttribute()
          .equals(formPropertyName)) {
        formProperty = (FormPropertyElement) properties.item(i);
        break;
      }
    }
View Full Code Here

TOP

Related Classes of org.odftoolkit.odfdom.dom.element.form.FormPropertyElement

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.