Home | History | Annotate | Download | only in xslt

Lines Matching refs:jars

180       logMsg("#    to correct potential problems with your classes/jars");
239 * for entries that are .jars found in the classpath.</p>
316 /** Prefixed to hash keys that signify .jars found in classpath. */
341 * Print out report of .jars found in a classpath.
349 * @return false if OK, true if any .jars were reported
361 logMsg("#---- BEGIN Listing XML-related jars in: " + desc + " ----");
391 logMsg("#----- END Listing XML-related jars in: " + desc + " -----");
491 * Print out report of .jars found in a classpath.
501 * @return false if OK, true if any .jars were reported
640 * Cheap-o listing of specified .jars found in the classpath.
648 * @param jars array of .jar base filenames to look for
650 * @return Vector of Hashtables filled with info about found .jars
656 protected Vector checkPathForJars(String cp, String[] jars)
659 if ((null == cp) || (null == jars) || (0 == cp.length())
660 || (0 == jars.length))
672 for (int i = 0; i < jars.length; i++)
674 if (filename.indexOf(jars[i]) > -1)
687 h.put(jars[i] + "-path", f.getAbsolutePath());
692 // For other jars, eg. xml-apis.jar and xercesImpl.jar, we
694 if (!("xalan.jar".equalsIgnoreCase(jars[i]))) {
695 h.put(jars[i] + "-apparent.version",
696 getApparentVersion(jars[i], f.length()));
710 h.put(jars[i] + "-path", WARNING + " Classpath entry: "
712 h.put(jars[i] + "-apparent.version", CLASS_NOTPRESENT);
1180 * Note assumption: two jars cannot have the same size!