Interface Fill
-
- All Superinterfaces:
java.io.Serializable
- All Known Implementing Classes:
FillImpl
public interface Fill extends java.io.SerializableThe Interface Fill.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description doublegetColor1()Gets the color 1.doublegetColor2()Gets the color 2.doublegetColor3()Gets the color 3.doublegetColor4()Gets the color 4.java.lang.StringgetName()Gets the name.java.lang.StringgetSpace()Gets the space.doublegetTint()Gets the tint.voidsetColor1(double color1)Sets the color 1.voidsetColor2(double color2)Sets the color 2.voidsetColor3(double color3)Sets the color 3.voidsetColor4(double color4)Sets the color 4.voidsetName(java.lang.String name)Sets the name.voidsetSpace(java.lang.String space)Sets the space.voidsetTint(double tint)Sets the tint.
-
-
-
Method Detail
-
getSpace
java.lang.String getSpace()
Gets the space.- Returns:
- the space
-
setSpace
void setSpace(java.lang.String space)
Sets the space.- Parameters:
space- the new space
-
getName
java.lang.String getName()
Gets the name.- Returns:
- the name
-
setName
void setName(java.lang.String name)
Sets the name.- Parameters:
name- the new name
-
getColor1
double getColor1()
Gets the color 1.- Returns:
- the color 1
-
setColor1
void setColor1(double color1)
Sets the color 1.- Parameters:
color1- the new color 1
-
getColor2
double getColor2()
Gets the color 2.- Returns:
- the color 2
-
setColor2
void setColor2(double color2)
Sets the color 2.- Parameters:
color2- the new color 2
-
getColor3
double getColor3()
Gets the color 3.- Returns:
- the color 3
-
setColor3
void setColor3(double color3)
Sets the color 3.- Parameters:
color3- the new color 3
-
getColor4
double getColor4()
Gets the color 4.- Returns:
- the color 4
-
setColor4
void setColor4(double color4)
Sets the color 4.- Parameters:
color4- the new color 4
-
getTint
double getTint()
Gets the tint.- Returns:
- the tint
-
setTint
void setTint(double tint)
Sets the tint.- Parameters:
tint- the new tint
-
-