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

org.hpccsystems.ws.client.wrappers.gen.wssql.ArrayOfECLGraphWrapper Maven / Gradle / Ivy

package org.hpccsystems.ws.client.wrappers.gen.wssql;



/*******************************************************************************
 * HPCC SYSTEMS software Copyright (C) 2021 HPCC Systems.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 *******************************************************************************/
import java.util.List;
import java.util.ArrayList;

/**
 * Generated Axis2 ADB stub class wrapper
 * WrapperMaker version: 1.7
 * Class name: ArrayOfECLGraphWrapper
 * Wraps class: org.hpccsystems.ws.client.gen.axis2.wssql.latest.ArrayOfECLGraph
 * Output package : org.hpccsystems.ws.client.wrappers.gen.wssql
 * Service version: 3.06
 */
public class ArrayOfECLGraphWrapper
{
    protected List local_eCLGraph = null;

    public ArrayOfECLGraphWrapper() {}

    public ArrayOfECLGraphWrapper( org.hpccsystems.ws.client.gen.axis2.wssql.latest.ArrayOfECLGraph arrayofeclgraph)
    {
        copy( arrayofeclgraph );
    }
    public ArrayOfECLGraphWrapper( List _eCLGraph )
    {
        this.local_eCLGraph = _eCLGraph;

    }

    private void copy( org.hpccsystems.ws.client.gen.axis2.wssql.latest.ArrayOfECLGraph raw )
    {
        if (raw == null)
            return;

        if (raw.getECLGraph() != null)
        {
            this.local_eCLGraph = new ArrayList();
            for ( int i = 0; i < raw.getECLGraph().length; i++)
            {
                this.local_eCLGraph.add(new ECLGraphWrapper(raw.getECLGraph()[i]));
            }
        }
    }

    @Override
    public String toString()
    {
        return "ArrayOfECLGraphWrapper [" + "eCLGraph = " + local_eCLGraph + "]";
    }
    public org.hpccsystems.ws.client.gen.axis2.wssql.latest.ArrayOfECLGraph getRaw()
    {
        org.hpccsystems.ws.client.gen.axis2.wssql.latest.ArrayOfECLGraph raw = new org.hpccsystems.ws.client.gen.axis2.wssql.latest.ArrayOfECLGraph();
        if (this.local_eCLGraph!= null)
        {
            org.hpccsystems.ws.client.gen.axis2.wssql.latest.ECLGraph[] arr = new org.hpccsystems.ws.client.gen.axis2.wssql.latest.ECLGraph[this.local_eCLGraph.size()];
            for ( int i = 0; i < this.local_eCLGraph.size(); i++)
            {
                arr[i] = this.local_eCLGraph.get(i) .getRaw();
            }
            raw.setECLGraph(arr);
        }
        return raw;
    }


    public void setECLGraph( List _eCLGraph )
    {
        this.local_eCLGraph = _eCLGraph;
    }
    public List getECLGraph( )
    {
        return this.local_eCLGraph;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy