com.sun.star.tools.uno
Class DumpType
public
class
DumpType
extends Object
A command-line tool. Prints information about com.sun.star.uno.Type to error stream.
Method Summary |
static void | dumpType(Type type) Prints information about argument type to the standard error stream.
|
static void | main(String[] args) Executes this tool.
|
public static void dumpType(
Type type)
Prints information about argument type to the standard error stream.
The information consists of type name, type description, class name,
as well as the type class.
Parameters: type the Type object whoose information are printed.
public static void main(String[] args)
Executes this tool.
The command line arguments consist of an identifier followed by a type name.
Identifiers can either be uno or java. Based on the type name, a com.sun.star.uno.Type
object is constructed whose information are then printed out to the error stream.
usage: [uno <type name>]|[java <class name>]*
Examples:
java com.sun.star.uno.tools.DumpType uno com.sun.star.lang.XMultiServiceFactory
java com.sun.star.uno.tools.DumpType java java.lang.Byte java java.lang.String
Parameters: args command line arguments