view core/src/luan/LuanProperty.java @ 358:6fc33c20441b

minor
author Franklin Schmidt <fschmidt@gmail.com>
date Tue, 14 Apr 2015 12:07:49 -0600
parents 392105b660d7
children
line wrap: on
line source

package luan;


public abstract class LuanProperty {

	public abstract Object get();

	// return whether handled.  if not handled, then this object will be replaced
	public boolean set(Object value) {
		return false;
	}

}