jdk/src/share/classes/javax/swing/plaf/basic/BasicInternalFrameTitlePane.java
changeset 21278 ef8a3a2a72f2
parent 21259 4780cf380d96
child 22574 7f8ce0c8c20a
equal deleted inserted replaced
21277:bd380b80f9ea 21278:ef8a3a2a72f2
   563     /**
   563     /**
   564      * This class should be treated as a "protected" inner class.
   564      * This class should be treated as a "protected" inner class.
   565      * Instantiate it only within subclasses of <code>Foo</code>.
   565      * Instantiate it only within subclasses of <code>Foo</code>.
   566      */
   566      */
   567     public class PropertyChangeHandler implements PropertyChangeListener {
   567     public class PropertyChangeHandler implements PropertyChangeListener {
   568         // NOTE: This class exists only for backward compatability. All
   568         // NOTE: This class exists only for backward compatibility. All
   569         // its functionality has been moved into Handler. If you need to add
   569         // its functionality has been moved into Handler. If you need to add
   570         // new functionality add it to the Handler, but make sure this
   570         // new functionality add it to the Handler, but make sure this
   571         // class calls into the Handler.
   571         // class calls into the Handler.
   572         public void propertyChange(PropertyChangeEvent evt) {
   572         public void propertyChange(PropertyChangeEvent evt) {
   573             getHandler().propertyChange(evt);
   573             getHandler().propertyChange(evt);
   577     /**
   577     /**
   578      * This class should be treated as a &quot;protected&quot; inner class.
   578      * This class should be treated as a &quot;protected&quot; inner class.
   579      * Instantiate it only within subclasses of <code>Foo</code>.
   579      * Instantiate it only within subclasses of <code>Foo</code>.
   580      */
   580      */
   581     public class TitlePaneLayout implements LayoutManager {
   581     public class TitlePaneLayout implements LayoutManager {
   582         // NOTE: This class exists only for backward compatability. All
   582         // NOTE: This class exists only for backward compatibility. All
   583         // its functionality has been moved into Handler. If you need to add
   583         // its functionality has been moved into Handler. If you need to add
   584         // new functionality add it to the Handler, but make sure this
   584         // new functionality add it to the Handler, but make sure this
   585         // class calls into the Handler.
   585         // class calls into the Handler.
   586         public void addLayoutComponent(String name, Component c) {
   586         public void addLayoutComponent(String name, Component c) {
   587             getHandler().addLayoutComponent(name, c);
   587             getHandler().addLayoutComponent(name, c);