source: trunk/gcc/libjava/javax/swing/plaf/TabbedPaneUI.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: 392 bytes
Line 
1package javax.swing.plaf;
2
3import java.awt.*;
4import javax.swing.*;
5
6public class TabbedPaneUI extends ComponentUI
7{
8 public Rectangle getTabBounds(JTabbedPane pane, int index)
9 {
10 return null;
11 }
12
13 public int getTabRunCount(JTabbedPane pane)
14 {
15 return 0;
16 }
17
18 public int tabForCoordinate(JTabbedPane pane, int x, int y)
19 {
20 return 0;
21 }
22}
23
Note: See TracBrowser for help on using the repository browser.