1 /*
2 * ClonebleObject1.java
3 *
4 * Created on 11 Июнь 2006 г., 18:20
5 */
6
7 package org.weda;
8
9 /**
10 *
11 * @author Mikhail Titov
12 */
13 public class CloneableObject1 implements Cloneable {
14 private CloneableObject2 obj;
15
16 public CloneableObject1() {
17 }
18
19 public CloneableObject2 getObj() {
20 return obj;
21 }
22
23 public Object clone() throws CloneNotSupportedException {
24 Object retValue;
25
26 retValue = super.clone();
27 return retValue;
28 }
29
30 }