Package org.springframework.ide.eclipse.config.core

Examples of org.springframework.ide.eclipse.config.core.IConfigEditorPage.initialize()


  private IConfigEditorPage createConfigEditorPage(IConfigurationElement definition, String property) {
    try {
      Object obj = definition.createExecutableExtension(property);
      if (obj instanceof IConfigEditorPage) {
        IConfigEditorPage page = (IConfigEditorPage) obj;
        page.initialize(this, definition.getAttribute(FormPagesExtensionPointConstants.ATTR_NAMESPACE_URI));
        return page;
      }
    }
    catch (CoreException e) {
      StatusHandler.log(new Status(IStatus.ERROR, ConfigUiPlugin.PLUGIN_ID, Messages
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.