view src/luan/LuanCloneable.java @ 1176:79b1e9ffd0c0

minor
author Franklin Schmidt <fschmidt@gmail.com>
date Mon, 12 Feb 2018 15:19:00 -0700
parents 6a7c6879158d
children e1a13e707bf3
line wrap: on
line source

package luan;


public interface LuanCloneable {
	public LuanCloneable shallowClone();
	public void deepenClone(LuanCloneable clone,LuanCloner cloner);
}