Interface Corner
-
- All Superinterfaces:
java.io.Serializable
- All Known Implementing Classes:
CornerImpl
public interface Corner extends java.io.SerializableThe Interface Corner.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description doublegetRadius()Gets the radius.java.lang.StringgetType()Gets the type.voidsetRadius(double radius)Sets the radius.voidsetType(java.lang.String type)Sets the type.
-
-
-
Method Detail
-
getType
java.lang.String getType()
Gets the type.- Returns:
- the type
-
setType
void setType(java.lang.String type)
Sets the type.- Parameters:
type- the type to set
-
getRadius
double getRadius()
Gets the radius.- Returns:
- the radius
-
setRadius
void setRadius(double radius)
Sets the radius.- Parameters:
radius- the radius to set
-
-