jdk/src/share/classes/sun/swing/LightweightContent.java
changeset 19026 96141cb8d7eb
parent 15983 26a673dec5b2
child 20127 a3a34675d847
equal deleted inserted replaced
19025:b8fcddc01969 19026:96141cb8d7eb
   159     /**
   159     /**
   160      * {@code JLightweightFrame} calls this method to notify the client
   160      * {@code JLightweightFrame} calls this method to notify the client
   161      * application that the frame has ungrabbed focus.
   161      * application that the frame has ungrabbed focus.
   162      */
   162      */
   163     public void focusUngrabbed();
   163     public void focusUngrabbed();
       
   164 
       
   165     /**
       
   166      * {@code JLightweightFrame} calls this method to notify the client
       
   167      * application that the content preferred size has changed.
       
   168      */
       
   169     public void preferredSizeChanged(int width, int height);
       
   170 
       
   171     /**
       
   172      * {@code JLightweightFrame} calls this method to notify the client
       
   173      * application that the content maximum size has changed.
       
   174      */
       
   175     public void maximumSizeChanged(int width, int height);
       
   176 
       
   177     /**
       
   178      * {@code JLightweightFrame} calls this method to notify the client
       
   179      * application that the content minimum size has changed.
       
   180      */
       
   181     public void minimumSizeChanged(int width, int height);
   164 }
   182 }