Navigation Menu

Skip to content

Commit

Permalink
0004872: Design screen will display transforms that are not linked up
Browse files Browse the repository at this point in the history
properly
  • Loading branch information
joshhicks committed Mar 4, 2021
1 parent 8406954 commit aa56287
Showing 1 changed file with 12 additions and 1 deletion.
Expand Up @@ -550,13 +550,24 @@ public TransformColumn mapRow(Row rs) {
public static class TransformTableNodeGroupLink extends TransformTable {

protected NodeGroupLink nodeGroupLink;

protected boolean bound;

public void setNodeGroupLink(NodeGroupLink nodeGroupLink) {
this.nodeGroupLink = nodeGroupLink;
}

public NodeGroupLink getNodeGroupLink() {
return nodeGroupLink;
}

public boolean isBound() {
return bound;
}

public void setBound(boolean bound) {
this.bound = bound;
}


}
}

0 comments on commit aa56287

Please sign in to comment.