1 9 package org.ozoneDB.DxLib; 10 11 12 public class DxObject implements DxCompatible { 13 14 final static long serialVersionUID = 1L; 15 16 17 20 public DxObject() { 21 } 22 23 24 28 public Object clone() { 29 try { 30 return super.clone(); 31 } catch (Exception e) { 32 throw new RuntimeException ( e.toString() ); 33 } 34 } 35 36 37 40 public boolean isLess( DxCompatible obj ) { 41 throw new RuntimeException ( "isLess(): subclass responsibility" ); 42 } 43 44 } 45 | Popular Tags |