KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sun > java > swing > plaf > nimbus > OuterGlowEffect


1 /*
2  * @(#)OuterGlowEffect.java 1.2 07/12/12
3  *
4  * Copyright 2007 Sun Microsystems, Inc. All rights reserved.
5  * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
6  */

7 package com.sun.java.swing.plaf.nimbus;
8
9 import java.awt.Color JavaDoc;
10
11 /**
12  * InnerGlowEffect
13  *
14  * @author Created by Jasper Potts (Jun 21, 2007)
15  * @version 1.0
16  */

17 class OuterGlowEffect extends DropShadowEffect {
18     OuterGlowEffect() {
19         distance = 0;
20         color = new Color JavaDoc(255, 255, 211);
21     }
22 }
23
Popular Tags