| java.lang.Object isql.pack
Method Summary | |
public String[] | getClassMethods(String classname) given a fully qualified classname, returns the names of methods
and constructors from cache, if not found it reflects and adds to
cache. | public String | getFullClass(String partclassname) given a classname without package name, returns the class name
prefixed by package: given "FileReader" will return
"java.io.FileReader". | public static String | join(Class[] sarr, char csep) appends each index of string using getName and given separator. | public static void | main(String args) | public void | print() |
htClassMethods | Map htClassMethods(Code) | | classes and their methods
Will have entried such as
| java.util.Vector | add, put, delete
|
htPackageClasses | Map htPackageClasses(Code) | | packages and their classes
Will have entried such as
| java.util.Vector | java.util.Vector |
or | java.util.* | Vector, Hashtable,....
|
getClassMethods | public String[] getClassMethods(String classname)(Code) | | given a fully qualified classname, returns the names of methods
and constructors from cache, if not found it reflects and adds to
cache.
|
getFullClass | public String getFullClass(String partclassname)(Code) | | given a classname without package name, returns the class name
prefixed by package: given "FileReader" will return
"java.io.FileReader". However, java.io must be in the import
list, and the jar file containing the class should be in
classpath.
|
join | public static String join(Class[] sarr, char csep)(Code) | | appends each index of string using getName and given separator.
This would work only for methods having a get Name such as class
and Method
|
print | public void print()(Code) | | |
|
|