Uses of Class
at.jku.ssw.fp.sect05_2.workflow.Stuff
-
Packages that use Stuff Package Description at.jku.ssw.fp.sect05_2.workflow -
-
Uses of Stuff in at.jku.ssw.fp.sect05_2.workflow
Subclasses of Stuff in at.jku.ssw.fp.sect05_2.workflow Modifier and Type Class Description class
Ingr
Basic ingredients for a product produced by a workflow.class
Product
A product which consists of various stuff and has some treatments.Fields in at.jku.ssw.fp.sect05_2.workflow with type parameters of type Stuff Modifier and Type Field Description protected List<Stuff>
Product. ingredients
List of ingredients.Methods in at.jku.ssw.fp.sect05_2.workflow that return types with arguments of type Stuff Modifier and Type Method Description List<Stuff>
Product. getIngrediants()
Gets the ingredients of this product.Methods in at.jku.ssw.fp.sect05_2.workflow with parameters of type Stuff Modifier and Type Method Description Product
Product. mix(Stuff stuff)
Creates a new product by mixing a stuff to this product.Product
Stuff. mix(Stuff stuff)
Creates a product by combining this stuff and a given stuff.static Product
Product. of(Stuff... ingredients)
Creates a product from various stuff.Constructors in at.jku.ssw.fp.sect05_2.workflow with parameters of type Stuff Constructor Description Product(Stuff[] ingredients)
Constructor initializing the ingredients of the product.Product(Stuff[] ingredients, Treatment[] treatments)
Constructor initializing the ingredients and the treatments of the product.
-