Interface Grid
-
- All Superinterfaces:
java.io.Serializable
- All Known Implementing Classes:
GridImpl
public interface Grid extends java.io.SerializableThe Interface Grid.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetColor()Gets the color.doublegetHorizontalDivision()Gets the horizontal division.intgetHorizontalSubdivisions()Gets the horizontal subdivisions.doublegetVerticalDivision()Gets the vertical division.intgetVerticalSubdivisions()Gets the vertical subdivisions.voidsetColor(java.lang.String color)Sets the color.voidsetHorizontalDivision(double horizontalDivision)Sets the horizontal division.voidsetHorizontalSubdivisions(int horizontalSubdivisions)Sets the horizontal subdivisions.voidsetVerticalDivision(double verticalDivision)Sets the vertical division.voidsetVerticalSubdivisions(int verticalSubdivisions)Sets the vertical subdivisions.
-
-
-
Method Detail
-
getHorizontalDivision
double getHorizontalDivision()
Gets the horizontal division.- Returns:
- the horizontal division
-
setHorizontalDivision
void setHorizontalDivision(double horizontalDivision)
Sets the horizontal division.- Parameters:
horizontalDivision- the new horizontal division
-
getVerticalDivision
double getVerticalDivision()
Gets the vertical division.- Returns:
- the vertical division
-
setVerticalDivision
void setVerticalDivision(double verticalDivision)
Sets the vertical division.- Parameters:
verticalDivision- the new vertical division
-
getHorizontalSubdivisions
int getHorizontalSubdivisions()
Gets the horizontal subdivisions.- Returns:
- the horizontal subdivisions
-
setHorizontalSubdivisions
void setHorizontalSubdivisions(int horizontalSubdivisions)
Sets the horizontal subdivisions.- Parameters:
horizontalSubdivisions- the new horizontal subdivisions
-
getVerticalSubdivisions
int getVerticalSubdivisions()
Gets the vertical subdivisions.- Returns:
- the vertical subdivisions
-
setVerticalSubdivisions
void setVerticalSubdivisions(int verticalSubdivisions)
Sets the vertical subdivisions.- Parameters:
verticalSubdivisions- the new vertical subdivisions
-
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
-
-