1 9 10 package org.jboss.util; 11 12 18 public class CloneableObject 19 implements java.lang.Cloneable  20 { 21 26 public Object clone() 27 { 28 try { 29 return super.clone(); 30 } 31 catch (CloneNotSupportedException e) { 32 throw new InternalError (); 33 } 34 } 35 36 41 public static interface Cloneable 42 extends java.lang.Cloneable  43 { 44 Object clone(); 45 } 46 } 47 | Popular Tags |