class Trailblazer::Diagram::BPMN::Representer::Task

Public Instance Methods

incoming() click to toggle source
# File lib/trailblazer/diagram/bpmn.rb, line 171
def incoming
  represented.incoming.collect { |edge| edge[:id] }
end
outgoing() click to toggle source
# File lib/trailblazer/diagram/bpmn.rb, line 167
def outgoing
  represented.outgoing.collect { |edge| edge[:id] }
end