Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: c281b645f90107db44cfdcfe3326fef8de01c0e1 (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
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.0"?>

<!--
 Copyright (c) 2016 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:
  Laurent Wouters laurent.wouters@cea.fr - Initial API and implementation
  
 
-->

<plugin>
   <extension-point id="models" name="Architecture Models" schema="schema/models.exsd"/>
   <extension-point id="commandProviders" name="Architecture Command Providers" schema="schema/commands.exsd"/>
   <extension-point id="listeners" name="Architecture Listeners" schema="schema/listeners.exsd"/>

   <extension
         point="org.eclipse.papyrus.infra.core.model">
      <modelSetSnippet
            classname="org.eclipse.papyrus.infra.architecture.listeners.ArchitectureDescriptionSnippet"
            description="Adapter attached to the ModelSet to listen to architecture changes">
      </modelSetSnippet>
   </extension>

</plugin>

Back to the top