Class TitledTabSizePolicy
- java.lang.Object
-
- net.infonode.util.Enum
-
- net.infonode.tabbedpanel.titledtab.TitledTabSizePolicy
-
- All Implemented Interfaces:
java.io.Serializable
,Writable
public final class TitledTabSizePolicy extends Enum
TitledTabSizePolicy defines how TitledTab should calculate its size. If the different tab states results in different tab sizes, then TitledTab can calculate the maximum size for the states and use that size for all the states.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static TitledTabSizePolicy
EQUAL_SIZE
Equal size policy.static TitledTabSizePolicy
INDIVIDUAL_SIZE
Individual size policy.static TitledTabSizePolicy[]
SIZE_POLICIES
An array with all size policies.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static TitledTabSizePolicy[]
getSizePolicies()
Gets the size policies.
-
-
-
Field Detail
-
EQUAL_SIZE
public static final TitledTabSizePolicy EQUAL_SIZE
Equal size policy. This menas that if the different tab states results in different tab sizes, then titled tab will calculate the maximum size for the states and use that size for all the states.
-
INDIVIDUAL_SIZE
public static final TitledTabSizePolicy INDIVIDUAL_SIZE
Individual size policy. This means that if the different tab states have different sizes then titled tab will have different size for the states.
-
SIZE_POLICIES
public static final TitledTabSizePolicy[] SIZE_POLICIES
An array with all size policies.
-
-
Method Detail
-
getSizePolicies
public static TitledTabSizePolicy[] getSizePolicies()
Gets the size policies.- Returns:
- the size policies
- Since:
- ITP 1.1.0
-
-