1 | public String toString()↵ | | 1 | public String toString()↵
|
2 | {↵ | | 2 | {↵
|
3 | if (eIsProxy()) return super.toString();↵ | | 3 | if (eIsProxy()) return super.toString();↵
|
|
4 | StringBuffer result = new StringBuffer(super.toString());↵ | | 4 | StringBuffer result = new StringBuffer(super.toString());↵
|
5 | result.append(" (mixed: ");↵ | | 5 | result.append(" (in2out: ");↵
|
6 | result.append(mixed);↵ | | 6 | result.append(in2out);↵
|
7 | result.append(", anyAttribute: ");↵ | | 7 | result.append(", out2in: ");↵
|
8 | result.append(anyAttribute);↵ | | 8 | result.append(out2in);↵
|
9 | result.append(')');↵ | | 9 | result.append(')');↵
|
10 | return result.toString();↵ | | 10 | return result.toString();↵
|
11 | | | 11 |
|