In Files

Parent

Included Modules

Class/Module Index [+]

Quicksearch

Rjb::Rjb_JavaProxy

Public Instance Methods

initialize_proxy() click to toggle source
# File lib/rjb.rb, line 93
def initialize_proxy
end
java_methods() click to toggle source
# File lib/rjb.rb, line 105
def java_methods
  jmethods([], getClass) do |m|
    instance_method?(m) && public_method?(m)
  end.map do |m|
    "#{m}(#{format_sigs(getClass.sigs(m))})"
  end
end
methods(inh = true) click to toggle source
# File lib/rjb.rb, line 100
def methods(inh = true)
  jmethods(super(inh), getClass) do |m|
    instance_method?(m) && public_method?(m)
  end
end
public_methods(inh = true) click to toggle source
# File lib/rjb.rb, line 95
def public_methods(inh = true)
  jmethods(super(inh), getClass) do |m|
    instance_method?(m) && public_method?(m)
  end
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.