|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.apache.cocoon.woody.formmodel.ExpressionContextImpl
public class ExpressionContextImpl
Implementation of the ExpressionContext required for the evaluation of expressions by xReporter expression interpreter.
Constructor Summary | |
---|---|
ExpressionContextImpl(Widget widget)
|
|
ExpressionContextImpl(Widget widget,
boolean referenceChildren)
|
Method Summary | |
---|---|
Object |
get(String s)
|
Object |
resolveVariable(String name)
Variables refer to other widgets. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public ExpressionContextImpl(Widget widget)
public ExpressionContextImpl(Widget widget, boolean referenceChildren)
referenceChildren
- if true, variables will be resolved among the children of the given
container widget, rather than among the siblings of the widget.Method Detail |
---|
public Object resolveVariable(String name)
The current implementation only allows access to sibling widgets.
In case the value of a widget is null but the widget is required, then a special
exception will be thrown, the CannotYetResolveWarning
. This is because in
that case, you'll probably want to re-evaluate the expression at a later time (since
the widget is required, it will eventually get a value).
In case the value of the widget is null but the field is not required, then simply null is returned. (TODO: a function IsNull() will provided in the expression library so that expression writers can check for the likely condition where a non-required field is null).
If the variable name does not refer to an existing widget, null is returned (TODO: this behaviour will probably change in the future)
resolveVariable
in interface org.outerj.expression.ExpressionContext
public Object get(String s)
get
in interface org.outerj.expression.ExpressionContext
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |