Package net.didion.jwnl.util.factory
Interface Param
-
- All Known Implementing Classes:
AbstractValueParam
,NameValueParam
,ParamList
,ValueParam
public interface Param
Represents a parameter in a properties file. Paremeters can be nested.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
addParam(Param param)
java.lang.Object
create()
java.lang.String
getName()
java.lang.String
getValue()
-
-
-
Method Detail
-
getName
java.lang.String getName()
-
getValue
java.lang.String getValue()
-
addParam
void addParam(Param param)
-
create
java.lang.Object create() throws JWNLException
- Throws:
JWNLException
-
-