Class Dimension


  • public class Dimension
    extends Object
    Holds a width and height pair. Used to limit awt dependencies. Replaced by Rectangle in TreeLayouts
    • Field Detail

      • width

        public final int width
        horizontal expanse
      • height

        public final int height
        vertical expanse
    • Method Detail

      • of

        public static Dimension of​(int width,
                                   int height)
        Parameters:
        width - horizontal expanse
        height - vertical expanse
        Returns:
        a new Dimension with the passed parameters
      • union

        public Dimension union​(Dimension other)
        create a new Dimension with sufficient expanse to also include other
        Parameters:
        other - another Dimension to augment this with
        Returns:
        a new Dimension with sufficient expanse to also include other
      • intersection

        public Dimension intersection​(Dimension other)
        Parameters:
        other - another Dimension to compare this with
        Returns:
        a new Dimension of the intersection of this with other
      • toString

        public String toString()
        Overrides:
        toString in class Object
        Returns:
        a String representation of this
      • equals

        public boolean equals​(Object o)
        Overrides:
        equals in class Object
        Parameters:
        o - another object for comparison
        Returns:
        true if this and the other are both Rectangles with the same width/height
      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class Object
        Returns:
        a hash of the parameters