/[classpath]/classpath/javax/swing/plaf/basic/BasicPanelUI.java
ViewVC logotype

Diff of /classpath/javax/swing/plaf/basic/BasicPanelUI.java

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

revision 1.7 by rabbit78, Wed Jul 27 14:43:40 2005 UTC revision 1.8 by rabbit78, Fri Sep 23 16:08:45 2005 UTC
# Line 68  public class BasicPanelUI extends PanelU Line 68  public class BasicPanelUI extends PanelU
68      p.setBackground(defaults.getColor("Panel.background"));      p.setBackground(defaults.getColor("Panel.background"));
69      p.setOpaque(true);      p.setOpaque(true);
70    }    }
71    
72      /**
73       * Uninstalls this UI from the JPanel.
74       *
75       * @param c the JPanel from which to uninstall this UI
76       */
77      public void uninstallUI(JComponent c)
78      {
79        uninstallDefaults((JPanel) c);
80      }
81    
82      /**
83       * Uninstalls the UI defaults that have been install through
84       * {@link #installDefaults}.
85       *
86       * @param p the panel from which to uninstall the UI defaults
87       */
88      protected void uninstallDefaults(JPanel p)
89      {
90        // Nothing to do here.
91      }
92  }  }

Legend:
Removed from v.1.7  
changed lines
  Added in v.1.8

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