]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.browsing.ui.graph.impl/src/org/simantics/browsing/ui/graph/impl/ResourcePropertyFactory.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.browsing.ui.graph.impl / src / org / simantics / browsing / ui / graph / impl / ResourcePropertyFactory.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.browsing.ui.graph.impl;
13
14 import org.simantics.browsing.ui.common.property.IProperty;
15 import org.simantics.browsing.ui.common.property.IPropertyFactory;
16 import org.simantics.db.Resource;
17 import org.simantics.db.common.ResourceArray;
18 import org.simantics.utils.datastructures.slice.ValueRange;
19
20 /**
21  * @author Tuukka Lehtonen
22  */
23 public class ResourcePropertyFactory implements IPropertyFactory<ResourceProperty> {
24
25     final IProperty.Type type;
26     final Resource       subject;
27     final Resource       predicate;
28     final Resource       value;
29     final ResourceArray  path;
30
31     public ResourcePropertyFactory(IProperty.Type type, Resource subject, Resource predicate, Resource value, ResourceArray path) {
32         this.type = type;
33         this.subject = subject;
34         this.predicate = predicate;
35         this.value = value;
36         this.path = path;
37     }
38
39     @Override
40     public ResourceProperty create(ValueRange range) {
41         if (range != null)
42             return new ResourceArrayProperty(type, range, subject, predicate, value, path);
43         return new ResourceProperty(type, subject, predicate, value, path);
44     }
45
46 }