view core/src/luan/LuanProperty.java @ 335:b4aed759cc83

README.md edited online with Bitbucket
author Hugo Teixeira <hugo.tech@gmail.com>
date Wed, 25 Mar 2015 04:28:39 +0000
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;
	}

}