Mercurial Hosting > luan
view core/src/luan/LuanProperty.java @ 354:705e4d6c3dbb
improve formatting of diff.html
| author | Franklin Schmidt <fschmidt@gmail.com> |
|---|---|
| date | Tue, 14 Apr 2015 05:44:06 -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; } }
