]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.structural2/src/org/simantics/structural2/modelingRules/ConnectionJudgement.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.structural2 / src / org / simantics / structural2 / modelingRules / ConnectionJudgement.java
index 95b87fbb8948f1910d282ab45f38a18938b5ea0f..ad647905bf7c61beb65765d41effac8e177e1f1f 100644 (file)
@@ -1,28 +1,28 @@
-package org.simantics.structural2.modelingRules;\r
-\r
-import org.simantics.db.Resource;\r
-\r
-public class ConnectionJudgement {\r
-       public static final ConnectionJudgement ILLEGAL = \r
-               new ConnectionJudgement(ConnectionJudgementType.ILLEGAL);\r
-       public static final ConnectionJudgement CANBEMADELEGAL = \r
-               new ConnectionJudgement(ConnectionJudgementType.CANBEMADELEGAL);\r
-       \r
-       public ConnectionJudgementType type;\r
-       public Resource connectionType;\r
-       public IAttachmentRelationMap attachmentRelations;\r
-       \r
-       public ConnectionJudgement(Resource connectionType) {\r
-               this.type = ConnectionJudgementType.LEGAL;\r
-               this.connectionType = connectionType;\r
-       }\r
-       \r
-       public ConnectionJudgement(ConnectionJudgementType type, Resource connectionType) {\r
-               this.type = type;\r
-               this.connectionType = connectionType;\r
-       }\r
-       \r
-       public ConnectionJudgement(ConnectionJudgementType type) {\r
-               this.type = type;\r
-       }       \r
-}\r
+package org.simantics.structural2.modelingRules;
+
+import org.simantics.db.Resource;
+
+public class ConnectionJudgement {
+       public static final ConnectionJudgement ILLEGAL = 
+               new ConnectionJudgement(ConnectionJudgementType.ILLEGAL);
+       public static final ConnectionJudgement CANBEMADELEGAL = 
+               new ConnectionJudgement(ConnectionJudgementType.CANBEMADELEGAL);
+       
+       public ConnectionJudgementType type;
+       public Resource connectionType;
+       public IAttachmentRelationMap attachmentRelations;
+       
+       public ConnectionJudgement(Resource connectionType) {
+               this.type = ConnectionJudgementType.LEGAL;
+               this.connectionType = connectionType;
+       }
+       
+       public ConnectionJudgement(ConnectionJudgementType type, Resource connectionType) {
+               this.type = type;
+               this.connectionType = connectionType;
+       }
+       
+       public ConnectionJudgement(ConnectionJudgementType type) {
+               this.type = type;
+       }       
+}