Class: Mexico::FileSystem::IntervalLink

Inherits:
Object
  • Object
show all
Includes:
Poseidon, ROXML
Defined in:
lib/mexico/file_system/interval_link.rb

Overview

a link that targets an interval out of a scale object.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(args = {}) ⇒ IntervalLink

Returns a new instance of IntervalLink.



55
56
57
58
59
60
61
# File 'lib/mexico/file_system/interval_link.rb', line 55

def initialize(args={})
  args.each do |k,v|
    if self.respond_to?("#{k}=")
      send("#{k}=", v)
    end
  end
end

Instance Attribute Details

#documentObject

Returns the value of attribute document.



41
42
43
# File 'lib/mexico/file_system/interval_link.rb', line 41

def document
  @document
end

#itemObject

Returns the value of attribute item.



40
41
42
# File 'lib/mexico/file_system/interval_link.rb', line 40

def item
  @item
end

Instance Method Details

#after_parseObject

This method attempts to link objects from other locations of the XML/object tree into position inside this object, by following the xml ids given in the appropriate fields of this class.



80
81
82
# File 'lib/mexico/file_system/interval_link.rb', line 80

def after_parse

end

#target_objectMexico::FileSystem::Scale

returns the target object, in this case, a Scale.

Returns:



65
66
67
# File 'lib/mexico/file_system/interval_link.rb', line 65

def target_object
  @target_object
end

#target_object=(new_target) ⇒ void

This method returns an undefined value.

Sets a new target object (and updates the corresponding identifier)

Parameters:



72
73
74
75
# File 'lib/mexico/file_system/interval_link.rb', line 72

def target_object=(new_target)
  @target_object=new_target
  @target=target_object.identifier
end