Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 5dbf6dd96c5e5cc1b02cfc6d0b91bf2c10b32804 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.0"?>

<!--
 Copyright (c) 2014 CEA LIST.
 
 
 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:
  CEA LIST - Initial API and implementation
-->

<plugin>
   <extension point="org.eclipse.emf.ecore.generated_package">
      <!-- @generated ElementTypesConfigurations -->
      <package
            uri="http://www.eclipse.org/papyrus/infra/elementtypesconfigurations/1.2"
            class="org.eclipse.papyrus.infra.types.ElementTypesConfigurationsPackage"
            genModel="model/ElementTypesConfigurations.genmodel"/>
   </extension>

   <extension point="org.eclipse.emf.ecore.content_parser">
      <parser
            contentTypeIdentifier="org.eclipse.papyrus.infra.types"
            class="org.eclipse.papyrus.infra.types.resource.CustomElementTypesConfigurationsResourceFactoryImpl"/>
   </extension>

   <extension point="org.eclipse.emf.ecore.extension_parser">
      <parser
            type="elementtypesconfigurations"
            class="org.eclipse.papyrus.infra.types.resource.CustomElementTypesConfigurationsResourceFactoryImpl"/>
   </extension>

   <extension point="org.eclipse.core.contenttype.contentTypes">
      <!-- @generated ElementTypesConfigurations -->
      <content-type
            base-type="org.eclipse.emf.ecore.xmi"
            file-extensions="elementtypesconfigurations"
            id="org.eclipse.papyrus.infra.types"
            name="%_UI_ElementTypesConfigurations_content_type"
            priority="normal">
         <describer class="org.eclipse.emf.ecore.xmi.impl.RootXMLContentHandlerImpl$Describer">
            <parameter name="namespace" value="http://www.eclipse.org/papyrus/infra/elementtypesconfigurations/1.2"/>
            <parameter name="kind" value="xmi"/>
         </describer>
      </content-type>
   </extension>
</plugin>

Back to the top