Class: Vedeu::Null::Generic Private

Inherits:
Object
  • Object
show all
Defined in:
lib/vedeu/null/generic.rb

Overview

This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.

Provides a non-existent model to swallow messages.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(attributes = {}) ⇒ Vedeu::Null::Generic

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Returns an instance of the Vedeu::Null::Generic class.

Parameters:

  • attributes (Hash<Symbol => void>) (defaults to: {})

Options Hash (attributes):

  • name (String|Symbol|NilClass)


22
23
24
25
# File 'lib/vedeu/null/generic.rb', line 22

def initialize(attributes = {})
  @attributes = attributes
  @name       = @attributes.fetch(:name, '')
end

Instance Attribute Details

#attributesString (readonly)

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Returns:

  • (String)


11
12
13
# File 'lib/vedeu/null/generic.rb', line 11

def attributes
  @attributes
end

#nameString|Symbol (readonly)

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Returns:

  • (String|Symbol)


15
16
17
# File 'lib/vedeu/null/generic.rb', line 15

def name
  @name
end

Instance Method Details

#falsyFalseClass Also known as: cursor_visible?, enabled?, maximise, maximised?, unmaximise, visible, visible?, editable?

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Returns:

  • (FalseClass)


28
29
30
# File 'lib/vedeu/null/generic.rb', line 28

def falsy
  false
end

#nullNilClass Also known as: add, bottom_item, clear, colour, current_item, deselect_item, hide, item, items, next_item, parent, prev_item, render, select_item, selected_item, show, style, toggle, top_item, view, zindex

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Returns:

  • (NilClass)


41
42
43
# File 'lib/vedeu/null/generic.rb', line 41

def null(*)
  nil
end

#null?Boolean

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Returns:

  • (Boolean)


67
68
69
# File 'lib/vedeu/null/generic.rb', line 67

def null?
  true
end

#storeVedeu::Null::Generic

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



72
73
74
# File 'lib/vedeu/null/generic.rb', line 72

def store
  self
end

#visible=FalseClass

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Returns:

  • (FalseClass)


77
78
79
# File 'lib/vedeu/null/generic.rb', line 77

def visible=(*)
  false
end