source: trunk/gcc/libjava/javax/swing/plaf/IconUIResource.java

Last change on this file was 1389, checked in by bird, 21 years ago

Initial revision

  • Property cvs2svn:cvs-rev set to 1.1
  • Property svn:eol-style set to native
  • Property svn:executable set to *
File size: 469 bytes
Line 
1package javax.swing.plaf;
2import java.awt.Component;
3import java.awt.Graphics;
4import java.io.Serializable;
5import javax.swing.Icon;
6/**
7 * STUBBED
8 */
9public class IconUIResource implements Icon, UIResource, Serializable
10{
11 public IconUIResource(Icon delegate)
12 {
13 }
14 public void paintIcon(Component c, Graphics g, int x, int y)
15 {
16 }
17 public int getIconWidth()
18 {
19 return 0;
20 }
21 public int getIconHeight()
22 {
23 return 0;
24 }
25} // class IconUIResource
Note: See TracBrowser for help on using the repository browser.