/*
* @(#)SwingHeavyWeight.java 1.2 05/11/17
*
* Copyright 2006 Sun Microsystems, Inc. All rights reserved.
* SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
*/
package javax.swing;
/**
* An interface used to tag heavy weight components that we want processed
* by Swing's RepaintManager.
*
* @version 1.2 11/17/05
* @author Scott Violet
*/
interface SwingHeavyWeight {
}
|