class Construqt::Flavour::InterfaceDelegate

Public Class Methods

new(interface) click to toggle source
# File lib/construqt/flavour/delegates.rb, line 295
def initialize(interface)
  self.delegate = interface
end

Public Instance Methods

_ident() click to toggle source
# File lib/construqt/flavour/delegates.rb, line 303
def _ident
  self.clazz.ident
  #        "#{self.delegate.clazz.name}_#{self.name}"
end
address() click to toggle source
# File lib/construqt/flavour/delegates.rb, line 312
def address
  self.delegate.address
end
cable() click to toggle source
# File lib/construqt/flavour/delegates.rb, line 328
def cable
  self.delegate.cable
end
cable=(a) click to toggle source
# File lib/construqt/flavour/delegates.rb, line 332
def cable=(a)
  self.delegate.cable = a
end
clazz() click to toggle source
# File lib/construqt/flavour/delegates.rb, line 299
def clazz
  self.delegate.clazz
end
host() click to toggle source
# File lib/construqt/flavour/delegates.rb, line 320
def host
  self.delegate.host
end
interfaces() click to toggle source
# File lib/construqt/flavour/delegates.rb, line 340
def interfaces
  self.delegate.interfaces
end
name() click to toggle source
# File lib/construqt/flavour/delegates.rb, line 308
def name
  self.delegate.name
end
network() click to toggle source
# File lib/construqt/flavour/delegates.rb, line 324
def network
  self.delegate.network
end
priority() click to toggle source
# File lib/construqt/flavour/delegates.rb, line 316
def priority
  self.delegate.priority
end
template() click to toggle source
# File lib/construqt/flavour/delegates.rb, line 336
def template
  self.delegate.template
end