org.apache.commons.ognl.enhance
Interface LocalReference

All Known Implementing Classes:
LocalReferenceImpl

public interface LocalReference

Container class for OgnlExpressionCompiler generated local method block references.


Method Summary
 String getExpression()
          The expression that sets the value, ie the part after refName = .
 String getName()
          The name of the assigned variable reference.
 Class<?> getType()
          The type of reference.
 

Method Detail

getName

String getName()
The name of the assigned variable reference.

Returns:
The name of the reference as it will be when compiled.

getExpression

String getExpression()
The expression that sets the value, ie the part after refName = .

Returns:
The setting expression.

getType

Class<?> getType()
The type of reference.

Returns:
The type.


Copyright © 1997-2013 The Apache Software Foundation. All Rights Reserved.