Package org.geotools.data.DataAccessFactory

Examples of org.geotools.data.DataAccessFactory.Param


public class ParamInfoTest {

    @Test
    public void testTitle() {
        Param param = new Param("abc", String.class, new SimpleInternationalString("the title"),
                new SimpleInternationalString("the description"), true, 1, 1, null, null);
        ParamInfo pi = new ParamInfo(param);
        assertEquals("the title", pi.getTitle());
    }
View Full Code Here


        assertEquals("the title", pi.getTitle());
    }

    @Test
    public void testDescription() {
        Param param = PropertyDataStoreFactory.DIRECTORY;
        ParamInfo pi = new ParamInfo(param);
        assertEquals(PropertyDataStoreFactory.DIRECTORY.description.toString(), pi.getTitle());
    }
View Full Code Here

TOP

Related Classes of org.geotools.data.DataAccessFactory.Param

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.