Package org.apache.cxf.javascript.fortest.aegis

Examples of org.apache.cxf.javascript.fortest.aegis.Vegetable


        BeanWithAnyTypeArray bwata = new BeanWithAnyTypeArray();
        bwata.setString("lima");
        Object[] obs = new Object[3];
        obs[0] = new Mammal();
        obs[1] = new Integer(42);
        obs[2] = new Vegetable(); // this is NOT in the WSDL.
        bwata.setObjects(obs);
        return bwata;
    }
View Full Code Here


        BeanWithAnyTypeArray bwata = new BeanWithAnyTypeArray();
        bwata.setString("lima");
        Object[] obs = new Object[3];
        obs[0] = new Mammal();
        obs[1] = new Integer(42);
        obs[2] = new Vegetable(); // this is NOT in the WSDL.
        bwata.setObjects(obs);
        return bwata;
    }
View Full Code Here

        BeanWithAnyTypeArray bwata = new BeanWithAnyTypeArray();
        bwata.setString("lima");
        Object[] obs = new Object[3];
        obs[0] = new Mammal();
        obs[1] = new Integer(42);
        obs[2] = new Vegetable(); // this is NOT in the WSDL.
        bwata.setObjects(obs);
        return bwata;
    }
View Full Code Here

TOP

Related Classes of org.apache.cxf.javascript.fortest.aegis.Vegetable

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.