Examples of InputTextField


Examples of org.openiaml.model.model.visual.InputTextField

  public void testCreatesCanCastCondition() throws Exception {

    root = loadAndInfer(InputTextFieldDataTypeSync.class);
    Frame home = assertHasFrame(root, "Home");

    InputTextField email = assertHasInputTextField(home, "Email 2");
    {
      BuiltinProperty canCast = assertHasBuiltinProperty(email, "can cast?");
      assertGenerated(canCast);
    }

    InputTextField integer = assertHasInputTextField(home, "Integer");
    {
      BuiltinProperty canCast = assertHasBuiltinProperty(integer, "can cast?");
      assertGenerated(canCast);
    }

    InputTextField def = assertHasInputTextField(home, "Default");
    {
      BuiltinProperty canCast = assertHasBuiltinProperty(def, "can cast?");
      assertGenerated(canCast);
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.