class Vizkit::OutputPortsItem

Public Class Methods

new(task,options = Hash.new) click to toggle source
Calls superclass method Vizkit::PortsItem.new
# File lib/vizkit/vizkit_items.rb, line 715
def initialize(task,options = Hash.new)
    super
    if @options[:item_type] == :label
        setText "OutputPorts"
    end
end

Public Instance Methods

append_port(port) click to toggle source
Calls superclass method Vizkit::PortsItem#append_port
# File lib/vizkit/vizkit_items.rb, line 722
def append_port(port)
    super if port.output?
end
expand(propagated = false) click to toggle source
# File lib/vizkit/vizkit_items.rb, line 725
def expand(propagated = false)
    @expanded = true
    each_child do |item|
        item.expand(propagated)
    end
end