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 StringgetDescription()The decription of the parameter, its meaning and values.StringgetName()Returns the name of the parameter.
-
-
-
Method Detail
-
getName
public String getName()
Description copied from interface:ParameterReturns the name of the parameter.
-
getDescription
public String getDescription()
Description copied from interface:ParameterThe decription of the parameter, its meaning and values.- Specified by:
getDescriptionin interfaceParameter- Returns:
- The parameter description.
-
-