Module Core::Providers::Multiverse::Node::Extensions
In: core/serviceproviders/multiverse/extended_node.rb

This module extends the standard node to the extra layer of information that the node has because of its belonging to a universe (i.e. universe uid, node type, etc.).

Methods

Attributes

node_type  [RW] 
properties_id  [RW] 
universe_uid  [RW] 

Public Instance methods

[Source]

# File core/serviceproviders/multiverse/extended_node.rb, line 108
          def node_type
            find_info if @node_type.nil?
            @node_type
          end
=============================================== public methods

[Source]

# File core/serviceproviders/multiverse/extended_node.rb, line 95
          def notes
            find_info if @properties.nil?
            @attributes['notes']
          end

[Source]

# File core/serviceproviders/multiverse/extended_node.rb, line 99
          def properties
            find_info if @properties.nil?
            @properties
          end

[Source]

# File core/serviceproviders/multiverse/extended_node.rb, line 104
          def universe_uid
            find_info if @universe_uid.nil?
            @universe_uid
          end

[Validate]