module Syskit::Actions::InterfaceExtension

Public Instance Methods

find_through_method_missing(m, args) click to toggle source
Calls superclass method
# File lib/syskit/actions/interface_model_extension.rb, line 153
def find_through_method_missing(m, args)
    MetaRuby::DSLs.find_through_method_missing(
        profile, m, args, '_tag'.freeze => :find_tag) || super
end
has_through_method_missing?(m) click to toggle source
Calls superclass method
# File lib/syskit/actions/interface_model_extension.rb, line 148
def has_through_method_missing?(m)
    MetaRuby::DSLs.has_through_method_missing?(
        profile, m, '_tag'.freeze => :has_tag?) || super
end
profile() click to toggle source
# File lib/syskit/actions/interface_model_extension.rb, line 144
def profile
    self.class.profile
end