class Vizkit::InputPortsItem

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 526
def initialize(task,options = Hash.new)
    super
    if @options[:item_type] == :label
        setText "InputPorts"
    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 533
def append_port(port)
    super if port.input?
end