class JavaClass::ClassFile::Constants::ConstantInt
Public Class Methods
new(pool, data, start)
click to toggle source
Calls superclass method
JavaClass::ClassFile::Constants::Value::new
# File lib/javaclass/classfile/constants/value.rb, line 48 def initialize(pool, data, start) super() silence_unused_warning(pool) @value = get_value(data, start, 5).u4 end
Public Instance Methods
dump()
click to toggle source
Calls superclass method
JavaClass::ClassFile::Constants::Value#dump
# File lib/javaclass/classfile/constants/value.rb, line 54 def dump super + ';' end