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