Java Doc for IzPanelConstraints.java in  » Installer » IzPack » com » izforge » izpack » gui » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Installer » IzPack » com.izforge.izpack.gui 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   com.izforge.izpack.gui.IzPanelConstraints

IzPanelConstraints
public class IzPanelConstraints implements Cloneable,LayoutConstants(Code)
Constraints class for the layout manager IzPanelLayout.


Field Summary
 Componentcomponent
    
 intpreferredHeight
    

Constructor Summary
public  IzPanelConstraints(int xCellAlignment, int yCellAlignment, int xPos, int yPos, int xWeight, int yWeight, int xGap, int yGap, double xStretch, double yStretch)
     Constructor with all existent parameters.
public  IzPanelConstraints()
    

Method Summary
public  Objectclone()
    
public  RectanglegetBounds()
     Returns the bounds which should be used by the corresponding component.
public  intgetXCellAlignment()
     Returns the alignment for the x direction.
public  intgetXGap()
     Returns the declared x gap value.
public  intgetXPos()
     Returns the x position (column number).
public  doublegetXStretch()
     Returns the declared stretch value in x direction.
public  intgetXWeight()
     Returns the weight for the x direction.
public  intgetYCellAlignment()
     Returns the alignment for the y direction.
public  intgetYGap()
     Returns the declared y gap value.
public  intgetYPos()
     Returns the y position (row number).
public  doublegetYStretch()
     Returns the declared stretch value in y direction.
public  intgetYWeight()
     Returns the weight for the y direction.
public  voidsetBounds(Rectangle bounds)
     Sets the bounds which should be used for the component.
public  voidsetXCellAlignment(int cellAlignment)
     Sets the alignment for the x direction.
public  voidsetXGap(int gap)
     Sets the given value as x gap.
public  voidsetXPos(int pos)
     Sets the x position to be used.
public  voidsetXStretch(double stretch)
     Sets the given value as stretch value for x direction.
public  voidsetXWeight(int weight)
     Sets the weight value for the x direction.
public  voidsetYCellAlignment(int cellAlignment)
     Sets the alignment for the y direction.
public  voidsetYGap(int gap)
     Sets the given value as y gap.
public  voidsetYPos(int pos)
     Sets the y position to be used.
public  voidsetYStretch(double stretch)
     Sets the given value as stretch value for y direction.
public  voidsetYWeight(int weight)
     Sets the weight value for the y direction.

Field Detail
component
Component component(Code)
for private use by the layout manager



preferredHeight
int preferredHeight(Code)
for private use by the layout manager




Constructor Detail
IzPanelConstraints
public IzPanelConstraints(int xCellAlignment, int yCellAlignment, int xPos, int yPos, int xWeight, int yWeight, int xGap, int yGap, double xStretch, double yStretch)(Code)
Constructor with all existent parameters.
Parameters:
  xCellAlignment - value to be used as x alignment
Parameters:
  yCellAlignment - value to be used as y alignment
Parameters:
  xPos - x position to be used
Parameters:
  yPos - y position to be used
Parameters:
  xWeight - weight at x direction
Parameters:
  yWeight - weight at y direction
Parameters:
  xGap - gap for x direction
Parameters:
  yGap - gap for y direction
Parameters:
  xStretch - stretch value for the x direction
Parameters:
  yStretch - stretch value for the y direction



IzPanelConstraints
public IzPanelConstraints()(Code)
Default constructor




Method Detail
clone
public Object clone()(Code)



getBounds
public Rectangle getBounds()(Code)
Returns the bounds which should be used by the corresponding component. This will be used by the layout manager at a fast layouting. used bounds



getXCellAlignment
public int getXCellAlignment()(Code)
Returns the alignment for the x direction. the alignment for the x direction



getXGap
public int getXGap()(Code)
Returns the declared x gap value. the declared x gap value



getXPos
public int getXPos()(Code)
Returns the x position (column number). the x position (column number)



getXStretch
public double getXStretch()(Code)
Returns the declared stretch value in x direction. the declared stretch value in x direction



getXWeight
public int getXWeight()(Code)
Returns the weight for the x direction. The weight determines how many cells are occupied by the component. the weight for the x direction



getYCellAlignment
public int getYCellAlignment()(Code)
Returns the alignment for the y direction. the alignment for the y direction



getYGap
public int getYGap()(Code)
Returns the declared y gap value. the declared y gap value



getYPos
public int getYPos()(Code)
Returns the y position (row number). the y position (row number)



getYStretch
public double getYStretch()(Code)
Returns the declared stretch value in y direction. the declared stretch value in y direction



getYWeight
public int getYWeight()(Code)
Returns the weight for the y direction. The weight determines how many cells are occupied by the component. the weight for the y direction



setBounds
public void setBounds(Rectangle bounds)(Code)
Sets the bounds which should be used for the component.
Parameters:
  bounds - bounds to be used



setXCellAlignment
public void setXCellAlignment(int cellAlignment)(Code)
Sets the alignment for the x direction. Possible values are LEFT, RIGHT and CENTER.
Parameters:
  cellAlignment - to be used



setXGap
public void setXGap(int gap)(Code)
Sets the given value as x gap.
Parameters:
  gap - value to be set



setXPos
public void setXPos(int pos)(Code)
Sets the x position to be used.
Parameters:
  pos - position to be used



setXStretch
public void setXStretch(double stretch)(Code)
Sets the given value as stretch value for x direction.
Parameters:
  stretch - value to be set



setXWeight
public void setXWeight(int weight)(Code)
Sets the weight value for the x direction.
Parameters:
  weight - to be used for the x direction



setYCellAlignment
public void setYCellAlignment(int cellAlignment)(Code)
Sets the alignment for the y direction. Possible values are TOP, BOTTOM and CENTER.
Parameters:
  cellAlignment - to be used



setYGap
public void setYGap(int gap)(Code)
Sets the given value as y gap.
Parameters:
  gap - value to be set



setYPos
public void setYPos(int pos)(Code)
Sets the y position to be used.
Parameters:
  pos - position to be used



setYStretch
public void setYStretch(double stretch)(Code)
Sets the given value as stretch value for y direction.
Parameters:
  stretch - value to be set



setYWeight
public void setYWeight(int weight)(Code)
Sets the weight value for the y direction.
Parameters:
  weight - to be used for the y direction



Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.