Mercurial Hosting > luan
view core/src/luan/LuanProperty.java @ 244:0a8e6fdb62f0
fix Math.random()
git-svn-id: https://luan-java.googlecode.com/svn/trunk@245 21e917c8-12df-6dd8-5cb6-c86387c605b9
author | fschmidt@gmail.com <fschmidt@gmail.com@21e917c8-12df-6dd8-5cb6-c86387c605b9> |
---|---|
date | Thu, 09 Oct 2014 22:44:07 +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; } }