]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.objmap2/src/org/simantics/objmap/graph/schema/ILinkType.java
Support for linked lists in objmap2.
[simantics/platform.git] / bundles / org.simantics.objmap2 / src / org / simantics / objmap / graph / schema / ILinkType.java
1 /*******************************************************************************
2  * Copyright (c) 2007, 2013 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.objmap.graph.schema;
13
14 import org.simantics.objmap.backward.IBackwardLinkType;
15 import org.simantics.objmap.bidirectional.IBidirectionalMappingRule;
16 import org.simantics.objmap.forward.IForwardLinkType;
17
18 /**
19  * Contains rules for how a link should be created and maintained.
20  * @author Hannu Niemistö
21  */
22 public interface ILinkType<Domain,Range> extends IBidirectionalMappingRule<Domain, Range>, IBackwardLinkType<Domain,Range>, IForwardLinkType<Domain,Range> {
23     /**
24      * Creates a domain element based on known range element.
25      */
26         //Resource createDomainElement(WriteGraph g, Object rangeElement) throws MappingException;
27         
28         /**
29      * Creates a range element based on known domain element.
30      */
31         //Object createRangeElement(ReadGraph g, Resource domainElement) throws MappingException;
32 }