Class AlgorithmParameter<t>
- java.lang.Object
-
- de.uni_trier.wi2.procake.adaptation.AlgorithmParameter<t>
-
public class AlgorithmParameter<t> extends Object
Generic definition of an algorithm parameter.
-
-
Constructor Summary
Constructors Constructor Description AlgorithmParameter(String name, t value)Constructor for AlgorithmParameter.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Objectcopy()copy.StringgetName()Getter for the fieldname.tgetValue()Getter for the fieldvalue.voidsetName(String name)Setter for the fieldname.voidsetValue(Object value)Setter for the fieldvalue.StringtoString()
-
-
-
Method Detail
-
getValue
public t getValue()
Getter for the field
value.- Returns:
- a t object
-
setValue
public void setValue(Object value)
Setter for the field
value.- Parameters:
value- aObjectobject
-
setName
public void setName(String name)
Setter for the field
name.- Parameters:
name- aStringobject
-
-