Package org.araneaframework.uilib.form.control

Examples of org.araneaframework.uilib.form.control.Control


    FormWidget form = makeUsualForm();

    assertTrue("'myCheckBox' must contain a CheckboxControl!", form.getControlByFullName("myCheckBox") instanceof CheckboxControl);
    assertTrue("'hierarchyTest.myTextarea' must contain a TextareaControl!", form.getControlByFullName("hierarchyTest.myTextarea") instanceof TextareaControl);
   
    Control result = form.getControlByFullName("hierarchyTestm.yTextarea");
   
    assertTrue("An exception must be thrown if wrong element name is given!", result == null);
  }
View Full Code Here

TOP

Related Classes of org.araneaframework.uilib.form.control.Control

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.