Uses of Class
org.luaj.vm.LTable

Packages that use LTable
org.luaj.lib.j2se   
org.luaj.vm   
 

Uses of LTable in org.luaj.lib.j2se
 

Methods in org.luaj.lib.j2se with parameters of type LTable
static void J2seIoLib.install(LTable globals)
           
static void J2seOsLib.install(LTable globals)
          Install the os library using the J2seOsLib class as a factory
static void LuajavaLib.install(LTable globals)
           
 

Uses of LTable in org.luaj.vm
 

Subclasses of LTable in org.luaj.vm
 class LWeakTable
           
 

Fields in org.luaj.vm declared as LTable
 LTable LuaState._G
           
 LTable LClosure.env
           
 LTable LUserData.m_metatable
           
 

Methods in org.luaj.vm that return LTable
 LTable LuaState.checktable(int narg)
          Checks whether the function argument narg is a table and returns this table.
static LTable LString.getMetatable()
          Get the metatable for all string values.
 LTable LClosure.luaGetEnv(LTable d)
          Get the enviroment for this closure
 LTable LValue.luaGetEnv(LTable d)
          Get the environment of the object if it is a closure, or d if not a closure.
 LTable LString.luaGetMetatable()
           
 LTable LTable.luaGetMetatable()
          Valid for tables
 LTable LUserData.luaGetMetatable()
           
 LTable LValue.luaGetMetatable()
          Valid for all types: get a metatable.
 LTable LTable.luaSetMetatable(LValue metatable)
          Valid for tables
 LTable LValue.luaSetMetatable(LValue metatable)
          Valid for tables
 LTable LuaState.totable(int index)
          Get a value from the stack as a lua table.
 

Methods in org.luaj.vm with parameters of type LTable
 LTable LClosure.luaGetEnv(LTable d)
          Get the enviroment for this closure
 LTable LValue.luaGetEnv(LTable d)
          Get the environment of the object if it is a closure, or d if not a closure.
 boolean LClosure.luaSetEnv(LTable t)
          Set the environment if a thread, or closure, and return 1, otherwise return 0
 boolean LThread.luaSetEnv(LTable t)
           
 boolean LValue.luaSetEnv(LTable t)
          Set the environment if a thread, or closure, and return true, otherwise return false
 LClosure LPrototype.newClosure(LTable env)
           
 

Constructors in org.luaj.vm with parameters of type LTable
LClosure(LPrototype p, LTable env)
          Construct using a prototype and initial environment.
LThread(LFunction c, LTable env)
           
LUserData(java.lang.Object obj, LTable metatable)
           
LWeakTable(LTable copy)
           
 



Copyright © 2007-2013 Luaj.org. All Rights Reserved.