Package de.innovationgate.eclipse.editors.design.pages

Examples of de.innovationgate.eclipse.editors.design.pages.SchemaConfigurationPage


      PluginConfigurationPage pluginConfig = new PluginConfigurationPage(this);
      pluginConfig.setModel(_model);
      addPage(pluginConfig);
     
      if (_model.isFeatureSupported(WGASchemaDefinitionModel.FEATURE_SCHEMADEFINITION) && _model instanceof WGASchemaDefinitionModel) {
          SchemaConfigurationPage schemaPage = new SchemaConfigurationPage(this);
          schemaPage.setModel((WGASchemaDefinitionModel)_model);
          addPage(SCHEMADEFINITION_PAGE_INDEX, schemaPage);
      }
    } catch (PartInitException e) {
      Plugin.getDefault().logError("Unable to init design editor pages.", e);
    }
View Full Code Here


   
    page = findPage(SchemaConfigurationPage.ID);
    if (_model.isFeatureSupported(WGASchemaDefinitionModel.FEATURE_SCHEMADEFINITION)) {     
            if (page == null) {
                try {
                    page = new SchemaConfigurationPage(this);
                      ((SchemaConfigurationPage)page).setModel(_model);
                      addPage(SCHEMADEFINITION_PAGE_INDEX, page);
                } catch (PartInitException e) {                   
                }
            }         
View Full Code Here

TOP

Related Classes of de.innovationgate.eclipse.editors.design.pages.SchemaConfigurationPage

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.