Interface Bleed
-
- All Superinterfaces:
java.io.Serializable
- All Known Implementing Classes:
BleedImpl
public interface Bleed extends java.io.SerializableThe Interface Bleed.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description doublegetBottom()Gets the bottom.doublegetLeft()Gets the left.doublegetRight()Gets the right.doublegetTop()Gets the top.voidsetBottom(double bottom)Sets the bottom.voidsetLeft(double left)Sets the left.voidsetRight(double right)Sets the right.voidsetTop(double top)Sets the top.
-
-
-
Method Detail
-
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
-
-