Package cz.vutbr.fit.layout.impl
Class BaseParameter
- java.lang.Object
-
- cz.vutbr.fit.layout.impl.BaseParameter
-
- All Implemented Interfaces:
Parameter
- Direct Known Subclasses:
ParameterBoolean
,ParameterFloat
,ParameterInt
,ParameterString
public class BaseParameter extends Object implements Parameter
A common base of parameter specifications.- Author:
- burgetr
-
-
Constructor Summary
Constructors Constructor Description BaseParameter(String name)
BaseParameter(String name, String description)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getDescription()
The decription of the parameter, its meaning and values.String
getName()
Returns the name of the parameter.
-
-
-
Method Detail
-
getName
public String getName()
Description copied from interface:Parameter
Returns the name of the parameter.
-
getDescription
public String getDescription()
Description copied from interface:Parameter
The decription of the parameter, its meaning and values.- Specified by:
getDescription
in interfaceParameter
- Returns:
- The parameter description.
-
-