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

Examples of org.rascalmpl.library.vis.figure.interaction.MouseOver


      PropertyValue<Integer> selection = Properties.produceMaybeComputedValue(Types.INT,c.get(2),properties,env);
      return new Scale(env, Dimension.X, low,high, selection, c.get(3), properties);
    case MOUSEOVER:
       under = makeChild(0,env,c,properties,childPropsNext);
       over =  makeChild(1,env,c,properties,childPropsNext);
       return new MouseOver(under, over, properties);
    case PACK: 
      children = makeList(env,c.get(0),properties,childPropsNext);
      return new Pack(children, properties);
     
    case PLACE:
View Full Code Here

TOP

Related Classes of org.rascalmpl.library.vis.figure.interaction.MouseOver

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.