CopletInstanceData clone = (CopletInstanceData)super.clone();
clone.copletData = this.copletData;
clone.attributes = new HashMap(this.attributes);
clone.temporaryAttributes = new HashMap(this.temporaryAttributes);
clone.preferences = new PreferenceSetImpl();
clone.preferences.addAll(this.preferences.getPreferences());
return clone;
}