]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.structural2/src/org/simantics/structural2/modelingRules/CPConnection.java
Sync git svn branch with SVN repository r33324.
[simantics/platform.git] / bundles / org.simantics.structural2 / src / org / simantics / structural2 / modelingRules / CPConnection.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.structural2.modelingRules;\r
13 \r
14 import org.simantics.db.ReadGraph;\r
15 import org.simantics.db.Resource;\r
16 \r
17 public class CPConnection implements IConnectionPoint {\r
18 \r
19     public final Resource connection;\r
20 \r
21     public CPConnection(Resource connection) {\r
22         if (connection == null)\r
23             throw new NullPointerException("null connection");\r
24         this.connection = connection;\r
25     }\r
26 \r
27     @Override\r
28     public String toString(ReadGraph g) {\r
29         return "CPConnection(" + (connection) + ")";\r
30     }\r
31 \r
32     @Override\r
33     public int hashCode() {\r
34         return connection.hashCode();\r
35     }\r
36 \r
37     @Override\r
38     public boolean equals(Object obj) {\r
39         if (this == obj)\r
40             return true;\r
41         if (obj == null)\r
42             return false;\r
43         if (getClass() != obj.getClass())\r
44             return false;\r
45         CPConnection other = (CPConnection) obj;\r
46         return connection.equals(other.connection);\r
47     }\r
48 \r
49 }\r