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