Interface BaselineGrid
-
- All Superinterfaces:
java.io.Serializable
- All Known Implementing Classes:
BaselineGridImpl
public interface BaselineGrid extends java.io.SerializableThe Interface BaselineGrid.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetColor()Gets the color.doublegetDivision()Gets the division.RelativeTogetRelativeTo()Gets the relative to.doublegetStart()Gets the start.voidsetColor(java.lang.String color)Sets the color.voidsetDivision(double division)Sets the division.voidsetRelativeTo(RelativeTo relativeTo)Sets the relative to.voidsetStart(double start)Sets the start.
-
-
-
Method Detail
-
getStart
double getStart()
Gets the start.- Returns:
- the start
-
setStart
void setStart(double start)
Sets the start.- Parameters:
start- the new start
-
getDivision
double getDivision()
Gets the division.- Returns:
- the division
-
setDivision
void setDivision(double division)
Sets the division.- Parameters:
division- the new division
-
getRelativeTo
RelativeTo getRelativeTo()
Gets the relative to.- Returns:
- the relative to
-
setRelativeTo
void setRelativeTo(RelativeTo relativeTo)
Sets the relative to.- Parameters:
relativeTo- the new relative to
-
getColor
java.lang.String getColor()
Gets the color.- Returns:
- the color
-
setColor
void setColor(java.lang.String color)
Sets the color.- Parameters:
color- the new color
-
-