]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.diagram/src/org/simantics/diagram/synchronization/graph/ElementLoader.java
Some enhancements to GraphLayer-related utilities for Diagram layers
[simantics/platform.git] / bundles / org.simantics.diagram / src / org / simantics / diagram / synchronization / graph / ElementLoader.java
1 /*******************************************************************************
2  * Copyright (c) 2007, 2010 Association for Decentralized Information Management
3  * in Industry THTH ry.
4  * All rights reserved. This program and the accompanying materials
5  * are made available under the terms of the Eclipse Public License v1.0
6  * which accompanies this distribution, and is available at
7  * http://www.eclipse.org/legal/epl-v10.html
8  *
9  * Contributors:
10  *     VTT Technical Research Centre of Finland - initial API and implementation
11  *******************************************************************************/
12 package org.simantics.diagram.synchronization.graph;
13
14 import org.simantics.db.ReadGraph;
15 import org.simantics.db.exception.DatabaseException;
16 import org.simantics.diagram.adapter.GraphToDiagramSynchronizer;
17 import org.simantics.diagram.ui.DiagramModelHints;
18 import org.simantics.g2d.diagram.IDiagram;
19 import org.simantics.g2d.element.IElement;
20
21 /**
22  * ElementLoader is an interface for adding loading (initialization) passes on a
23  * per-element basis into the diagram loading sequence performed by
24  * {@link GraphToDiagramSynchronizer}. See
25  * {@link DiagramModelHints#KEY_ELEMENT_LOADER} for more information.
26  * 
27  * @author Tuukka Lehtonen
28  * 
29  * @see DiagramModelHints#KEY_ELEMENT_LOADER
30  */
31 public interface ElementLoader {
32
33     /**
34      * @param g
35      * @param diagram
36      * @param element
37      */
38     void load(ReadGraph g, IDiagram diagram, IElement element) throws DatabaseException;
39
40 }