view core/src/luan/DeepCloneable.java @ 609:24b05963ba62

shell "clear" button now clears the session
author Franklin Schmidt <fschmidt@gmail.com>
date Wed, 09 Dec 2015 18:12:16 -0700
parents c6bcb8859b93
children
line wrap: on
line source

package luan;


public interface DeepCloneable {
	public DeepCloneable shallowClone();
	public void deepenClone(DeepCloneable clone,DeepCloner cloner);
}