com.actelion.research.util.datamodel.IModelCloneable Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openchemlib Show documentation
Show all versions of openchemlib Show documentation
Open Source Chemistry Library
package com.actelion.research.util.datamodel;
/**
* IModelClonable
* Modest v. Korff
*
* Created by korffmo1 on 03.01.19.
*/
public interface IModelCloneable {
/**
*
* @return a deep copy of this is needed.
*/
IModelCloneable getDeepClone();
}