view core/src/luan/DeepCloneable.java @ 251:705d14f4d8ee

start web testing git-svn-id: https://luan-java.googlecode.com/svn/trunk@252 21e917c8-12df-6dd8-5cb6-c86387c605b9
author fschmidt@gmail.com <fschmidt@gmail.com@21e917c8-12df-6dd8-5cb6-c86387c605b9>
date Sun, 19 Oct 2014 03:38:47 +0000
parents 3dcb0f9bee82
children c6bcb8859b93
line wrap: on
line source

package luan;


public interface DeepCloneable<T extends DeepCloneable> {
	public T shallowClone();
	public void deepenClone(T clone,DeepCloner cloner);
}