Searched defs:alpha (Results 1 - 2 of 2) sorted by relevance

/solaris-userland-s11u3/components/visual-panels/core/src/java/util/com/oracle/solaris/vp/util/swing/
H A DColorUtil.java50 * Returns a color identicial to the given color but with a new alpha.
55 * @param alpha
56 * the alpha setting
58 public static Color alpha(Color c, float alpha) { argument
60 return new Color(rgb[0], rgb[1], rgb[2], alpha);
H A DFadablePanel.java99 public void timingEvent(float alpha) { argument
100 setAlpha(1f - alpha);
157 public void setAlpha(float alpha) { argument
158 this.composite = alpha == 1f ? null : AlphaComposite.getInstance(
159 AlphaComposite.SRC_OVER, alpha);

Completed in 521 milliseconds