347348349350351352353
private Operation createAddProperty() { String parent = chooseNodePath(); String name = createPropertyName(); String value = createValue(); return new SetProperty(parent, name, value); }
356357358359360361362
String path = choosePropertyPath(); if (path == null) { return null; } String value = createValue(); return new SetProperty(PathUtils.getParentPath(path), PathUtils.getName(path), value); }