clonar objeto en java
//Debemos implementar la clase Cloneable
public ImagePlaneDB clone() throws CloneNotSupportedException {
Object obj = null;
try {
obj = super.clone();
} catch (CloneNotSupportedException ex) {
ex.printStackTrace();
}
return (ImagePlaneDB) obj;
}