Package com.sardak.antform.types

Examples of com.sardak.antform.types.BaseType


   * construct the gui widgets
   */
  protected void build() {
    displayedWidgets = new ArrayList();
    for (int i = 0; i < widgets.size(); i++) {
      BaseType o = (BaseType) widgets.get(i);
      if (o.validate(this)) {
        if (o.shouldBeDisplayed(getProject())) {
          if (o instanceof DummyComponent) {
            o = ((DummyComponent) o).getRealType();
            widgets.set(i, o);
          }
          o.addToControlPanel(control.getPanel());
          displayedWidgets.add(o);
        }
        if (o.getIf() != null || o.getUnless() != null) {
          dynamic = true;
        }
      } else {
        needFail = true;
      }
View Full Code Here

TOP

Related Classes of com.sardak.antform.types.BaseType

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.