]> gerrit.simantics Code Review - simantics/district.git/blob - org.simantics.district.network/src/org/simantics/district/network/profile/EdgeNodeGroup.java
Added DN.Element as base type for DH diagram elements
[simantics/district.git] / org.simantics.district.network / src / org / simantics / district / network / profile / EdgeNodeGroup.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.district.network.profile;
13
14 import org.simantics.db.ReadGraph;
15 import org.simantics.db.Resource;
16 import org.simantics.db.exception.DatabaseException;
17 import org.simantics.diagram.profile.DiagramElementGroup;
18 import org.simantics.district.network.ontology.DistrictNetworkResource;
19
20 public class EdgeNodeGroup extends DiagramElementGroup {
21
22     public EdgeNodeGroup(ReadGraph graph) {
23         super(graph);
24         System.out.println("EdgeNodeGroup init");
25     }
26
27     @Override
28     protected boolean test(ReadGraph graph, Resource element) throws DatabaseException {
29         DistrictNetworkResource DN = DistrictNetworkResource.getInstance(graph);
30         if (graph.isInstanceOf(element, DN.Edge)) {
31             return true;
32         }
33         return false;
34     }
35
36     @Override
37     public String toString() {
38         return "Edge Nodes";
39     }
40
41 }