Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for TraversalUtil (0.06 sec)

  1. src/main/java/org/codelibs/core/io/TraversalUtil.java

     * @see ResourceTraversalUtil
     */
    public abstract class TraversalUtil {
    
        /**
         * Do not instantiate.
         */
        protected TraversalUtil() {
        }
    
        /** An empty array of {@link Traverser}. */
        protected static final Traverser[] EMPTY_ARRAY = new Traverser[0];
    
        private static final Logger logger = Logger.getLogger(TraversalUtil.class);
    
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 18.6K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/core/io/TraverserUtilTest.java

    import java.util.List;
    import java.util.Set;
    
    import junit.framework.TestCase;
    import junit.textui.ResultPrinter;
    import junit.textui.TestRunner;
    
    import org.codelibs.core.io.TraversalUtil.FileSystemTraverser;
    import org.codelibs.core.io.TraversalUtil.JarFileTraverser;
    import org.codelibs.core.io.xxx.DummyTest;
    import org.codelibs.core.lang.ClassUtil;
    import org.junit.Test;
    
    /**
     * @author koichik
     */
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat May 10 01:32:17 UTC 2025
    - 6.4K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/core/io/Traverser.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.core.io;
    
    /**
     * Object representing a collection of classes or resources.
     *
     * @author koichik
     * @see TraversalUtil
     */
    public interface Traverser {
    
        /**
         * Returns <code>true</code> if the class file corresponding to the specified class name exists in the resources handled by this instance.
         * <p>
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jun 19 09:12:22 UTC 2025
    - 2.1K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/core/io/ResourceTraversalUtil.java

    import org.codelibs.core.jar.JarFileUtil;
    import org.codelibs.core.zip.ZipInputStreamUtil;
    
    /**
     * Class for traversing resources.
     *
     * @author taedium
     * @see ResourceHandler
     * @see TraversalUtil
     */
    public abstract class ResourceTraversalUtil {
    
        /**
         * Do not instantiate.
         */
        protected ResourceTraversalUtil() {
        }
    
        /**
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 9.2K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/core/io/ClassTraversalUtil.java

    import org.codelibs.core.lang.ClassUtil;
    import org.codelibs.core.zip.ZipInputStreamUtil;
    
    /**
     * Handler for traversing and processing classes.
     *
     * @author koichik
     * @see ClassHandler
     * @see TraversalUtil
     */
    public abstract class ClassTraversalUtil {
    
        /**
         * Do not instantiate.
         */
        protected ClassTraversalUtil() {
        }
    
        /** The file extension for class files. */
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 9.5K bytes
    - Viewed (0)
Back to top