All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jclarion.clarion.view.ViewFieldArray Maven / Gradle / Ivy

There is a newer version: 1.86
Show 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