Class: WWMD::VSStubs::VSIndexedStringRef

Inherits:
Object
  • Object
show all
Includes:
WWMD::VSStubHelpers
Defined in:
lib/wwmd/viewstate/vs_stubs/vs_indexed_string_ref.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from WWMD::VSStubHelpers

#opcode, #size, #to_sym

Methods included from WWMD::ViewStateUtils

#deserialize_type, #dlog, #magic?, #next_type, #offset, #putd, #read, #read_7bit_encoded_int, #read_double, #read_int, #read_int32, #read_raw_byte, #read_short, #read_string, #serialize_type, #slog, #throw, #write_7bit_encoded_int, #write_double, #write_int, #write_int32, #write_short

Constructor Details

#initialize(ref) ⇒ VSIndexedStringRef

Returns a new instance of VSIndexedStringRef.



7
8
9
# File 'lib/wwmd/viewstate/vs_stubs/vs_indexed_string_ref.rb', line 7

def initialize(ref)
  @value = ref
end

Instance Attribute Details

#valueObject (readonly)

Returns the value of attribute value.



5
6
7
# File 'lib/wwmd/viewstate/vs_stubs/vs_indexed_string_ref.rb', line 5

def value
  @value
end

Instance Method Details

#serializeObject



11
12
13
14
15
# File 'lib/wwmd/viewstate/vs_stubs/vs_indexed_string_ref.rb', line 11

def serialize
  stack = super
  stack << self.write_int(@value)
  return stack
end

#to_xmlObject



17
18
19
20
21
# File 'lib/wwmd/viewstate/vs_stubs/vs_indexed_string_ref.rb', line 17

def to_xml
  xml = super
  xml.add_text(self.value.to_s)
  xml
end