view src/luan/LuanCloneable.java @ 1576:13135e289b50

domain change
author Franklin Schmidt <fschmidt@gmail.com>
date Thu, 28 Jan 2021 20:47:39 -0700
parents e1a13e707bf3
children
line wrap: on
line source

package luan;


public interface LuanCloneable {
	public LuanCloneable shallowClone();
	public void deepenClone(LuanCloneable clone,LuanCloner cloner);
	public void makeImmutable(LuanImmutabler immutabler) throws LuanException;
}