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

(abstract) covnert presentation data into list of Statement.

Methods

Included Modules

ConvertErrorHelper

Attributes

handler  [R] 

Public Class methods

[Source]

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

[Source]

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

[Source]

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

[Validate]