Пример #1
0
 public int luaCB_set_length(Lua l, LuaPlugin plugin) {
   l.pushNil();
   try {
     object.setLength((long) l.checkNumber(2));
   } catch (IOException e) {
     l.pushNil();
     l.pushString("IOException: " + e.getMessage());
     return 2;
   }
   return 1;
 }