Skip to content

Commit

Permalink
Rename ModuleNode.getNodeFullLabel() to ModuleNode.getNodeLongLabel()
Browse files Browse the repository at this point in the history
  • Loading branch information
vedran-kasalica committed Jan 14, 2021
1 parent 6934f7f commit 1258988
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@ public String getNodeLabel() {
/**
* Gets node descriptive label, containing module IDs.
*/
public String getNodeFullLabel() {
public String getNodeLongLabel() {
return this.usedModule.getPredicateLongLabel();
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -73,21 +73,21 @@ public int compareTo(SolutionWorkflowNode otherNode) {
}

/**
* Gets node id.
* Gets unique node ID.
*
* @return The unique ID that identifies the node and should not be used for presentation.
*/
public abstract String getNodeID();

/**
* Gets node full label.
* Gets node long (full) label (e.g. containing OWL URIs).
*
* @return A label that describes the node using full type and tool IDs (it is usually much longer than {@link #getNodeLabel()}.
*/
public abstract String getNodeFullLabel();
public abstract String getNodeLongLabel();

/**
* Gets node label.
* Gets node label (e.g. containing OWL labels).
*
* @return A human readable and condensed label that describes the node.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ public String getNodeID() {
/**
* Gets node descriptive label, containing type IDs.
*/
public String getNodeFullLabel() {
public String getNodeLongLabel() {
StringBuilder printString = new StringBuilder();
int i = 0;
for (Type type : this.usedTypes) {
Expand Down

0 comments on commit 1258988

Please sign in to comment.