Package org.lekan.graphics

Examples of org.lekan.graphics.SGForegroundColorChange


   */
  public abstract SGObject drawObject();
 
  public List<SGObject> disabledDrawObjects(){
    List<SGObject> objects = new ArrayList<SGObject>();
    objects.add(new SGForegroundColorChange(SGConstants.COLOR_GRAY_60P));
    objects.add(drawObject());
    objects.add(new SGForegroundColorChange(SGConstants.COLOR_FG_DEFAULT));
    return objects;
  }
View Full Code Here

TOP

Related Classes of org.lekan.graphics.SGForegroundColorChange

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.