Package org.rascalmpl.library.vis.figure.interaction.swtwidgets

Examples of org.rascalmpl.library.vis.figure.interaction.swtwidgets.Choice


   
    case CHECKBOX:
      return new Checkbox(env,  ((IString) c.get(0)).getValue(),((IBool)c.get(1)).getValue(), c.get(2), properties);
     
    case CHOICE:
      return new Choice(env, makeStringList((IList) c.get(0)), c.get(1),  properties);
   
    case COMBO:
      return new Combo(env, makeStringList((IList)c.get(0)), c.get(1),  properties);         
     
    case COMPUTEFIGURE:
View Full Code Here

TOP

Related Classes of org.rascalmpl.library.vis.figure.interaction.swtwidgets.Choice

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.