1 /*******************************************************************************
\r
2 * Copyright (c) 2007, 2013 Association for Decentralized Information Management
\r
3 * in Industry THTH ry.
\r
4 * All rights reserved. This program and the accompanying materials
\r
5 * are made available under the terms of the Eclipse Public License v1.0
\r
6 * which accompanies this distribution, and is available at
\r
7 * http://www.eclipse.org/legal/epl-v10.html
\r
10 * VTT Technical Research Centre of Finland - initial API and implementation
\r
11 *******************************************************************************/
\r
12 package org.simantics.objmap.structural.annotations.factories;
\r
14 import java.lang.annotation.Annotation;
\r
15 import java.lang.reflect.Field;
\r
17 import org.simantics.db.ReadGraph;
\r
18 import org.simantics.db.Resource;
\r
19 import org.simantics.db.exception.ResourceNotFoundException;
\r
20 import org.simantics.db.exception.ServiceException;
\r
21 import org.simantics.db.exception.ValidationException;
\r
22 import org.simantics.objmap.bidirectional.IBidirectionalMappingRule;
\r
23 import org.simantics.objmap.graph.annotations.RelatedElement;
\r
24 import org.simantics.objmap.graph.rules.MappedElementRule;
\r
25 import org.simantics.objmap.graph.rules.domain.RelatedObjectAccessor;
\r
26 import org.simantics.objmap.graph.rules.factory.IFieldRuleFactory;
\r
27 import org.simantics.objmap.graph.rules.range.FieldAccessor;
\r
30 public class RelatedElementRuleFactory<Range> implements IFieldRuleFactory<Resource,Range> {
\r
33 public IBidirectionalMappingRule<Resource, Range> create(ReadGraph g, Annotation _annotation, Field field) throws ResourceNotFoundException, ValidationException, ServiceException {
\r
34 RelatedElement annotation = (RelatedElement)_annotation;
\r
35 return new MappedElementRule<Resource,Range>(
\r
36 new RelatedObjectAccessor(g.getResource(annotation.value())),
\r
37 new FieldAccessor<Range,Range>(field)
\r