Sha256: 50a08b1ec0955c9f06fdb7f616f5811ec18ae20173dd75efacac79fbf1135f61

Contents?: true

Size: 657 Bytes

Versions: 7

Compression:

Stored size: 657 Bytes

Contents

module Vedeu

  module Null

    # Provides a non-existent model to swallow messages.
    #
    class Interface < Vedeu::Null::Generic

      include Vedeu::Presentation

      # @!attribute [r] attributes
      # @return [String]
      attr_reader :attributes

      # Returns a new instance of Vedeu::Null::Interface.
      #
      # @param attributes [Hash<Symbol => void>]
      # @option attributes name [String]
      # @return [Vedeu::Null::Interface]
      def initialize(attributes = {})
        @attributes = attributes
        @name       = @attributes[:name]
        @visible    = false
      end

    end # Interface

  end # Null

end # Vedeu

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
vedeu-0.6.20 lib/vedeu/null/interface.rb
vedeu-0.6.19 lib/vedeu/null/interface.rb
vedeu-0.6.18 lib/vedeu/null/interface.rb
vedeu-0.6.17 lib/vedeu/null/interface.rb
vedeu-0.6.16 lib/vedeu/null/interface.rb
vedeu-0.6.15 lib/vedeu/null/interface.rb
vedeu-0.6.14 lib/vedeu/null/interface.rb