Class: WWMD::VSStubs::VSStringFormatted

Inherits:
Object
  • Object
show all
Includes:
WWMD::VSStubHelpers
Defined in:
lib/wwmd/viewstate/vs_stubs/vs_string_formatted.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(typeref, typeval, str) ⇒ VSStringFormatted

Returns a new instance of VSStringFormatted.



9
10
11
12
13
# File 'lib/wwmd/viewstate/vs_stubs/vs_string_formatted.rb', line 9

def initialize(typeref,typeval,str)
  @typeref = typeref
  @typeval = typeval
  @value = str
end

Instance Attribute Details

#typerefObject (readonly)

Returns the value of attribute typeref.



6
7
8
# File 'lib/wwmd/viewstate/vs_stubs/vs_string_formatted.rb', line 6

def typeref
  @typeref
end

#typevalObject (readonly)

Returns the value of attribute typeval.



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

def typeval
  @typeval
end

#valueObject

Returns the value of attribute value.



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

def value
  @value
end

Instance Method Details

#from_xmlObject



27
28
29
# File 'lib/wwmd/viewstate/vs_stubs/vs_string_formatted.rb', line 27

def from_xml
# deserialize convenience VSString properly
end

#serializeObject



15
16
17
18
19
# File 'lib/wwmd/viewstate/vs_stubs/vs_string_formatted.rb', line 15

def serialize
  stack = super
  stack << self.write_7bit_encoded_int(self.size)
  stack << self.value
end

#to_xmlObject



21
22
23
24
25
# File 'lib/wwmd/viewstate/vs_stubs/vs_string_formatted.rb', line 21

def to_xml
  xml = super
  xml.add_element(VSStubs::VSString.new(self.value).to_xml)
  xml
end