View Javadoc
1   package xuml.tools.model.compiler.info;
2   
3   public class MyJoinColumn {
4       private final String thisColumnName;
5       private final String otherColumnName;
6   
7       public MyJoinColumn(String thisColumnName, String otherColumnName) {
8           this.thisColumnName = thisColumnName;
9           this.otherColumnName = otherColumnName;
10      }
11  
12      public String getThisColumnName() {
13          return thisColumnName;
14      }
15  
16      public String getOtherColumnName() {
17          return otherColumnName;
18      }
19  
20      @Override
21      public String toString() {
22          StringBuilder builder = new StringBuilder();
23          builder.append("JoinColumn [thisColumnName=");
24          builder.append(thisColumnName);
25          builder.append(", otherColumnName=");
26          builder.append(otherColumnName);
27          builder.append("]");
28          return builder.toString();
29      }
30  
31  }