Package org.locationtech.udig.tutorials.catalog.csv.internal

Examples of org.locationtech.udig.tutorials.catalog.csv.internal.Activator


@SuppressWarnings("nls")
public class CSVServiceTest {
   
    @Test
    public void testCreateService() throws Exception {
        Activator instance = Activator.getDefault();
        assertNotNull("Run as a JUnit Plug-in Test", instance );
       
        Bundle bundle = instance.getBundle();
        URL url = bundle.getEntry("cities.csv");
        System.out.println("Bundle URL"+ url );
       
        URL fileUrl = FileLocator.toFileURL( url );
        System.out.println("Bundle URL"+ fileUrl );
View Full Code Here

TOP

Related Classes of org.locationtech.udig.tutorials.catalog.csv.internal.Activator

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.