Sha256: 1f209cdba75ea7ab42426043104c37febbba44ba788c5a3fcc493db59986b913
Contents?: true
Size: 707 Bytes
Versions: 5
Compression:
Stored size: 707 Bytes
Contents
require 'vedeu/output/presentation/presentation' 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
5 entries across 5 versions & 1 rubygems