Uses of Class
library.Colours
-
Packages that use Colours Package Description library models.shapes operations.create -
-
Uses of Colours in library
Methods in library that return Colours Modifier and Type Method Description static Colours
Colours. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static Colours[]
Colours. values()
Returns an array containing the constants of this enum type, in the order they are declared. -
Uses of Colours in models.shapes
Methods in models.shapes that return Colours Modifier and Type Method Description Colours
Circle. getFill()
Colours
Eclipse. getFill()
Colours
Rectangle. getFill()
Colours
Stroke. getStroke()
Methods in models.shapes with parameters of type Colours Modifier and Type Method Description void
Circle. setFill(Colours fill)
void
Eclipse. setFill(Colours fill)
void
Rectangle. setFill(Colours fill)
void
Stroke. setStroke(Colours stroke)
-
Uses of Colours in operations.create
Methods in operations.create that return Colours Modifier and Type Method Description Colours
ShapeCreation. getFill()
Colours
ShapeCreation. getStroke()
Methods in operations.create with parameters of type Colours Modifier and Type Method Description IShapes
CreateCircle. create(java.util.List<java.lang.Integer> params, Colours fill, java.lang.String id)
IShapes
CreateEclipse. create(java.util.List<java.lang.Integer> params, Colours fill, java.lang.String id)
IShapes
CreateRectangle. create(java.util.List<java.lang.Integer> params, Colours fill, java.lang.String id)
IShapes
CreateStroke. create(java.util.List<java.lang.Integer> params, Colours fill, java.lang.String id)
IShapes
ICreateShape. create(java.util.List<java.lang.Integer> params, Colours fill, java.lang.String id)
void
ShapeCreation. setFill(Colours fill)
void
ShapeCreation. setStroke(Colours stroke)
-