JAL-3032 adds Java 8 functionality (1/2)
[jalview.git] / src / net / miginfocom / layout / ResizeConstraint.java
1 package net.miginfocom.layout;
2
3 /*
4  * License (BSD):
5  * ==============
6  *
7  * Copyright (c) 2004, Mikael Grev, MiG InfoCom AB. (miglayout (at) miginfocom (dot) com)
8  * All rights reserved.
9  *
10  * Redistribution and use in source and binary forms, with or without modification,
11  * are permitted provided that the following conditions are met:
12  * Redistributions of source code must retain the above copyright notice, this list
13  * of conditions and the following disclaimer.
14  * Redistributions in binary form must reproduce the above copyright notice, this
15  * list of conditions and the following disclaimer in the documentation and/or other
16  * materials provided with the distribution.
17  * Neither the name of the MiG InfoCom AB nor the names of its contributors may be
18  * used to endorse or promote products derived from this software without specific
19  * prior written permission.
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
22  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
23  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
24  * IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
25  * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
26  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
27  * OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
28  * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
29  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY
30  * OF SUCH DAMAGE.
31  *
32  * @version 1.0
33  * @author Mikael Grev, MiG InfoCom AB
34  *         Date: 2006-sep-08
35  */
36 //import java.io.Externalizable;
37
38 /** A parsed constraint that specifies how an entity (normally column/row or component) can shrink or
39  * grow compared to other entities.
40  */
41 final class ResizeConstraint //implements Externalizable
42 {
43         static final Float WEIGHT_100 = 100f;
44
45         /** How flexible the entity should be, relative to other entities, when it comes to growing. <code>null</code> or
46          * zero mean it will never grow. An entity that has twice the growWeight compared to another entity will get twice
47          * as much of available space.
48          * <p>
49          * "grow" are only compared within the same "growPrio".
50          */
51         Float grow = null;
52
53         /** The relative priority used for determining which entities gets the extra space first.
54          */
55         int growPrio = 100;
56
57         Float shrink = WEIGHT_100;
58
59         int shrinkPrio = 100;
60
61         public ResizeConstraint()   // For Externalizable
62         {
63         }
64
65         ResizeConstraint(int shrinkPrio, Float shrinkWeight, int growPrio, Float growWeight)
66         {
67                 this.shrinkPrio = shrinkPrio;
68                 this.shrink = shrinkWeight;
69                 this.growPrio = growPrio;
70                 this.grow = growWeight;
71         }
72
73 //      // ************************************************
74 //      // Persistence Delegate and Serializable combined.
75 //      // ************************************************
76 //
77 //      private Object readResolve() throws ObjectStreamException
78 //      {
79 //              return LayoutUtil.getSerializedObject(this);
80 //      }
81 //
82 //      @Override
83 //      public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException
84 //      {
85 //              LayoutUtil.setSerializedObject(this, LayoutUtil.readAsXML(in));
86 //      }
87 //
88 //      @Override
89 //      public void writeExternal(ObjectOutput out) throws IOException
90 //      {
91 //              if (getClass() == ResizeConstraint.class)
92 //                      LayoutUtil.writeAsXML(out, this);
93 //      }
94 }