]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.browsing.ui.graph.impl/src/org/simantics/browsing/ui/graph/impl/CommonKeys.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 / CommonKeys.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 java.util.Collection;
15 import java.util.Set;
16
17 import org.simantics.browsing.ui.NodeContext.ParametrizedPrimitiveQueryKey;
18 import org.simantics.browsing.ui.NodeContext.PrimitiveQueryKey;
19 import org.simantics.db.Resource;
20 import org.simantics.utils.Container;
21
22 public interface CommonKeys {
23
24     public static final PrimitiveQueryKey<Container<Set<Resource>>> STANDARD_CONTEXT_TYPES = new PrimitiveQueryKey<Container<Set<Resource>>>() {
25         @Override
26         public String toString() {
27             return "STANDARD_CONTEXT_TYPES";
28         }
29     };
30
31         public static final PrimitiveQueryKey<Container<Set<Resource>>> TYPES = new PrimitiveQueryKey<Container<Set<Resource>>>() {
32         @Override
33         public String toString() {
34             return "TYPES";
35         }
36     };
37
38     public static final PrimitiveQueryKey<Container<Set<Resource>>> INHERITS = new PrimitiveQueryKey<Container<Set<Resource>>>() {
39         @Override
40         public String toString() {
41             return "INHERITS";
42         }
43     };
44
45     public static class RelatedObjectsKey extends ParametrizedPrimitiveQueryKey<Container<Collection<Resource>>> {
46         public RelatedObjectsKey(Resource relation) {
47             super(relation);
48         }
49         @Override
50         public String getKeyName() {
51             return "RELATED_OBJECTS";
52         }
53     };
54
55 }