com.jrefinery.report.targets
Class FloatDimension

java.lang.Object
  |
  +--java.awt.geom.Dimension2D
        |
        +--org.jfree.ui.FloatDimension
              |
              +--com.jrefinery.report.targets.FloatDimension
All Implemented Interfaces:
java.lang.Cloneable, java.io.Serializable

Deprecated. this class moved into the JCommon library and is now located in the package com.jrefinery.ui.

public class FloatDimension
extends org.jfree.ui.FloatDimension

A float based implementation of the java.awt.geom.Dimension2D class. This class remains here for compatibility, as this implementation moved into the JCommon library.

Author:
Thomas Morgner
See Also:
Serialized Form

Constructor Summary
FloatDimension()
          Deprecated. Creates a new dimension object with width and height set to zero.
FloatDimension(FloatDimension fd)
          Deprecated. Creates a new dimension that is a copy of another dimension.
FloatDimension(float width, float height)
          Deprecated. Creates a new dimension.
 
Methods inherited from class org.jfree.ui.FloatDimension
clone, equals, getHeight, getWidth, hashCode, setHeight, setSize, setWidth, toString
 
Methods inherited from class java.awt.geom.Dimension2D
setSize
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Constructor Detail

FloatDimension

public FloatDimension()
Deprecated. 
Creates a new dimension object with width and height set to zero.


FloatDimension

public FloatDimension(FloatDimension fd)
Deprecated. 
Creates a new dimension that is a copy of another dimension.

Parameters:
fd - the dimension to copy.

FloatDimension

public FloatDimension(float width,
                      float height)
Deprecated. 
Creates a new dimension.

Parameters:
width - the width.
height - the height.