| java.lang.Object org.jfree.report.util.geom.StrictInsets
StrictInsets | public class StrictInsets implements Cloneable(Code) | | Creation-Date: 09.07.2006, 20:22:06
author: Thomas Morgner |
StrictInsets | public StrictInsets()(Code) | | |
StrictInsets | public StrictInsets(long top, long left, long bottom, long right)(Code) | | |
clone | public Object clone()(Code) | | Returns a copy of this bounds object. This method will never throw a
'CloneNotSupportedException'.
the cloned instance. |
getBottom | public long getBottom()(Code) | | |
getLeft | public long getLeft()(Code) | | |
getRight | public long getRight()(Code) | | |
getTop | public long getTop()(Code) | | |
hashCode | public int hashCode()(Code) | | |
setBottom | public void setBottom(long bottom)(Code) | | |
setLeft | public void setLeft(long left)(Code) | | |
setRight | public void setRight(long right)(Code) | | |
setTop | public void setTop(long top)(Code) | | |
toString | public String toString()(Code) | | Returns a string representation of the object. In general, the
toString method returns a string that "textually represents"
this object. The result should be a concise but informative representation
that is easy for a person to read. It is recommended that all subclasses
override this method.
The toString method for class Object returns a
string consisting of the name of the class of which the object is an
instance, the at-sign character `@ ', and the unsigned
hexadecimal representation of the hash code of the object. In other words,
this method returns a string equal to the value of:
getClass().getName() + '@' + Integer.toHexString(hashCode())
a string representation of the object. |
|
|