Sha256: 4a482a11a3d7a811c296c1f778e3e67f6c44d6c36ec64e4a5943b5af769a5e99

Contents?: true

Size: 449 Bytes

Versions: 7

Compression:

Stored size: 449 Bytes

Contents

class STdummy1 < StorageType
  attr_accessor :conf, :fields
  
  def load
    {}
  end
  
  def save( data, notmp: false )
    
  end

end

class STdummy2 < STdummy1
  
  def configure( config )
    dputs( 3 ){ "Configuration of STdummy2 is: #{config.inspect}" }
    @conf = config[:conf] + '_'
  end
end

class STdummy3 < STdummy2
  def configure( config )
    @data_cache = false
  end

  def get_entry( id, field )
    return field.to_s
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
qooxview-1.9.1312 test/st_dummy.rb
qooxview-1.9.13.pre.12 test/st_dummy.rb
qooxview-1.9.13.pre.11 test/st_dummy.rb
qooxview-1.9.13.pre.10 test/st_dummy.rb
qooxview-1.9.11 test/st_dummy.rb
qooxview-1.9.10 test/st_dummy.rb
qooxview-1.9.9 test/st_dummy.rb