JAVAP: (1) manpage
- NAME
javap - Java class file disassembler
- SYNOPSIS
javap [OPTION]... [CLASS]...
- DESCRIPTION
Provide information about the given classes.
- -c
- Disassemble the code
- -classpath PATH
- Specify where to find user class files
- -help
- Print this usage message
- -l
- Print line number and local variable tables
- -public
- Show only public classes and members
- -protected
- Show public and protected classes and members
- -private
- Show all classes and members
- -s
- Print internal type signatures
- -verbose
- Print stack size, number of locals and args for methods
- SEE ALSO