Package org.locationtech.udig.issues

Examples of org.locationtech.udig.issues.IssuesListConfigurator


            if ((string).equals(listID)) {
                try {
                    issuesList = (IIssuesList) element.createExecutableExtension("class"); //$NON-NLS-1$
                    String config = element.getAttribute("configurator"); //$NON-NLS-1$
                    if (config != null) {
                        IssuesListConfigurator configurator = (IssuesListConfigurator) element
                                .createExecutableExtension("configurator"); //$NON-NLS-1$
                        String data = preferenceStore.getString(IssuesPreferencePage.PREFERENCE_ID
                                + "/" + listID); //$NON-NLS-1$
                        XMLMemento memento = XMLMemento.createReadRoot(new StringReader(data));
                        configurator.initConfiguration(issuesList, memento);
                    }
                    break;
                } catch (CoreException e) {
                    issuesList = null;
                    IssuesActivator.log("", e); //$NON-NLS-1$
View Full Code Here

TOP

Related Classes of org.locationtech.udig.issues.IssuesListConfigurator

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.