Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'extraplugins/layout/org.eclipse.papyrus.layout/schema/org.eclipse.papyrus.layout.exsd')
-rw-r--r--extraplugins/layout/org.eclipse.papyrus.layout/schema/org.eclipse.papyrus.layout.exsd123
1 files changed, 0 insertions, 123 deletions
diff --git a/extraplugins/layout/org.eclipse.papyrus.layout/schema/org.eclipse.papyrus.layout.exsd b/extraplugins/layout/org.eclipse.papyrus.layout/schema/org.eclipse.papyrus.layout.exsd
deleted file mode 100644
index 8a183427c60..00000000000
--- a/extraplugins/layout/org.eclipse.papyrus.layout/schema/org.eclipse.papyrus.layout.exsd
+++ /dev/null
@@ -1,123 +0,0 @@
-<?xml version='1.0' encoding='UTF-8'?>
-<!-- Schema file written by PDE -->
-<schema targetNamespace="org.eclipse.papyrus.layout" xmlns="http://www.w3.org/2001/XMLSchema">
-<annotation>
- <appInfo>
- <meta.schema plugin="org.eclipse.papyrus.layout" id="org.eclipse.papyrus.layout" name="layouttool"/>
- </appInfo>
- <documentation>
- This extension point is use to add a class for an editor to collect information essential to apply layout like bounds of nodes, relationships .....
-It&apos;s also used to add a layout area.
- </documentation>
- </annotation>
-
- <element name="extension">
- <annotation>
- <appInfo>
- <meta.element />
- </appInfo>
- </annotation>
- <complexType>
- <sequence>
- <element ref="client"/>
- </sequence>
- <attribute name="point" type="string" use="required">
- <annotation>
- <documentation>
-
- </documentation>
- </annotation>
- </attribute>
- <attribute name="id" type="string">
- <annotation>
- <documentation>
-
- </documentation>
- </annotation>
- </attribute>
- <attribute name="name" type="string">
- <annotation>
- <documentation>
-
- </documentation>
- <appInfo>
- <meta.attribute translatable="true"/>
- </appInfo>
- </annotation>
- </attribute>
- </complexType>
- </element>
-
- <element name="client">
- <complexType>
- <attribute name="interface" type="string" use="required">
- <annotation>
- <documentation>
- You must have a class which implement LayouttoolInterface to add an editor.
- </documentation>
- <appInfo>
- <meta.attribute kind="java" basedOn=":org.eclipse.papyrus.layout.LayouttoolInterface"/>
- </appInfo>
- </annotation>
- </attribute>
- <attribute name="interfaceLayoutArea" type="string">
- <annotation>
- <documentation>
- You must have a class which implements LayoutToolAreaInterface if you want to add a layout area in your editor. This attribute is optional.
- </documentation>
- <appInfo>
- <meta.attribute kind="java" basedOn=":org.eclipse.papyrus.layout.LayoutToolAreaInterface"/>
- </appInfo>
- </annotation>
- </attribute>
- </complexType>
- </element>
-
- <annotation>
- <appInfo>
- <meta.section type="since"/>
- </appInfo>
- <documentation>
- [Enter the first release in which this extension point appears.]
- </documentation>
- </annotation>
-
- <annotation>
- <appInfo>
- <meta.section type="examples"/>
- </appInfo>
- <documentation>
- Here is an example for Topcased editor :
-&lt;extension point=&quot;org.eclipse.papyrus.layout&quot;&gt;
- &lt;client
- editor=&quot;org.topcased.modeler.editor.Modeler&quot;
- interface=&quot;org.topcased.subeditor.topcased.TopcasedSubEditor&quot;
- interfaceLayoutArea=&quot;org.topcased.subeditor.topcased.LayoutAreaCreator&quot;&gt;
- &lt;/client&gt;
- &lt;/extension&gt;
- </documentation>
- </annotation>
-
- <annotation>
- <appInfo>
- <meta.section type="apiinfo"/>
- </appInfo>
- <documentation>
- The interface must implement the interface
- org.eclipse.papyrus.layout.LayouttoolInterface
-The interfaceLayoutArea must implement the interface
- org.eclipse.papyrus.layout.LayoutToolAreaInterface
- </documentation>
- </annotation>
-
- <annotation>
- <appInfo>
- <meta.section type="implementation"/>
- </appInfo>
- <documentation>
- [Enter information about supplied implementation of this extension point.]
- </documentation>
- </annotation>
-
-
-</schema>

Back to the top