1 /*2 * @(#)InnerGlowEffect.java 1.2 07/12/123 *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 ;10 11 /**12 * InnerGlowEffect13 *14 * @author Created by Jasper Potts (Jun 21, 2007)15 * @version 1.016 */17 class InnerGlowEffect extends InnerShadowEffect {18 InnerGlowEffect() {19 distance = 0;20 color = new Color (255, 255, 211);21 }22 }23