Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: b3803a464e41d71df630bcfb4265662d786c12e3 (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
53
54
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.2"?>
<plugin>
	<extension
			point="org.eclipse.emf.ecore.uri_mapping">
		<mapping
			source="pathmap://PapyrusC_Cpp_LIBRARIES/"
			target="platform:/plugin/org.eclipse.papyrus.cpp.profile/libraries/"/>
		<mapping
			source="pathmap://PapyrusC_Cpp_PROFILES/"
			target="platform:/plugin/org.eclipse.papyrus.cpp.profile/profiles/"/>
	</extension>
  
	<extension 
			point="org.eclipse.uml2.uml.generated_package">
		<profile
			uri="http://www.eclipse.org/papyrus/C_Cpp/1"
			location="pathmap://PapyrusC_Cpp_PROFILES/C_Cpp.profile.uml#_j9REUByGEduN1bTiWJ0lyw"/>
	</extension>

	<extension
			point="org.eclipse.papyrus.uml.extensionpoints.UMLLibrary">
		<library
			description="Standard C Ansi types"
			iconpath="icons/transfo_cpp.gif"
			name="AnsiCLibrary"
			path="pathmap://PapyrusC_Cpp_LIBRARIES/AnsiCLibrary.uml"
			provider="CEA LIST"/>
	</extension>
   
	<extension
			point="org.eclipse.papyrus.uml.extensionpoints.UMLProfile">
		<profile
			description="C/C++ profile used for code generation"
			iconpath="icons/transfo_cpp.gif"
			name="C/C++ profile"
			path="pathmap://PapyrusC_Cpp_PROFILES/C_Cpp.profile.uml"
			provider="CEA LIST"/>
	</extension>
   <extension point="org.eclipse.emf.ecore.generated_package">
      <!-- @generated C_Cpp -->
      <package
            uri="http://www.eclipse.org/papyrus/C_Cpp/1"
            class="org.eclipse.papyrus.C_Cpp.C_CppPackage"
            genModel="profiles/C_Cpp.genmodel"/>
   </extension>

   <extension point="org.eclipse.emf.ecore.extension_parser">
      <!-- @generated C_Cpp -->
      <parser
            type="c_cpp"
            class="org.eclipse.papyrus.C_Cpp.util.C_CppResourceFactoryImpl"/>
   </extension>
</plugin>

Back to the top