Skip to main content
summaryrefslogblamecommitdiffstats
blob: de5fa36018775d33b8c8e22b85e8ef093c782446 (plain) (tree)











































                                                                                                               
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>

<!--
 Copyright (c) 2004 - 2012 Eike Stepper (Berlin, Germany) and others.
 All rights reserved. This program and the accompanying materials
 are made available under the terms of the Eclipse Public License v1.0
 which accompanies this distribution, and is available at
 http://www.eclipse.org/legal/epl-v10.html
  
 Contributors:
     Martin Fluegge - initial API and implementation
 
-->

<plugin>

   <extension point="org.eclipse.ui.newWizards">
      <category
            id="org.eclipse.emf.ecore.Wizard.category.ID"
            name="%_UI_Wizard_category"/>
      <wizard
            id="org.eclipse.emf.cdo.dawn.examples.acore.presentation.AcoreModelWizardID"
            name="%_UI_AcoreModelWizard_label"
            class="org.eclipse.emf.cdo.dawn.examples.acore.presentation.AcoreModelWizard"
            category="org.eclipse.emf.ecore.Wizard.category.ID"
            icon="icons/full/obj16/AcoreModelFile.gif">
         <description>%_UI_AcoreModelWizard_description</description>
         <selection class="org.eclipse.core.resources.IResource"/>
      </wizard>
   </extension>

   <extension point="org.eclipse.ui.editors">
      <editor
            id="org.eclipse.emf.cdo.dawn.examples.acore.presentation.AcoreEditorID"
            name="%_UI_AcoreEditor_label"
            icon="icons/full/obj16/AcoreModelFile.gif"
            extensions="acore"
            class="org.eclipse.emf.cdo.dawn.examples.acore.presentation.AcoreEditor"
            contributorClass="org.eclipse.emf.cdo.dawn.examples.acore.presentation.AcoreActionBarContributor">
      </editor>
   </extension>

</plugin>

Back to the top