< prev index next >

src/java.desktop/share/classes/javax/swing/SpringLayout.java

Print this page
rev 60127 : 8249205: Remove unnecessary trademark symbols


 155  * you'll need to
 156  * create a special-purpose subclass of the <code>Spring</code> class.
 157  *
 158  * <p>
 159  * <code>SpringLayout</code> also provides a way to solve
 160  * many of the difficult layout
 161  * problems that cannot be solved by nesting combinations
 162  * of <code>Box</code>es. That said, <code>SpringLayout</code> honors the
 163  * <code>LayoutManager2</code> contract correctly and so can be nested with
 164  * other layout managers -- a technique that can be preferable to
 165  * creating the constraints implied by the other layout managers.
 166  * <p>
 167  * The asymptotic complexity of the layout operation of a <code>SpringLayout</code>
 168  * is linear in the number of constraints (and/or components).
 169  * <p>
 170  * <strong>Warning:</strong>
 171  * Serialized objects of this class will not be compatible with
 172  * future Swing releases. The current serialization support is
 173  * appropriate for short term storage or RMI between applications running
 174  * the same version of Swing.  As of 1.4, support for long term storage
 175  * of all JavaBeans&trade;
 176  * has been added to the <code>java.beans</code> package.
 177  * Please see {@link java.beans.XMLEncoder}.
 178  *
 179  * @see Spring
 180  * @see SpringLayout.Constraints
 181  *
 182  * @author      Philip Milne
 183  * @author      Scott Violet
 184  * @author      Joe Winchester
 185  * @since       1.4
 186  */
 187 @SuppressWarnings("serial") // Same-version serialization only
 188 public class SpringLayout implements LayoutManager2 {
 189     private Map<Component, Constraints> componentConstraints = new HashMap<Component, Constraints>();
 190 
 191     private Spring cyclicReference = Spring.constant(Spring.UNSET);
 192     private Set<Spring> cyclicSprings;
 193     private Set<Spring> acyclicSprings;
 194 
 195 




 155  * you'll need to
 156  * create a special-purpose subclass of the <code>Spring</code> class.
 157  *
 158  * <p>
 159  * <code>SpringLayout</code> also provides a way to solve
 160  * many of the difficult layout
 161  * problems that cannot be solved by nesting combinations
 162  * of <code>Box</code>es. That said, <code>SpringLayout</code> honors the
 163  * <code>LayoutManager2</code> contract correctly and so can be nested with
 164  * other layout managers -- a technique that can be preferable to
 165  * creating the constraints implied by the other layout managers.
 166  * <p>
 167  * The asymptotic complexity of the layout operation of a <code>SpringLayout</code>
 168  * is linear in the number of constraints (and/or components).
 169  * <p>
 170  * <strong>Warning:</strong>
 171  * Serialized objects of this class will not be compatible with
 172  * future Swing releases. The current serialization support is
 173  * appropriate for short term storage or RMI between applications running
 174  * the same version of Swing.  As of 1.4, support for long term storage
 175  * of all JavaBeans
 176  * has been added to the <code>java.beans</code> package.
 177  * Please see {@link java.beans.XMLEncoder}.
 178  *
 179  * @see Spring
 180  * @see SpringLayout.Constraints
 181  *
 182  * @author      Philip Milne
 183  * @author      Scott Violet
 184  * @author      Joe Winchester
 185  * @since       1.4
 186  */
 187 @SuppressWarnings("serial") // Same-version serialization only
 188 public class SpringLayout implements LayoutManager2 {
 189     private Map<Component, Constraints> componentConstraints = new HashMap<Component, Constraints>();
 190 
 191     private Spring cyclicReference = Spring.constant(Spring.UNSET);
 192     private Set<Spring> cyclicSprings;
 193     private Set<Spring> acyclicSprings;
 194 
 195 


< prev index next >