We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b33754d commit 654049aCopy full SHA for 654049a
1 file changed
src/test/communitycommons/XPathTest.java
@@ -276,6 +276,11 @@ public boolean hasChangedDateAttribute() {
276
throw new UnsupportedOperationException("Unimplemented method 'hasChangedDateAttribute'");
277
}
278
279
+ @Override
280
+ public boolean hasChangedMemberValue(IContext context) {
281
+ throw new UnsupportedOperationException("Unimplemented method 'hasChangedMemberValue'");
282
+ }
283
+
284
@Override
285
public boolean hasOwnerAttribute() {
286
throw new UnsupportedOperationException("Unimplemented method 'hasOwnerAttribute'");
@@ -329,6 +334,11 @@ public boolean isNew() {
329
334
public TestObject clone() {
330
335
return new TestObject(id);
331
336
337
338
339
+ public TestObject createClone() {
340
+ return new TestObject(id);
341
332
342
333
343
344
private static class TestProxy {
0 commit comments