Methods Summary |
---|
public abstract java.lang.Object | apply(java.util.Properties props)
|
public boolean | equals(java.lang.Object obj)
if (obj == this)
return true ;
if (!(obj instanceof ParserActionBase))
return false ;
ParserActionBase other = (ParserActionBase)obj ;
return propertyName.equals( other.propertyName ) &&
prefix == other.prefix &&
operation.equals( other.operation ) &&
fieldName.equals( other.fieldName ) ;
|
public java.lang.String | getFieldName()
return fieldName ;
|
protected com.sun.corba.se.spi.orb.Operation | getOperation()
return operation ;
|
public java.lang.String | getPropertyName()
return propertyName ;
|
public int | hashCode()
return propertyName.hashCode() ^ operation.hashCode() ^
fieldName.hashCode() ^ (prefix ? 0 : 1) ;
|
public boolean | isPrefix()
return prefix ;
|