Sha256: 556045cb3d9340a805dff53e842c24984ec1451c450e2f798b91e469e373cb05

Contents?: true

Size: 482 Bytes

Versions: 8

Compression:

Stored size: 482 Bytes

Contents

module Quarry
  module DataSet
    class Feature
      attr_reader :feature
      
      def initialize(feature, data_set)
        @data_set = data_set
        @feature  = feature
      end
      
      def name
        @feature.get_name
      end
      
      def name=(new_name)
        @feature.set_name(new_name)
      end
      
      def type
        @feature.get_type
      end
      
      def type=(new_type)
        @feature.set_type(new_type)
      end
    end
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
thera-0.0.8 lib/quarry_rb/data_set/feature.rb
thera-0.0.7 lib/quarry_rb/data_set/feature.rb
thera-0.0.6 lib/quarry_rb/data_set/feature.rb
thera-0.0.5 lib/quarry_rb/data_set/feature.rb
thera-0.0.4 lib/quarry_rb/data_set/feature.rb
thera-0.0.3 lib/quarry_rb/data_set/feature.rb
thera-0.0.2 lib/quarry_rb/data_set/feature.rb
thera-0.0.1 lib/quarry_rb/data_set/feature.rb