Lines Matching full:classes
41 * that contains a minimal set of classes needed to run the client.
43 * Use BCEL to extract class names and read/write classes
74 * A map for all Classes, the ones we're going to package.
81 * We start at the root classes, put them in here, then go through
82 * this list, putting dependent classes in here and from there
88 * Collect all classes that could not be found in the classpath.
94 * See wheather we print the classes that were not found (default = false)
102 * Wheather we log classes during processing (default = false)
107 System.out.println(" This program packages classes and all their dependents"); in usage()
108 System.out.println(" into one jar. Give all starting classes (your main)"); in usage()
111 System.out.println(" classes. Anything but java.* packages are packaged."); in usage()
113 System.out.println(" include the classes that you load dynamically on the"); in usage()
116 System.out.println(" -e -error Show errors, meaning classes that could not "); in usage()
117 System.out.println(" resolved + the classes that referenced them."); in usage()
118 System.out.println(" -l -log Show classes as they are processed. This will"); in usage()
119 System.out.println(" include doubles, java classes and is difficult to"); in usage()
121 System.out.println(" -s -show Prints all the classes that were packaged"); in usage()
151 // here we create the root set of classes to process in go()
180 if (printClasses) { // if wanted show all classes in go()
199 + " classes and contains " + written + " bytes"); in go()
202 System.err.println(notFound.size() + " classes could not be found"); in go()
203 if (showNotFound) { // if wanted show the actual classes that we not found in go()
209 System.err.println("Use '-e' option to view classes that were not found"); in go()
215 * Print all classes that were packaged. Sort alphabetically for better