highlight parameter added

This commit is contained in:
Honfika
2013-08-25 15:17:58 +02:00
parent 1f6d2f0056
commit d1a0c1d463
218 changed files with 622 additions and 621 deletions
@@ -35,14 +35,14 @@ public class CommaExpressionItem extends GraphTargetItem {
}
@Override
public String toString(List<Object> localData) {
public String toString(boolean highlight, List<Object> localData) {
String ret = "";
boolean first = true;
for (GraphTargetItem t : commands) {
if (!first) {
ret += ", ";
}
ret += t.toString(localData);
ret += t.toString(highlight, localData);
first = false;
}
return ret;