1 | @Override↵ | | 1 | @Override↵
|
2 | public Collection<?> doGetResult()↵ | | 2 | public Collection<?> doGetResult()↵
|
3 | {↵ | | 3 | {↵
|
4 | return collection;↵ | | 4 | return collection;↵
|
5 | }↵ | | 5 | }↵
|
|
6 | @Override↵ | | 6 | @Override↵
|
7 | public Collection<?> doGetAffectedObjects()↵ | | 7 | public Collection<?> doGetAffectedObjects()↵
|
8 | {↵ | | 8 | {↵
|
9 | return affectedObjects;↵ | | 9 | return affectedObjects;↵
|
10 | }↵ | | 10 | }↵
|
|
11 | /**↵ | | 11 | /**↵
|
12 | * This gives an abbreviated name using this object's own class' name, without package qualification,↵ | | 12 | * This gives an abbreviated name using this object's own class' name, without package qualification,↵
|
13 | * followed by a space separated list of <tt>field:value</tt> pairs.↵ | | 13 | * followed by a space separated list of <tt>field:value</tt> pairs.↵
|
14 | */↵ | | 14 | */↵
|
15 | @Override↵ | | 15 | @Override↵
|
16 | public String toString()↵ | | 16 | public String toString()↵
|
17 | {↵ | | 17 | {↵
|
18 | StringBuffer result = new StringBuffer(super.toString());↵ | | 18 | StringBuffer result = new StringBuffer(super.toString());↵
|
19 | result.append(" (owner: " + owner + ")");↵ | | 19 | result.append(" (owner: " + owner + ")");↵
|
20 | result.append(" (feature: " + feature + ")");↵ | | 20 | result.append(" (feature: " + feature + ")");↵
|
21 | result.append(" (ownerList: " + ownerList + ")");↵ | | 21 | result.append(" (ownerList: " + ownerList + ")");↵
|
22 | result.append(" (collection: " + collection + ")");↵ | | 22 | result.append(" (collection: " + collection + ")");↵
|
23 | result.append(" (index: " + index + ")");↵ | | 23 | result.append(" (indices: " + Arrays.toString(indices) + ")");↵
|
24 | result.append(" (affectedObjects:" + affectedObjects + ")");↵ | | 24 | result.append(" (affectedObjects: " + affectedObjects + ")");↵
|
|
25 | return result.toString(); | | 25 | return result.toString();
|