You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
60 lines
978 B
60 lines
978 B
/*
|
|
* Copyright (c) 1997, 1998, Oracle and/or its affiliates. All rights reserved.
|
|
* ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*/
|
|
package javax.swing;
|
|
|
|
import java.awt.Graphics;
|
|
import java.awt.Component;
|
|
|
|
|
|
/**
|
|
* A small fixed size picture, typically used to decorate components.
|
|
*
|
|
* @see ImageIcon
|
|
*/
|
|
|
|
public interface Icon
|
|
{
|
|
/**
|
|
* Draw the icon at the specified location. Icon implementations
|
|
* may use the Component argument to get properties useful for
|
|
* painting, e.g. the foreground or background color.
|
|
*/
|
|
void paintIcon(Component c, Graphics g, int x, int y);
|
|
|
|
/**
|
|
* Returns the icon's width.
|
|
*
|
|
* @return an int specifying the fixed width of the icon.
|
|
*/
|
|
int getIconWidth();
|
|
|
|
/**
|
|
* Returns the icon's height.
|
|
*
|
|
* @return an int specifying the fixed height of the icon.
|
|
*/
|
|
int getIconHeight();
|
|
}
|