Package org.geotools.styling

Examples of org.geotools.styling.Extent


    public Extent build() {
        if (unset) {
            return null;
        }
        Extent extent = sf.createExtent(name, value);
        return extent;
    }
View Full Code Here


    }

    protected Extent copy(Extent extent) {
        String name = extent.getName();
        String value = extent.getValue();
        Extent copy = sf.createExtent(name, value);
        return copy;
    }
View Full Code Here

    }

    public void testNormal() throws Exception {
        SLDMockData.extent(document, document);

        Extent extent = (Extent) parse();

        assertNotNull(extent);
        assertEquals("theName", extent.getName());
        assertEquals("theValue", extent.getValue());
    }
View Full Code Here

TOP

Related Classes of org.geotools.styling.Extent

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.