diff core/src/luan/LuanProperty.java @ 226:392105b660d7

add LuanProperty git-svn-id: https://luan-java.googlecode.com/svn/trunk@227 21e917c8-12df-6dd8-5cb6-c86387c605b9
author fschmidt@gmail.com <fschmidt@gmail.com@21e917c8-12df-6dd8-5cb6-c86387c605b9>
date Tue, 22 Jul 2014 06:23:13 +0000
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/core/src/luan/LuanProperty.java	Tue Jul 22 06:23:13 2014 +0000
@@ -0,0 +1,13 @@
+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;
+	}
+
+}