Skip to main content

Notice: This Wiki is now read only and edits are no longer possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "GEF/GEF4/Graph"

< GEF‎ | GEF4
m ({Root})
({Root})
(2 intermediate revisions by the same user not shown)
Line 24: Line 24:
 
The [[#Graph:Root|{Root}]] package provides a simple graph model and a support class to copy/merge such models.
 
The [[#Graph:Root|{Root}]] package provides a simple graph model and a support class to copy/merge such models.
  
[[Image:GEF4Graph-model.png|907px]]
+
[[Image:GEF4Graph-model.png|1148px]]
  
 
==== Graph, Node, Edge ====
 
==== Graph, Node, Edge ====

Revision as of 12:51, 20 May 2016

Note to non-wiki readers: This documentation is generated from the Eclipse wiki - if you have corrections or additions it would be awesome if you added them in the original wiki page.


Introduction

The GEF4 Graph component provides a simple, UI-independent graph model. It consists of the single Graph module.

GEF4-Components-Graph.png

Graph

  • feature: org.eclipse.gef4.graph
  • bundle: org.eclipse.gef4.graph

The Graph module of GEF4 Graph provides the single {Root} package, which delivers a generic graph model representation and related utility classes.


{Root}

  • package: org.eclipse.gef4.graph

The {Root} package provides a simple graph model and a support class to copy/merge such models.

GEF4Graph-model.png

Graph, Node, Edge

A Graph serves as a container for Nodes and Edges. Additionally, a Graph can be nested inside a nesting Node, so that sub-graphs can be properly represented.

Moreover, arbitrary attributes can be set on Graphs, Nodes, and Edges. The concrete attributes that are used are outside the scope of the GEF4 Graph component. The DOT importer of the GEF4 DOT component, e.g. adds DOT-specific attributes to the Graph it creates, the GEF4 Zest component uses visualization-specific attributes, which determine the concrete visualization.

GraphCopier

A GraphCopier is a utility class to copy/merge graphs.

Back to the top