Java Doc for RectangleConstraint.java in  » Chart » jfreechart » org » jfree » chart » block » 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 » Chart » jfreechart » org.jfree.chart.block 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   org.jfree.chart.block.RectangleConstraint

RectangleConstraint
public class RectangleConstraint (Code)
A description of a constraint for resizing a rectangle. Constraints are immutable.


Field Summary
final public static  RectangleConstraintNONE
     An instance representing no constraint.

Constructor Summary
public  RectangleConstraint(double w, double h)
     Creates a new "fixed width and height" instance.
public  RectangleConstraint(Range w, Range h)
     Creates a new "range width and height" instance.
public  RectangleConstraint(Range w, double h)
     Creates a new constraint with a range for the width and a fixed height.
public  RectangleConstraint(double w, Range h)
     Creates a new constraint with a fixed width and a range for the height.
public  RectangleConstraint(double w, Range widthRange, LengthConstraintType widthConstraintType, double h, Range heightRange, LengthConstraintType heightConstraintType)
     Creates a new constraint.

Method Summary
public  Size2DcalculateConstrainedSize(Size2D base)
     Returns the new size that reflects the constraints defined by this instance.
Parameters:
  base - the base size.
public  doublegetHeight()
     Returns the fixed height.
public  LengthConstraintTypegetHeightConstraintType()
     Returns the constraint type.
public  RangegetHeightRange()
     Returns the width range.
public  doublegetWidth()
     Returns the fixed width.
public  LengthConstraintTypegetWidthConstraintType()
     Returns the constraint type.
public  RangegetWidthRange()
     Returns the width range.
public  RectangleConstrainttoFixedHeight(double height)
     Returns a constraint that matches this one on the width attributes, but has a fixed height constraint.
Parameters:
  height - the fixed height.
public  RectangleConstrainttoFixedWidth(double width)
     Returns a constraint that matches this one on the height attributes, but has a fixed width constraint.
Parameters:
  width - the fixed width.
public  RectangleConstrainttoRangeHeight(Range range)
     Returns a constraint that matches this one on the width attributes, but has a range height constraint.
Parameters:
  range - the height range (null not permitted).
public  RectangleConstrainttoRangeWidth(Range range)
     Returns a constraint that matches this one on the height attributes, but has a range width constraint.
Parameters:
  range - the width range (null not permitted).
public  StringtoString()
     Returns a string representation of this instance, mostly used for debugging purposes.
public  RectangleConstrainttoUnconstrainedHeight()
     Returns a constraint that matches this one on the width attributes, but has no height constraint.
public  RectangleConstrainttoUnconstrainedWidth()
     Returns a constraint that matches this one on the height attributes, but has no width constraint.

Field Detail
NONE
final public static RectangleConstraint NONE(Code)
An instance representing no constraint.




Constructor Detail
RectangleConstraint
public RectangleConstraint(double w, double h)(Code)
Creates a new "fixed width and height" instance.
Parameters:
  w - the fixed width.
Parameters:
  h - the fixed height.



RectangleConstraint
public RectangleConstraint(Range w, Range h)(Code)
Creates a new "range width and height" instance.
Parameters:
  w - the width range.
Parameters:
  h - the height range.



RectangleConstraint
public RectangleConstraint(Range w, double h)(Code)
Creates a new constraint with a range for the width and a fixed height.
Parameters:
  w - the width range.
Parameters:
  h - the fixed height.



RectangleConstraint
public RectangleConstraint(double w, Range h)(Code)
Creates a new constraint with a fixed width and a range for the height.
Parameters:
  w - the fixed width.
Parameters:
  h - the height range.



RectangleConstraint
public RectangleConstraint(double w, Range widthRange, LengthConstraintType widthConstraintType, double h, Range heightRange, LengthConstraintType heightConstraintType)(Code)
Creates a new constraint.
Parameters:
  w - the fixed or maximum width.
Parameters:
  widthRange - the width range.
Parameters:
  widthConstraintType - the width type.
Parameters:
  h - the fixed or maximum height.
Parameters:
  heightRange - the height range.
Parameters:
  heightConstraintType - the height type.




Method Detail
calculateConstrainedSize
public Size2D calculateConstrainedSize(Size2D base)(Code)
Returns the new size that reflects the constraints defined by this instance.
Parameters:
  base - the base size. The constrained size.



getHeight
public double getHeight()(Code)
Returns the fixed height. The height.



getHeightConstraintType
public LengthConstraintType getHeightConstraintType()(Code)
Returns the constraint type. The constraint type (never null).



getHeightRange
public Range getHeightRange()(Code)
Returns the width range. The range (possibly null).



getWidth
public double getWidth()(Code)
Returns the fixed width. The width.



getWidthConstraintType
public LengthConstraintType getWidthConstraintType()(Code)
Returns the constraint type. The constraint type (never null).



getWidthRange
public Range getWidthRange()(Code)
Returns the width range. The range (possibly null).



toFixedHeight
public RectangleConstraint toFixedHeight(double height)(Code)
Returns a constraint that matches this one on the width attributes, but has a fixed height constraint.
Parameters:
  height - the fixed height. A new constraint.



toFixedWidth
public RectangleConstraint toFixedWidth(double width)(Code)
Returns a constraint that matches this one on the height attributes, but has a fixed width constraint.
Parameters:
  width - the fixed width. A new constraint.



toRangeHeight
public RectangleConstraint toRangeHeight(Range range)(Code)
Returns a constraint that matches this one on the width attributes, but has a range height constraint.
Parameters:
  range - the height range (null not permitted). A new constraint.



toRangeWidth
public RectangleConstraint toRangeWidth(Range range)(Code)
Returns a constraint that matches this one on the height attributes, but has a range width constraint.
Parameters:
  range - the width range (null not permitted). A new constraint.



toString
public String toString()(Code)
Returns a string representation of this instance, mostly used for debugging purposes. A string.



toUnconstrainedHeight
public RectangleConstraint toUnconstrainedHeight()(Code)
Returns a constraint that matches this one on the width attributes, but has no height constraint. A new constraint.



toUnconstrainedWidth
public RectangleConstraint toUnconstrainedWidth()(Code)
Returns a constraint that matches this one on the height attributes, but has no width constraint. A new constraint.



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.