# File lib/common.rb, line 107
    def checkOpts(opts)
        ACTION_CLASS.each(){|x|
            next if x.singleton_methods().index(:check_opts) == nil
            x.check_opts(opts)
        }
    end