| java.lang.Object org.apache.beehive.netui.script.el.tokens.ExpressionToken org.apache.beehive.netui.script.el.tokens.ArrayIndexToken
ArrayIndexToken | public ArrayIndexToken(String identifier)(Code) | | |
read | public Object read(Object value)(Code) | | Evaluate an array index token. This token takes the form "[1234]" where
"1234" is the index into the array. The token is identified as this because
an integer number appears between the square brackets.
Parameters: value - the object from which to read a value at the index represented by this token the value of the item at this array index |
Methods inherited from org.apache.beehive.netui.script.el.tokens.ExpressionToken | final protected Object arrayLookup(Object array, int index)(Code)(Java Doc) final protected void arrayUpdate(Object array, int index, Object value)(Code)(Java Doc) final protected Object beanLookup(Object value, Object propertyName)(Code)(Java Doc) final protected void beanUpdate(Object bean, Object identifier, Object value)(Code)(Java Doc) abstract public String getTokenString()(Code)(Java Doc) final protected Object listLookup(List list, int index)(Code)(Java Doc) final protected void listUpdate(List list, int index, Object value)(Code)(Java Doc) final protected Object mapLookup(Map map, Object key)(Code)(Java Doc) final protected void mapUpdate(Map map, Object key, Object value)(Code)(Java Doc) final protected int parseIndex(String indexString)(Code)(Java Doc) abstract public Object read(Object object)(Code)(Java Doc) abstract public void write(Object object, Object value)(Code)(Java Doc)
|
|
|