]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.diagram/src/org/simantics/diagram/adapter/ConnectionInfo.java
Logger fixes after merge commit:fdbe8762
[simantics/platform.git] / bundles / org.simantics.diagram / src / org / simantics / diagram / adapter / ConnectionInfo.java
1 /*******************************************************************************\r
2  * Copyright (c) 2007, 2010 Association for Decentralized Information Management\r
3  * in Industry THTH ry.\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
8  *\r
9  * Contributors:\r
10  *     VTT Technical Research Centre of Finland - initial API and implementation\r
11  *******************************************************************************/\r
12 package org.simantics.diagram.adapter;\r
13 \r
14 import org.simantics.db.Resource;\r
15 import org.simantics.diagram.connection.ConnectionSegmentEnd;\r
16 import org.simantics.diagram.connection.ConnectionSegmentType;\r
17 \r
18 public class ConnectionInfo {\r
19 \r
20     public Resource connectionType;\r
21     public Resource connection;\r
22     public ConnectionSegmentEnd firstEnd;\r
23     public ConnectionSegmentEnd secondEnd;\r
24     public ConnectionSegmentType segmentType;\r
25 \r
26     public boolean isValid() {\r
27         return firstEnd != null || secondEnd != null || segmentType != null;\r
28     }\r
29 \r
30     @Override\r
31     public String toString() {\r
32         return "[type=" + connectionType + ", connection=" + connection\r
33                 + ", (" + firstEnd + " <-> " + secondEnd + ") => "\r
34                 + segmentType + "]";\r
35     }\r
36 \r
37 }\r