Interface GenericParameterObject
-
- All Known Implementing Classes:
DefaultParameterObject
,SaxParameterObject
public interface GenericParameterObject
Simple context interface for pass values across commands.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Object
get(String key)
Returns the object of the given key.String
getAsString(String errorString)
Returns the object of the given key as String.void
put(String key, Object value)
Saves an object to the key.
-
-
-
Method Detail
-
get
Object get(String key)
Returns the object of the given key.- Parameters:
key
- The given key to return the value.- Returns:
- The value of the key
-
getAsString
String getAsString(String errorString)
Returns the object of the given key as String.- Parameters:
errorString
- The given key to return a value as String.- Returns:
- The value of the key as string.
-
-