comparison core/src/luan/Luan.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 ec016471c6eb
children e5ad26746c94
comparison
equal deleted inserted replaced
225:7c768f63bbb3 226:392105b660d7
147 147
148 public static LuanTable newTable() { 148 public static LuanTable newTable() {
149 return new LuanTableImpl(); 149 return new LuanTableImpl();
150 } 150 }
151 151
152 public static LuanTable newPropertyTable() {
153 return new LuanPropertyTable();
154 }
155
152 private Luan() {} // never 156 private Luan() {} // never
153 } 157 }