Java Doc for Dimension.java in  » Scripting » hecl » org » awt » 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 » Scripting » hecl » org.awt 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   org.awt.geom.Dimension2D
      org.awt.Dimension

Dimension
public class Dimension extends Dimension2D (Code)
The Dimension class encapsulates the width and height of a component (in integer precision) in a single object. The class is associated with certain properties of components. Several methods defined by the Component class and the LayoutManager interface return a Dimension object.

Normally the values of width and height are non-negative integers. The constructors that allow you to create a dimension do not prevent you from setting a negative value for these properties. If the value of width or height is negative, the behavior of some methods defined by other objects is undefined.



Field Summary
public  intheight
     The height dimension; negative values can be used.
public  intwidth
     The width dimension; negative values can be used.

Constructor Summary
public  Dimension()
     Creates an instance of Dimension with a width of zero and a height of zero.
public  Dimension(Dimension d)
     Creates an instance of Dimension whose width and height are the same as for the specified dimension.
public  Dimension(int width, int height)
     Constructs a Dimension and initializes it to the specified width and specified height.

Method Summary
public  booleanequals(Object obj)
     Checks whether two dimension objects have equal values.
public  doublegetHeight()
     Returns the height of this dimension in double precision.
public  DimensiongetSize()
     Gets the size of this Dimension object.
public  doublegetWidth()
     Returns the width of this dimension in double precision.
public  inthashCode()
     Returns the hash code for this Dimension.
public  voidsetSize(double width, double height)
     Sets the size of this Dimension object to the specified width and height in double precision.
public  voidsetSize(Dimension d)
     Sets the size of this Dimension object to the specified size.
public  voidsetSize(int width, int height)
     Sets the size of this Dimension object to the specified width and height.
public  StringtoString()
     Returns a string representation of the values of this Dimension object's height and width fields.

Field Detail
height
public int height(Code)
The height dimension; negative values can be used.
See Also:   Dimension.getSize
See Also:   Dimension.setSize



width
public int width(Code)
The width dimension; negative values can be used.
See Also:   Dimension.getSize
See Also:   Dimension.setSize




Constructor Detail
Dimension
public Dimension()(Code)
Creates an instance of Dimension with a width of zero and a height of zero.



Dimension
public Dimension(Dimension d)(Code)
Creates an instance of Dimension whose width and height are the same as for the specified dimension.
Parameters:
  d - the specified dimension for the width and height values



Dimension
public Dimension(int width, int height)(Code)
Constructs a Dimension and initializes it to the specified width and specified height.
Parameters:
  width - the specified width
Parameters:
  height - the specified height




Method Detail
equals
public boolean equals(Object obj)(Code)
Checks whether two dimension objects have equal values.



getHeight
public double getHeight()(Code)
Returns the height of this dimension in double precision. the height of this dimension in double precision



getSize
public Dimension getSize()(Code)
Gets the size of this Dimension object. This method is included for completeness, to parallel the getSize method defined by Component. the size of this dimension, a new instance of Dimension with the same width and height
See Also:   java.awt.Dimension.setSize
See Also:   java.awt.Component.getSize



getWidth
public double getWidth()(Code)
Returns the width of this dimension in double precision. the width of this dimension in double precision



hashCode
public int hashCode()(Code)
Returns the hash code for this Dimension. a hash code for this Dimension



setSize
public void setSize(double width, double height)(Code)
Sets the size of this Dimension object to the specified width and height in double precision. Note that if width or height are larger than Integer.MAX_VALUE, they will be reset to Integer.MAX_VALUE.
Parameters:
  width - the new width for the Dimension object
Parameters:
  height - the new height for the Dimension object



setSize
public void setSize(Dimension d)(Code)
Sets the size of this Dimension object to the specified size. This method is included for completeness, to parallel the setSize method defined by Component.
Parameters:
  d - the new size for this Dimension object
See Also:   java.awt.Dimension.getSize
See Also:   java.awt.Component.setSize



setSize
public void setSize(int width, int height)(Code)
Sets the size of this Dimension object to the specified width and height. This method is included for completeness, to parallel the setSize method defined by Component.
Parameters:
  width - the new width for this Dimension object
Parameters:
  height - the new height for this Dimension object
See Also:   java.awt.Dimension.getSize
See Also:   java.awt.Component.setSize



toString
public String toString()(Code)
Returns a string representation of the values of this Dimension object's height and width fields. This method is intended to be used only for debugging purposes, and the content and format of the returned string may vary between implementations. The returned string may be empty but may not be null. a string representation of this Dimension object



Methods inherited from org.awt.geom.Dimension2D
abstract public double getHeight()(Code)(Java Doc)
abstract public double getWidth()(Code)(Java Doc)
abstract public void setSize(double width, double height)(Code)(Java Doc)
public void setSize(Dimension2D d)(Code)(Java Doc)

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.