1 /*******************************************************************************
\r
2 * Copyright (c) 2012 Association for Decentralized Information Management in
\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.annotations.factories;
\r
14 import java.lang.annotation.Annotation;
\r
15 import java.lang.reflect.Field;
\r
16 import java.util.Collection;
\r
18 import org.simantics.db.ReadGraph;
\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.IMappingRule;
\r
23 import org.simantics.objmap.annotations.RelatedListElements;
\r
24 import org.simantics.objmap.rules.MappedElementsRule;
\r
25 import org.simantics.objmap.rules.domain.RelatedListElementsAccessor;
\r
26 import org.simantics.objmap.rules.factory.IFieldRuleFactory;
\r
27 import org.simantics.objmap.rules.range.FieldAccessor;
\r
29 public class RelatedListElementsRuleFactory implements IFieldRuleFactory {
\r
32 public IMappingRule create(ReadGraph g, Annotation _annotation, Field field) throws ResourceNotFoundException, ValidationException, ServiceException {
\r
33 RelatedListElements annotation = (RelatedListElements)_annotation;
\r
34 return new MappedElementsRule(
\r
35 new RelatedListElementsAccessor(g.getResource(annotation.value())),
\r
36 new FieldAccessor<Collection<Object>>(field)
\r