NormalParserActionpublic class NormalParserAction extends ParserActionBase
Methods Summary |
---|
public java.lang.Object | apply(java.util.Properties props)Create a String[] of all suffixes of property names that
match the propertyName prefix, pass this to op, and return the
result.
Object value = props.getProperty( getPropertyName() ) ;
if (value != null)
return getOperation().operate( value ) ;
else
return null ;
|
|