Uses of Class
org.jruby.internal.runtime.methods.DynamicMethod

Packages that use DynamicMethod
org.jruby   
org.jruby.internal.runtime.methods   
org.jruby.runtime   
 

Uses of DynamicMethod in org.jruby
 

Fields in org.jruby declared as DynamicMethod
protected  DynamicMethod RubyMethod.method
           
 

Methods in org.jruby that return DynamicMethod
 DynamicMethod RubyModule.searchMethod(java.lang.String name)
          Search through this module and supermodules for method definitions.
 DynamicMethod RubyModule.retrieveMethod(java.lang.String name)
          Search through this module and supermodules for method definitions.
 

Methods in org.jruby with parameters of type DynamicMethod
static RubyMethod RubyMethod.newMethod(RubyModule implementationModule, java.lang.String methodName, RubyModule originModule, java.lang.String originName, DynamicMethod method, IRubyObject receiver)
           
 void RubyModule.putMethod(java.lang.Object name, DynamicMethod method)
           
 void RubyModule.addMethod(java.lang.String name, DynamicMethod method)
           
 void RubyModule.addModuleFunction(java.lang.String name, DynamicMethod method)
           
static IRubyObject RubyObject.callMethodMissingIfNecessary(ThreadContext context, IRubyObject receiver, DynamicMethod method, java.lang.String name, IRubyObject[] args, IRubyObject self, CallType callType, Block block)
           
static RubyUnboundMethod RubyUnboundMethod.newUnboundMethod(RubyModule implementationModule, java.lang.String methodName, RubyModule originModule, java.lang.String originName, DynamicMethod method)
           
 

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

Subclasses of DynamicMethod in org.jruby.internal.runtime.methods
 class AliasMethod
           
 class CompiledMethod
           
 class DefaultMethod
           
 class FullFunctionCallbackMethod
           
 class FullFunctionReflectedMethod
           
 class FullInvocationMethod
           
 class MethodMethod
           
 class ProcMethod
           
 class SimpleCallbackMethod
           
 class SimpleInvocationMethod
           
 class SimpleReflectedMethod
           
 class UndefinedMethod
           
 class WrapperMethod
           
 class YARVMethod
           
 

Methods in org.jruby.internal.runtime.methods that return DynamicMethod
 DynamicMethod AliasMethod.dup()
           
 DynamicMethod CompiledMethod.dup()
           
 DynamicMethod DefaultMethod.dup()
           
 DynamicMethod DumpingInvocationMethodFactory.getFullMethod(RubyModule implementationClass, java.lang.Class type, java.lang.String method, Arity arity, Visibility visibility)
           
 DynamicMethod DumpingInvocationMethodFactory.getSimpleMethod(RubyModule implementationClass, java.lang.Class type, java.lang.String method, Arity arity, Visibility visibility)
           
 DynamicMethod DumpingInvocationMethodFactory.getCompiledMethod(RubyModule implementationClass, java.lang.Class type, java.lang.String method, Arity arity, Visibility visibility, SinglyLinkedList cref, StaticScope scope)
           
abstract  DynamicMethod DynamicMethod.dup()
           
 DynamicMethod FullFunctionCallbackMethod.dup()
           
 DynamicMethod FullFunctionReflectedMethod.dup()
           
 DynamicMethod FullInvocationMethod.dup()
           
 DynamicMethod InvocationMethodFactory.getCompiledMethod(RubyModule implementationClass, java.lang.Class type, java.lang.String method, Arity arity, Visibility visibility, SinglyLinkedList cref, StaticScope scope)
           
 DynamicMethod MethodMethod.dup()
           
 DynamicMethod ProcMethod.dup()
           
 DynamicMethod ReflectionMethodFactory.getCompiledMethod(RubyModule implementationClass, java.lang.Class type, java.lang.String methodName, Arity arity, Visibility visibility, SinglyLinkedList cref, StaticScope scope)
           
 DynamicMethod SimpleCallbackMethod.dup()
           
 DynamicMethod SimpleInvocationMethod.dup()
           
 DynamicMethod SimpleReflectedMethod.dup()
           
 DynamicMethod UndefinedMethod.dup()
           
 DynamicMethod WrapperMethod.dup()
           
 DynamicMethod YARVMethod.dup()
           
 

Constructors in org.jruby.internal.runtime.methods with parameters of type DynamicMethod
AliasMethod(RubyModule implementationClass, DynamicMethod oldMethod, java.lang.String oldName)
           
WrapperMethod(RubyModule implementationClass, DynamicMethod method, Visibility visibility)
          Constructor for WrapperCallable.
 

Uses of DynamicMethod in org.jruby.runtime
 

Methods in org.jruby.runtime that return DynamicMethod
abstract  DynamicMethod MethodFactory.getCompiledMethod(RubyModule implementationClass, java.lang.Class type, java.lang.String method, Arity arity, Visibility visibility, SinglyLinkedList cref, StaticScope scope)
           
 

Methods in org.jruby.runtime with parameters of type DynamicMethod
 void CacheMap.add(DynamicMethod method, RubyModule module)
          Add another class to the list of classes which are caching the method.
 void CacheMap.remove(java.lang.String name, DynamicMethod method)
          Remove all method caches associated with the provided method.
 



Copyright © 2002-2007 JRuby Team. All Rights Reserved.