Examples of UDIGEditorInputDescriptor


Examples of org.locationtech.udig.project.ui.internal.UDIGEditorInputDescriptor

        for (IConfigurationElement element : extensions) {
            String projectElementClassName = element
                    .getAttribute("projectElement"); //$NON-NLS-1$
            Class match = match(toMatch, projectElementClassName);
            if (match != null) {
                UDIGEditorInputDescriptor input = new UDIGEditorInputDescriptor();
                input.setEditorID(element.getAttribute("editorPartID")); //$NON-NLS-1$
                input.setName(element.getAttribute("name")); //$NON-NLS-1$
                input.setExtensionElement(element);
                input.setType(match);
                newInputs.add(input);
            }
        }
        return newInputs;
    }
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.