def options()

in commands/FBClassDump.py [0:0]


    def options(self):
        return [
            fb.FBCommandArgument(
                short="-a",
                long="--address",
                arg="showaddr",
                help="Print the implementation address of the method",
                default=False,
                boolean=True,
            ),
            fb.FBCommandArgument(
                short="-i",
                long="--instance",
                arg="insmethod",
                help="Print the instance methods",
                default=False,
                boolean=True,
            ),
            fb.FBCommandArgument(
                short="-c",
                long="--class",
                arg="clsmethod",
                help="Print the class methods",
                default=False,
                boolean=True,
            ),
            fb.FBCommandArgument(
                short="-n",
                long="--name",
                arg="clsname",
                help="Take the argument as class name",
                default=False,
                boolean=True,
            ),
        ]