-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix typos update to JDK 19 update README add support for @literal tag-value mappings improve stability of node auto-reset feature
- Loading branch information
Showing
8 changed files
with
106 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
<extension version="1"> | ||
<name>CommissioningScripts</name> | ||
<description>Executes scripts concurrently on groups of equipment to evaluate performance and detect faults.</description> | ||
<version>0.1.2</version> | ||
<version>0.1.3</version> | ||
<vendor>Automatic Controls Equipment Systems, Inc.</vendor> | ||
</extension> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
52 changes: 52 additions & 0 deletions
52
src/aces/webctrl/scripts/commissioning/core/LiteralNode.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
package aces.webctrl.scripts.commissioning.core; | ||
import com.controlj.green.addonsupport.access.*; | ||
import com.controlj.green.addonsupport.access.node.*; | ||
import java.util.*; | ||
public class LiteralNode implements Node { | ||
private volatile String value; | ||
public LiteralNode(String value){ | ||
this.value = value; | ||
} | ||
@Override public String eval(String arg0){ | ||
return null; | ||
} | ||
@Override public Node evalToNode(String arg0){ | ||
return null; | ||
} | ||
@Override public List<Node> getChildren(){ | ||
return null; | ||
} | ||
@Override public String getDisplayName(){ | ||
return null; | ||
} | ||
@Override public String getDisplayName(Locale arg0){ | ||
return null; | ||
} | ||
@Override public String getDisplayValue(){ | ||
return value; | ||
} | ||
@Override public Node getParent(){ | ||
return null; | ||
} | ||
@Override public String getReferenceName(){ | ||
return null; | ||
} | ||
@Override public String getRelativeReferencePath(Node arg0){ | ||
return null; | ||
} | ||
@Override public String getValue(){ | ||
return value; | ||
} | ||
@Override public boolean hasParent(){ | ||
return false; | ||
} | ||
@Override public Location resolveToLocation(Tree arg0){ | ||
return null; | ||
} | ||
@Override public void setDisplayValue(String arg0){ | ||
value = arg0; | ||
} | ||
@Override public void setValue(String arg0){ | ||
value = arg0; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters