Package org.locationtech.udig.project.interceptor

Examples of org.locationtech.udig.project.interceptor.FeatureInterceptor.run()


            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
Copyright © 2018 www.massapi.com. 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.