Diagram Types

Identifier:
org.eclipse.graphiti.ui.diagramTypes

Since:
0.7.0

Description:
Customers of Graphiti can use this extension point to register their own diagram types.

Configuration Markup:

<!ELEMENT extension (diagramType*)>

<!ATTLIST extension

point CDATA #REQUIRED

id    CDATA #IMPLIED

name  CDATA #IMPLIED

>


<!ELEMENT diagramType EMPTY>

<!ATTLIST diagramType

id          CDATA #REQUIRED

type        CDATA #REQUIRED

name        CDATA #REQUIRED

description CDATA #IMPLIED

>


Examples:


   <extension
         point="org.eclipse.graphiti.ui.diagramTypes">
      <diagramType
            description="diagram type for demo examples"
            id="org.eclipse.graphiti.examples.ecore.EcoreDiagramType"
            name="Sample Ecore DT"
            type="sample.ecore">
      </diagramType>
   </extension>  


Copyright (c) 2005, 2010 SAP AG.
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