- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for concatName (0.05 sec)
-
src/main/java/org/codelibs/core/io/TraversalUtil.java
} @Override public boolean isExistClass(final String className) { final File file = new File(baseDir, toClassFile(ClassUtil.concatName(rootPackage, className))); return file.exists(); } @Override public void forEach(final ClassHandler handler) {
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 18.6K bytes - Viewed (0) -
src/main/java/org/codelibs/core/io/ClassTraversalUtil.java
for (final File file : dir.listFiles()) { final String fileName = file.getName(); if (file.isDirectory()) { traverseFileSystem(file, ClassUtil.concatName(packageName, fileName), handler); } else if (fileName.endsWith(".class")) { final String shortClassName = fileName.substring(0, fileName.length() - CLASS_SUFFIX.length());
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 9.5K bytes - Viewed (0) -
src/main/java/org/codelibs/core/lang/ClassUtil.java
* @param s1 * The first element of the class name * @param s2 * The second element of the class name * @return The concatenated name */ public static String concatName(final String s1, final String s2) { if (StringUtil.isEmpty(s1) && StringUtil.isEmpty(s2)) { return null; } if (!StringUtil.isEmpty(s1) && StringUtil.isEmpty(s2)) {
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 25.6K bytes - Viewed (0)