org.jclarion.clarion.view.ViewFieldArray Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of clarion-runtime Show documentation
Show all versions of clarion-runtime Show documentation
JClarion runtime environment
The newest version!
package org.jclarion.clarion.view;
import java.util.Iterator;
import org.jclarion.clarion.ClarionObject;
public class ViewFieldArray implements ViewField, Iterable
{
private ClarionObject[] object;
public ViewFieldArray(ClarionObject object[])
{
this.object=object;
}
@Override
public ClarionObject getField() {
return null;
}
@Override
public Iterable getSubFields() {
return this;
}
@Override
public Iterator iterator()
{
return new Iterator()
{
int count=0;
@Override
public boolean hasNext() {
return count
© 2015 - 2025 Weber Informatics LLC | Privacy Policy