Interface Margin

All Superinterfaces:
Serializable
All Known Implementing Classes:
MarginImpl

public interface Margin extends Serializable
The Interface Margin.
  • Method Summary

    Modifier and Type
    Method
    Description
    double
    Gets the bottom.
    double
    Gets the inside.
    double
    Gets the left.
    double
    Gets the outside.
    double
    Gets the right.
    double
    Gets the top.
    void
    setBottom(double bottom)
    Sets the bottom.
    void
    setInside(double inside)
    Sets the inside.
    void
    setLeft(double left)
    Sets the left.
    void
    setOutside(double outside)
    Sets the outside.
    void
    setRight(double right)
    Sets the right.
    void
    setTop(double top)
    Sets the top.
  • Method Details

    • getLeft

      double getLeft()
      Gets the left.
      Returns:
      the left
    • setLeft

      void setLeft(double left)
      Sets the left.
      Parameters:
      left - the new left
    • getTop

      double getTop()
      Gets the top.
      Returns:
      the top
    • setTop

      void setTop(double top)
      Sets the top.
      Parameters:
      top - the new top
    • getRight

      double getRight()
      Gets the right.
      Returns:
      the right
    • setRight

      void setRight(double right)
      Sets the right.
      Parameters:
      right - the new right
    • getBottom

      double getBottom()
      Gets the bottom.
      Returns:
      the bottom
    • setBottom

      void setBottom(double bottom)
      Sets the bottom.
      Parameters:
      bottom - the new bottom
    • getInside

      double getInside()
      Gets the inside.
      Returns:
      the inside
    • setInside

      void setInside(double inside)
      Sets the inside.
      Parameters:
      inside - the new inside
    • getOutside

      double getOutside()
      Gets the outside.
      Returns:
      the outside
    • setOutside

      void setOutside(double outside)
      Sets the outside.
      Parameters:
      outside - the new outside