org.apache.cocoon.transformation
protected static class: SimpleFormTransformer.ValueList [javadoc |
source]
java.lang.Object
org.apache.cocoon.transformation.SimpleFormTransformer$ValueList
Keep track of multiple values.
| Constructor: |
public ValueList(Object[] values) {
this.values = values;
this.current = (values != null && values.length > 0 ? 0 : -1);
}
|
| Method from org.apache.cocoon.transformation.SimpleFormTransformer$ValueList Summary: |
|---|
|
getNext |
| Method from org.apache.cocoon.transformation.SimpleFormTransformer$ValueList Detail: |
public Object getNext() {
Object result = null;
if (this.values != null) {
if (this.current < this.values.length) {
result = this.values[this.current++];
}
}
return result;
}
|