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

(abstract) covnert presentation data into list of Statement.

Methods

Included Modules

ConverterHelper StatementHelper

Attributes

handler  [R] 

Public Class methods

[Source]

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

[Source]

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

[Source]

# File kwartz/converter.rb, line 833
    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 825
    def convert(input, filename='')
      not_implemented
    end

[Validate]