class WirisPlugin::SerializableImpl
Public Class Methods
new()
click to toggle source
Calls superclass method
# File lib/com/wiris/util/xml/SerializableImpl.rb, line 7 def initialize() super() end
Public Instance Methods
newInstance()
click to toggle source
# File lib/com/wiris/util/xml/SerializableImpl.rb, line 12 def newInstance() return SerializableImpl.new() end
onSerialize(s)
click to toggle source
# File lib/com/wiris/util/xml/SerializableImpl.rb, line 10 def onSerialize(s) end
serialize()
click to toggle source
# File lib/com/wiris/util/xml/SerializableImpl.rb, line 15 def serialize() s = XmlSerializer.new() return s::write(self) end