view src/luan/LuanCloneable.java @ 1568:adba594db0b4

add rel scheme
author Franklin Schmidt <fschmidt@gmail.com>
date Wed, 18 Nov 2020 17:46:16 -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;
}