Uses of Class
org.jruby.RubyModule

Packages that use RubyModule
org.jruby   
org.jruby.internal.runtime.methods   
org.jruby.javasupport   
org.jruby.runtime   
org.jruby.runtime.builtin   
 

Uses of RubyModule in org.jruby
 

Subclasses of RubyModule in org.jruby
 class IncludedModuleWrapper
          This class represents an included module.
 class MetaClass
           
 class RubyClass
           
 

Fields in org.jruby declared as RubyModule
protected  RubyModule Method.implementationModule
           
protected  RubyModule Method.originModule
           
 RubyModule RubyModule.parentModule
           
 

Methods in org.jruby that return RubyModule
 RubyModule IncludedModuleWrapper.getDelegate()
           
static RubyModule KernelModule.createKernelModule(Ruby ruby)
           
 RubyModule Ruby.getModule(java.lang.String name)
           
 RubyModule Ruby.getRubyModule(java.lang.String name)
          Deprecated. use getModule(String) instead
 RubyModule Ruby.defineModule(java.lang.String name)
          rb_define_module / rb_define_module_id
 RubyModule Ruby.defineModuleUnder(java.lang.String name, RubyModule parentModule)
           
 RubyModule Ruby.getOrCreateModule(java.lang.String name)
          In the current context, get the named module.
 RubyModule Ruby.getRubyClass()
           
 RubyModule Ruby.getWrapper()
          Getter for property wrapper.
static RubyModule RubyClass.unmarshalFrom(UnmarshalStream output)
           
 RubyModule RubyClasses.getComparableModule()
          Returns the reference to the Comparable module.
 RubyModule RubyClasses.getMathModule()
          Returns the reference to the Math module.
 RubyModule RubyClasses.getGcModule()
          Returns the reference to the GC module.
 RubyModule RubyClasses.getMarshalModule()
          Returns the reference to the Marshal module.
 RubyModule RubyClasses.getObjectSpaceModule()
          Returns the reference to the ObjectSpace module.
 RubyModule RubyClasses.getKernelModule()
          Returns the reference to the Kernel module.
 RubyModule RubyClasses.getEnumerableModule()
          Returns the reference to the Enumerable module.
 RubyModule RubyClasses.getFileTestModule()
          Returns the reference to the Enumerable module.
 RubyModule RubyClasses.getPrecisionModule()
          Gets the precisionModule attribute of the RubyClasses object
 RubyModule RubyClasses.getProcessModule()
          Gets the processModule attribute of the RubyClasses object
 RubyModule RubyClasses.getJavaModule()
          Returns the reference to the Java module.
 RubyModule RubyClasses.getClass(java.lang.String name)
          Gets the class attribute of the RubyClasses object
 RubyModule RubyClasses.getClassFromPath(java.lang.String path)
           
static RubyModule RubyComparable.createComparable(Ruby ruby)
           
static RubyModule RubyEnumerable.createEnumerableModule(Ruby ruby)
           
static RubyModule RubyFileTest.createFileTestModule(Ruby ruby)
           
static RubyModule RubyGC.createGCModule(Ruby ruby)
           
static RubyModule RubyMarshal.createMarshalModule(Ruby runtime)
           
static RubyModule RubyMath.createMathModule(Ruby runtime)
          Create the Math module and add it to the Ruby runtime.
 RubyModule RubyModule.defineModuleUnder(java.lang.String name)
           
static RubyModule RubyModule.newModule(Ruby ruby, java.lang.String name)
           
static RubyModule RubyModule.newModule(Ruby ruby, java.lang.String name, RubyModule parentModule)
           
static RubyModule RubyModule.newModule(IRubyObject recv)
           
 RubyModule RubyModule.append_features(RubyModule module)
          rb_mod_append_features
 RubyModule RubyModule.include(IRubyObject[] modules)
          rb_mod_include
 RubyModule RubyModule.rbPublic(IRubyObject[] args)
          rb_mod_public
 RubyModule RubyModule.rbProtected(IRubyObject[] args)
          rb_mod_protected
 RubyModule RubyModule.rbPrivate(IRubyObject[] args)
          rb_mod_private
 RubyModule RubyModule.module_function(IRubyObject[] args)
          rb_mod_modfunc
 RubyModule RubyModule.public_class_method(IRubyObject[] args)
           
 RubyModule RubyModule.private_class_method(IRubyObject[] args)
           
 RubyModule RubyModule.alias_method(IRubyObject newId, IRubyObject oldId)
           
 RubyModule RubyModule.undef_method(IRubyObject name)
           
 RubyModule RubyModule.remove_method(IRubyObject name)
           
static RubyModule RubyModule.unmarshalFrom(UnmarshalStream input)
           
static RubyModule RubyObjectSpace.createObjectSpaceModule(Ruby ruby)
          Create the ObjectSpace module and add it to the Ruby runtime.
static RubyModule RubyPrecision.createPrecisionModule(Ruby ruby)
           
 RubyModule RubyProc.getWrapper()
           
static RubyModule RubyProcess.createProcessModule(Ruby ruby)
           
 

