# File ruby/jbridge.rb, line 988
        def dump
          puts "========: #{@jclassname}"
          puts "  == Superclass: #{@jsuperclass.jclassname}" if @jsuperclass
          putter = lambda {|i| puts "   #{i}" }
          puts "  == Interface"
          @jinterfaces.each {|i| puts "   #{i.jclassname}"}
          puts "  == Field"
          @jfields.each_key(putter)
          puts "  == Public Method"
          @jmethods.each_key(putter)
          puts "  == ProtectedMethod Method"
          @protected_jmethods.each_key(putter)
        end