Package org.locationtech.udig.project.interceptor

Examples of org.locationtech.udig.project.interceptor.FeatureInterceptor


                .getExtensionPointList(FeatureInterceptor.EXTENSION_ID);
        for( IConfigurationElement element : interceptors ) {
            String id = element.getAttribute("id");
            if (FeatureInterceptor.CREATED_ID.equals(element.getName())) {
                try {
                    FeatureInterceptor interceptor = (FeatureInterceptor) element
                            .createExecutableExtension("class");
                    interceptor.run(feature);
                } catch (Exception e) {
                    ProjectPlugin.log("FeatureInterceptor " + id + ":" + e, e);
                }
            }
        }
View Full Code Here

TOP

Related Classes of org.locationtech.udig.project.interceptor.FeatureInterceptor

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.