KickJava   Java API By Example, From Geeks To Geeks.

Java > Java SE, EE, ME > javax > swing > SizeRequirements

javax.swing
Class SizeRequirements

java.lang.Object
  extended by javax.swing.SizeRequirements
All Implemented Interfaces:
Serializable
See Also:
Source Code, XMLEncoder, Component.getMinimumSize(), Component.getPreferredSize(), Component.getMaximumSize(), Component.getAlignmentX(), Component.getAlignmentY()

public static int[] adjustSizes(int delta,
                                SizeRequirements[] children)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public float alignment
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public static void calculateAlignedPositions(int allocated,
                                             SizeRequirements total,
                                             SizeRequirements[] children,
                                             int[] offsets,
                                             int[] spans)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public static void calculateAlignedPositions(int allocated,
                                             SizeRequirements total,
                                             SizeRequirements[] children,
                                             int[] offsets,
                                             int[] spans,
                                             boolean normal)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public static void calculateTiledPositions(int allocated,
                                           SizeRequirements total,
                                           SizeRequirements[] children,
                                           int[] offsets,
                                           int[] spans)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public static void calculateTiledPositions(int allocated,
                                           SizeRequirements total,
                                           SizeRequirements[] children,
                                           int[] offsets,
                                           int[] spans,
                                           boolean forward)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public static SizeRequirements getAlignedSizeRequirements(SizeRequirements[] children)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public static SizeRequirements getTiledSizeRequirements(SizeRequirements[] children)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public int maximum
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public int minimum
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public int preferred
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public SizeRequirements()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public SizeRequirements(int min,
                        int pref,
                        int max,
                        float a)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public String toString()
See Also:
Object
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  

Popular Tags