Class: WWMD::VSStubs::VSPair
- Inherits:
-
Object
- Object
- WWMD::VSStubs::VSPair
- Includes:
- WWMD::VSStubHelpers
- Defined in:
- lib/wwmd/viewstate/vs_stubs/vs_pair.rb
Instance Attribute Summary collapse
-
#value ⇒ Object
Returns the value of attribute value.
Instance Method Summary collapse
-
#initialize(obj1, obj2) ⇒ VSPair
constructor
A new instance of VSPair.
- #serialize ⇒ Object
- #to_xml ⇒ Object
Methods included from WWMD::VSStubHelpers
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(obj1, obj2) ⇒ VSPair
Returns a new instance of VSPair.
7 8 9 10 11 |
# File 'lib/wwmd/viewstate/vs_stubs/vs_pair.rb', line 7 def initialize(obj1,obj2) @value = [] @value << obj1 @value << obj2 end |
Instance Attribute Details
#value ⇒ Object
Returns the value of attribute value.
5 6 7 |
# File 'lib/wwmd/viewstate/vs_stubs/vs_pair.rb', line 5 def value @value end |
Instance Method Details
#serialize ⇒ Object
13 14 15 16 17 18 19 |
# File 'lib/wwmd/viewstate/vs_stubs/vs_pair.rb', line 13 def serialize stack = super self.value.each do |v| stack << v.serialize end return stack end |
#to_xml ⇒ Object
21 22 23 24 25 26 27 |
# File 'lib/wwmd/viewstate/vs_stubs/vs_pair.rb', line 21 def to_xml xml = super self.value.each do |v| xml.add_element(v.to_xml) end xml end |