Interface Margins
-
- All Superinterfaces:
java.io.Serializable
- All Known Implementing Classes:
MarginsImpl
public interface Margins extends java.io.Serializable
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description doublegetBottom()doublegetInsideLeft()doublegetOutsideRight()doublegetTop()voidsetBottom(double bottom)voidsetInsideLeft(double insideLeft)voidsetOutsideRight(double outsideRight)voidsetTop(double top)
-
-
-
Method Detail
-
getInsideLeft
double getInsideLeft()
- Returns:
- the insideLeft
-
setInsideLeft
void setInsideLeft(double insideLeft)
- Parameters:
insideLeft- the insideLeft to set
-
getTop
double getTop()
- Returns:
- the top
-
setTop
void setTop(double top)
- Parameters:
top- the top to set
-
getOutsideRight
double getOutsideRight()
- Returns:
- the outsideRight
-
setOutsideRight
void setOutsideRight(double outsideRight)
- Parameters:
outsideRight- the outsideRight to set
-
getBottom
double getBottom()
- Returns:
- the bottom
-
setBottom
void setBottom(double bottom)
- Parameters:
bottom- the bottom to set
-
-