view core/src/luan/LuanProperty.java @ 379:e9e445e28f0b

add error checking to Hosting
author Franklin Schmidt <fschmidt@gmail.com>
date Mon, 20 Apr 2015 12:24:54 -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;
	}

}