@Override
public void addOrRemoveProperty(String nodePath, String propertyName,
String value, boolean add) {
JsopTokenizer t = new JsopTokenizer(value);
if (t.matches(JsopReader.STRING)) {
String v = t.getToken();
if (v.startsWith(prefix)) {
addOrRemove(nodePath, propertyName, v, add);
}
} else if (t.matches('[')) {