/[classpath]/classpath/javax/swing/plaf/metal/MetalInternalFrameUI.java
ViewVC logotype

Diff of /classpath/javax/swing/plaf/metal/MetalInternalFrameUI.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.1.2.3 by gnu_andrew, Tue Aug 2 20:12:38 2005 UTC revision 1.1.2.4 by gnu_andrew, Sat Sep 10 15:31:52 2005 UTC
# Line 42  import java.util.HashMap; Line 42  import java.util.HashMap;
42    
43  import javax.swing.JComponent;  import javax.swing.JComponent;
44  import javax.swing.JInternalFrame;  import javax.swing.JInternalFrame;
45    import javax.swing.border.EmptyBorder;
46  import javax.swing.plaf.ComponentUI;  import javax.swing.plaf.ComponentUI;
47  import javax.swing.plaf.basic.BasicInternalFrameUI;  import javax.swing.plaf.basic.BasicInternalFrameUI;
48    
49    
50  public class MetalInternalFrameUI  public class MetalInternalFrameUI
51    extends BasicInternalFrameUI    extends BasicInternalFrameUI
52  {  {
# Line 85  public class MetalInternalFrameUI Line 87  public class MetalInternalFrameUI
87    
88      return instance;      return instance;
89    }    }
90      
91      protected JComponent createNorthPane(JInternalFrame w)
92      {
93        titlePane = new MetalInternalFrameTitlePane(w);
94        titlePane.setBorder(new EmptyBorder(2, 2, 2, 2));
95        return titlePane;  
96      }
97      
98    
99  }  }

Legend:
Removed from v.1.1.2.3  
changed lines
  Added in v.1.1.2.4

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26