Package us.thinkable.framework.form

Examples of us.thinkable.framework.form.XField


  }

  public void setValue(String name, String value) {
    Component c = this.getComponent(name);
    if (c != null) {
      XField xfield = (XField) c;
      xfield.setValue(value);
    }
  }
View Full Code Here


  }

  public String getValue(String name) {
    Component c = this.getComponent(name);
    if (c != null) {
      XField xfield = (XField) c;
      return xfield.getValue();
    }
    return null;
  }
View Full Code Here

TOP

Related Classes of us.thinkable.framework.form.XField

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.