Module: ActiveGraph::Node::IdProperty::Accessor

Extended by:
ActiveSupport::Concern
Included in:
ActiveGraph::Node::IdProperty
Defined in:
lib/active_graph/node/id_property/accessor.rb

Overview

Provides get/set of the Id Property values. Some methods

Defined Under Namespace

Modules: ClassMethods

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#default_property_valueObject (readonly)

Returns the value of attribute default_property_value.



7
8
9
# File 'lib/active_graph/node/id_property/accessor.rb', line 7

def default_property_value
  @default_property_value
end

Instance Method Details

#default_propertiesObject



22
23
24
# File 'lib/active_graph/node/id_property/accessor.rb', line 22

def default_properties
  @default_properties ||= Hash.new(nil)
end

#default_properties=(properties) ⇒ Object



9
10
11
# File 'lib/active_graph/node/id_property/accessor.rb', line 9

def default_properties=(properties)
  @default_property_value = properties[default_property_key]
end

#default_property(key) ⇒ Object



13
14
15
16
# File 'lib/active_graph/node/id_property/accessor.rb', line 13

def default_property(key)
  return nil unless key == default_property_key
  default_property_value
end

#default_property_keyObject



18
19
20
# File 'lib/active_graph/node/id_property/accessor.rb', line 18

def default_property_key
  self.class.default_property_key
end