view core/src/luan/DeepCloneable.java @ 433:c6bcb8859b93

make LuanState.registry a Map; remove generics from DeepCloneable; add Map support to DeepCloner;
author Franklin Schmidt <fschmidt@gmail.com>
date Sun, 03 May 2015 15:45:39 -0600
parents 3dcb0f9bee82
children
line wrap: on
line source

package luan;


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