# File metasm/exe_format/javaclass.rb, line 269 def [](idx) @attributes[idx] end
# File metasm/exe_format/javaclass.rb, line 251 def decode(c) super(c) @attributes = [] @attributes_count.times { |i| @attributes << AttributeInfo.decode(c) } end
# File metasm/exe_format/javaclass.rb, line 260 def encode(c) ret = super(c) @attributes.each { |e| ret << e.encode(c) } ret end