view core/src/luan/DeepCloneable.java @ 360:cbb94a7c7a9e

allow mail attachments; add String.to_binary and Binary.to_string;
author Franklin Schmidt <fschmidt@gmail.com>
date Wed, 15 Apr 2015 11:32:30 -0600
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);
}