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