Package org.geotools.data.efeature.tests

Examples of org.geotools.data.efeature.tests.NonGeoEObject


     * <!-- end-user-doc -->
     * @generated
     */
    @Override
    public String getText(Object object) {
        NonGeoEObject nonGeoEObject = (NonGeoEObject)object;
        return getString("_UI_NonGeoEObject_type") + " " + nonGeoEObject.getNonGeoAttribute(); //$NON-NLS-1$ //$NON-NLS-2$
    }
View Full Code Here


    public List<NonGeoEObject> addNonGeoEObjects(int count)
    {
        List<NonGeoEObject> items = new ArrayList<NonGeoEObject>(count);
        if(count>0) {
            for(int i=0;i<count;i++) {
                NonGeoEObject it = EFeatureTestsFactory.eINSTANCE.createNonGeoEObject();
                items.add(it);           
            }
            eResource.getContents().addAll(items);
        }
        return items;
View Full Code Here

TOP

Related Classes of org.geotools.data.efeature.tests.NonGeoEObject

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.