Package org.lorikeet

Examples of org.lorikeet.LObject


  }
 
  @OnEvent(eventType=EventType.Clicked, elementName="myRect")
  public void RectClick()
  {
    LObject rect = getUI("myRect");
    if (rect.get("Background").equals("SkyBlue"))
    {
      rect.set("Background", "IndianRed");
    }
    else
    {
      rect.set("Background", "SkyBlue");
    }
    getUI("root").redraw();;
  }
View Full Code Here

TOP

Related Classes of org.lorikeet.LObject

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.