]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.graph/src/org/simantics/graph/representation/External.java
Fixing PrettyPrintTG to not concatenate strings in logging
[simantics/platform.git] / bundles / org.simantics.graph / src / org / simantics / graph / representation / External.java
1 package org.simantics.graph.representation;
2
3 public class External implements IdentityDefinition {
4         public int parent;
5         public String name;
6         
7         public External() {     
8         }
9
10         public External(int parent, String name) {      
11                 this.parent = parent;
12                 this.name = name;
13         }
14         
15         @Override
16         public String toString() {
17             return "External(" + parent + ", " + name + ")";
18         }
19         
20 }