Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for methodMan (0.57 sec)

  1. maven-model-builder/src/main/java/org/apache/maven/model/interpolation/reflection/MethodMap.java

    import java.lang.reflect.Method;
    import java.util.ArrayList;
    import java.util.Hashtable;
    import java.util.Iterator;
    import java.util.LinkedList;
    import java.util.List;
    import java.util.Map;
    
    class MethodMap {
        private static final int MORE_SPECIFIC = 0;
    
        private static final int LESS_SPECIFIC = 1;
    
        private static final int INCOMPARABLE = 2;
    
        /**
         * Keep track of all methods with the same name.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Oct 17 17:55:08 UTC 2023
    - 14.1K bytes
    - Viewed (0)
  2. maven-api-impl/src/test/remote-repo/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar

    String, Class[]); static void <clinit>(); } org/codehaus/plexus/util/introspection/MethodMap$AmbiguousException.class package org.codehaus.plexus.util.introspection; public synchronized class MethodMap$AmbiguousException extends Exception { public void MethodMap$AmbiguousException(); } org/codehaus/plexus/util/introspection/MethodMap.class package org.codehaus.plexus.util.introspection; public synchronized class MethodMap { private static final int MORE_SPECIFIC = 0; private static final int LESS_SPECIFIC...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 164.6K bytes
    - Viewed (0)
  3. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-utils/1.4.5/plexus-utils-1.4.5.jar

    String, Class[]); static void <clinit>(); } org/codehaus/plexus/util/introspection/MethodMap$AmbiguousException.class package org.codehaus.plexus.util.introspection; public synchronized class MethodMap$AmbiguousException extends Exception { public void MethodMap$AmbiguousException(); } org/codehaus/plexus/util/introspection/MethodMap.class package org.codehaus.plexus.util.introspection; public synchronized class MethodMap { private static final int MORE_SPECIFIC = 0; private static final int LESS_SPECIFIC...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 200.2K bytes
    - Viewed (0)
  4. maven-model-builder/src/main/java/org/apache/maven/model/interpolation/reflection/ClassMap.java

        /**
         * Cache of Methods, or CACHE_MISS, keyed by method
         * name and actual arguments used to find it.
         */
        private final Map<String, Object> methodCache = new Hashtable<>();
    
        private MethodMap methodMap = new MethodMap();
    
        /**
         * Standard constructor
         * @param clazz The class.
         */
        ClassMap(Class<?> clazz) {
            this.clazz = clazz;
            populateMethodCache();
        }
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Oct 17 17:55:08 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  5. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-utils/1.0.4/plexus-utils-1.0.4.jar

    writeObject(java.io.ObjectOutputStream) throws java.io.IOException; } org/codehaus/plexus/util/introspection/MethodMap.class package org.codehaus.plexus.util.introspection; public synchronized class MethodMap { private static final int MORE_SPECIFIC = 0; private static final int LESS_SPECIFIC = 1; private static final int INCOMPARABLE = 2; java.util.Map methodByNameMap; public void MethodMap(); public void add(reflect.Method); public java.util.List get(String); public reflect.Method find(String, Object[])...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 160K bytes
    - Viewed (0)
  6. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar

    String, Class[]); static void <clinit>(); } org/codehaus/plexus/util/introspection/MethodMap$AmbiguousException.class package org.codehaus.plexus.util.introspection; public synchronized class MethodMap$AmbiguousException extends Exception { public void MethodMap$AmbiguousException(); } org/codehaus/plexus/util/introspection/MethodMap.class package org.codehaus.plexus.util.introspection; public synchronized class MethodMap { private static final int MORE_SPECIFIC = 0; private static final int LESS_SPECIFIC...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 164.6K bytes
    - Viewed (0)
  7. maven-model-builder/src/main/java/org/apache/maven/model/interpolation/reflection/ReflectionValueExtractor.java

    import java.util.Optional;
    import java.util.WeakHashMap;
    
    import org.apache.maven.api.annotations.Nonnull;
    import org.apache.maven.api.annotations.Nullable;
    import org.apache.maven.model.interpolation.reflection.MethodMap.AmbiguousException;
    
    /**
     * Using simple dotted expressions to extract the values from an Object instance using JSP-like expressions
     * such as {@code project.build.sourceDirectory}.
     * <p>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 05 08:11:33 UTC 2023
    - 10.7K bytes
    - Viewed (0)
Back to top