Class Kwartz::Converter
In: kwartz/converter.rb
Parent: Object

.[abstract] covnert presentation data into list of Statement.

Methods

Included Modules

ConverterHelper

Attributes

handler  [R] 

Public Class methods

[Source]

# File kwartz/converter.rb, line 679
    def self.get_class(style)
      return @@class_table[style]
    end

[Source]

# File kwartz/converter.rb, line 657
    def initialize(handler, properties={})
      @handler = handler
      @handler.converter = self
    end

[Source]

# File kwartz/converter.rb, line 674
    def self.register_class(style, klass)
      @@class_table[style] = klass
    end

Public Instance methods

.[abstract] convert string into list of Statement.

[Source]

# File kwartz/converter.rb, line 666
    def convert(input, filename='')
      not_implemented
    end

[Validate]