comparison 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
comparison
equal deleted inserted replaced
225:7c768f63bbb3 226:392105b660d7
1 package luan;
2
3
4 public abstract class LuanProperty {
5
6 public abstract Object get();
7
8 // return whether handled. if not handled, then this object will be replaced
9 public boolean set(Object value) {
10 return false;
11 }
12
13 }