Class: WirisPlugin::SerializableImpl
- Inherits:
-
Object
- Object
- WirisPlugin::SerializableImpl
- Includes:
- Wiris
- Defined in:
- lib/com/wiris/util/xml/SerializableImpl.rb
Instance Method Summary collapse
-
#initialize ⇒ SerializableImpl
constructor
A new instance of SerializableImpl.
- #newInstance ⇒ Object
- #onSerialize(s) ⇒ Object
- #serialize ⇒ Object
Constructor Details
#initialize ⇒ SerializableImpl
Returns a new instance of SerializableImpl.
7 8 9 |
# File 'lib/com/wiris/util/xml/SerializableImpl.rb', line 7 def initialize() super() end |
Instance Method Details
#newInstance ⇒ Object
12 13 14 |
# File 'lib/com/wiris/util/xml/SerializableImpl.rb', line 12 def newInstance() return SerializableImpl.new() end |
#onSerialize(s) ⇒ Object
10 11 |
# File 'lib/com/wiris/util/xml/SerializableImpl.rb', line 10 def onSerialize(s) end |
#serialize ⇒ Object
15 16 17 18 |
# File 'lib/com/wiris/util/xml/SerializableImpl.rb', line 15 def serialize() s = XmlSerializer.new() return s::write(self) end |