()
| 12 | |
| 13 | class Thing3 implements Cloneable { |
| 14 | @Override public Thing3 clone() { |
| 15 | try { |
| 16 | return (Thing3)super.clone(); |
| 17 | } catch(CloneNotSupportedException e) { |
| 18 | throw new RuntimeException(e); |
| 19 | } |
| 20 | } |
| 21 | } |
| 22 | |
| 23 | class Thing4 implements Cloneable { |