Package pu.web.client

Examples of pu.web.client.PU_Color


  private PU_Color mColor;
 
  public PU_TextPart(String text, int red, int green, int blue)
  {
    mText = text;
    mColor = new PU_Color(red, green, blue, 255);
  }
View Full Code Here


    return mText;
  }
 
  public void setColor(int red, int green, int blue)
  {
    mColor = new PU_Color(red, green, blue, 255);
  }
View Full Code Here

TOP

Related Classes of pu.web.client.PU_Color

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.