]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.browsing.ui.graph.impl/src/org/simantics/browsing/ui/graph/impl/TypeIndex.java
Fixed multiple issues causing dangling references to discarded queries
[simantics/platform.git] / bundles / org.simantics.browsing.ui.graph.impl / src / org / simantics / browsing / ui / graph / impl / TypeIndex.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
16 import org.eclipse.core.runtime.IAdaptable;
17 import org.simantics.db.Resource;
18
19 public class TypeIndex implements IAdaptable {
20     
21     final public Resource type;
22     final public Collection<Resource> instances;
23     final public String name;
24
25     public TypeIndex(Resource type, Collection<Resource> instances, String name) {
26         this.type = type;
27         this.instances = instances;
28         this.name = name;
29     }
30
31     @SuppressWarnings({ "rawtypes" })
32     @Override
33     public Object getAdapter(Class adapter) {
34         if (adapter == Resource.class)
35             return type;
36         return null;
37     }
38
39 }