Methods in org.jruby with parameters of type RubyModule
static Method Method.newMethod(RubyModule implementationModule, java.lang.String methodName, RubyModule originModule, java.lang.String originName, ICallable method, IRubyObject receiver)
           
 RubyClass Ruby.defineClassUnder(java.lang.String name, RubyClass superClass, RubyModule parentClass)
           
 RubyModule Ruby.defineModuleUnder(java.lang.String name, RubyModule parentModule)
           
 IRubyObject Ruby.yield(IRubyObject value, IRubyObject self, RubyModule klass, boolean checkArguments)
           
static RubyClass RubyClass.newClass(Ruby ruby, RubyClass superClass, RubyModule parentClass, java.lang.String name)
           
 void RubyClasses.putClass(java.lang.String name, RubyModule rbClass)
          Description of the Method
static RubyModule RubyModule.newModule(Ruby ruby, java.lang.String name, RubyModule parentModule)
           
 RubyModule RubyModule.append_features(RubyModule module)
          rb_mod_append_features
 boolean RubyObject.isKindOf(RubyModule type)
           
 void RubyObject.extendObject(RubyModule module)
           
 IRubyObject RubyObject.specificEval(RubyModule mod, IRubyObject[] args)
          specific_eval
 IRubyObject RubyObject.evalUnder(RubyModule under, IRubyObject src, IRubyObject file, IRubyObject line)
           
static UnboundMethod UnboundMethod.newUnboundMethod(RubyModule implementationModule, java.lang.String methodName, RubyModule originModule, java.lang.String originName, ICallable method)
           
 

Constructors in org.jruby with parameters of type RubyModule
IncludedModuleWrapper(Ruby ruby, RubyClass superClass, RubyModule delegate)
           
RubyClass(Ruby ruby, RubyClass rubyClass, RubyClass superClass, RubyModule parentClass, java.lang.String name)
           
RubyModule(Ruby ruby, RubyClass rubyClass, RubyClass superClass, RubyModule parentModule, java.lang.String name)
           
 

Uses of RubyModule in org.jruby.internal.runtime.methods
 

Methods in org.jruby.internal.runtime.methods that return RubyModule
 RubyModule AbstractMethod.getImplementationClass()
           
 RubyModule AliasMethod.getOrigin()
           
 RubyModule CacheEntry.getRecvClass()
          Getter for property recvClass.
 RubyModule CacheEntry.getOrigin()
          Getter for property origin.
 

Methods in org.jruby.internal.runtime.methods with parameters of type RubyModule
 void AbstractMethod.setImplementationClass(RubyModule implClass)
           
static CacheEntry CacheEntry.createUndefined(java.lang.String name, RubyModule recvClass)
           
 void CacheEntry.setRecvClass(RubyModule recvClass)
          Setter for property recvClass.
 void CacheEntry.setOrigin(RubyModule origin)
          Setter for property origin.
 

Constructors in org.jruby.internal.runtime.methods with parameters of type RubyModule
CacheEntry(java.lang.String name, RubyModule recvClass)
           
DefaultMethod(ScopeNode body, ArgsNode argsNode, Visibility visibility, RubyModule module)
           
 

Uses of RubyModule in org.jruby.javasupport
 

Methods in org.jruby.javasupport that return RubyModule
static RubyModule Java.createJavaModule(Ruby runtime)
           
 

Methods in org.jruby.javasupport with parameters of type RubyModule
static RubyClass JavaClass.createJavaClassClass(Ruby ruby, RubyModule javaModule)
           
static RubyClass JavaConstructor.createJavaConstructorClass(Ruby ruby, RubyModule javaModule)
           
static RubyClass JavaField.createJavaFieldClass(Ruby ruby, RubyModule javaModule)
           
static RubyClass JavaMethod.createJavaMethodClass(Ruby ruby, RubyModule javaModule)
           
 

Uses of RubyModule in org.jruby.runtime
 

Methods in org.jruby.runtime that return RubyModule
 RubyModule Block.getKlass()
          Gets the klass.
 RubyModule Frame.getLastClass()
          Getter for property lastClass.
 RubyModule ICallable.getImplementationClass()
           
 RubyModule RubyExceptions.getErrnoModule()
          Returns the reference to the Errno module.
 RubyModule ThreadContext.getRubyClass()
           
 RubyModule ThreadContext.getWrapper()
           
 

Methods in org.jruby.runtime with parameters of type RubyModule
 void Frame.setLastClass(RubyModule lastClass)
          Setter for property lastClass.
 void ICallable.setImplementationClass(RubyModule implClass)
           
 java.util.Iterator ObjectSpace.iterator(RubyModule rubyClass)
           
 IRubyObject ThreadContext.yield(IRubyObject value, IRubyObject self, RubyModule klass, boolean checkArguments)
           
 void ThreadContext.pushClass(RubyModule newClass)
           
 void ThreadContext.setWrapper(RubyModule wrapper)
           
 

Constructors in org.jruby.runtime with parameters of type RubyModule
Frame(IRubyObject self, IRubyObject[] args, java.lang.String lastFunc, RubyModule lastClass, ISourcePosition position, Iter iter)
           
 

Uses of RubyModule in org.jruby.runtime.builtin
 

Methods in org.jruby.runtime.builtin with parameters of type RubyModule
 boolean IRubyObject.isKindOf(RubyModule rubyClass)
          Method isKindOf.
 void IRubyObject.extendObject(RubyModule rubyModule)
          Method extendObject.
 



Copyright © 2002 Jan Arne Petersen. All Rights Reserved.