home *** CD-ROM | disk | FTP | other *** search
- !!Script
- // Copyright ⌐ 1997-1998 - Modelworks Software
- // @Created build 232 cm19981109
-
- var gOutput = getOutput();
- function DoCommand()
- {
- var result = chooseFile("Select your class file", "class (*.class)", "*.class");
-
- if (result && result.exists)
- {
- var classname = Java.getClassName(result.path);
- gOutput.writeLine("The full classname in \"" + result.path + "\" is: " + classname);
- }
- }
-
- !!/Script
-