Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for publicMethod (0.13 sec)

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

                Method publicMethod = getPublicMethod(method);
    
                // it is entirely possible that there is no public method for
                // the methods of this class; i.e. in the facade, a method
                // that isn't on any of the interfaces or superclass
                // in which case, ignore it. Otherwise, map and cache.
                if (publicMethod != null) {
                    methodMap.add(publicMethod);
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Sat Apr 05 11:52:05 UTC 2025
    - 13.5K bytes
    - Viewed (0)
  2. build-logic/binary-compatibility/src/test/groovy/gradlebuild/binarycompatibility/rules/MethodsRemovedInInternalSuperClassRuleTest.groovy

    class MethodsRemovedInInternalSuperClassRuleTest extends AbstractContextAwareRuleSpecification {
        MethodsRemovedInInternalSuperClassRule rule
    
        static class OldSuperInternal {
            void publicMethod() {}
    
            private void privateMethod() {}
    
            OldSuperInternal returnTypeOverridenMethod() { return null }
        }
    
        static class OldBase extends OldSuperInternal {
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Wed Dec 24 14:15:15 UTC 2025
    - 3.2K bytes
    - Viewed (0)
  3. guava-testlib/test/com/google/common/testing/NullPointerTesterTest.java

        private void privateMethod() {}
    
        void packagePrivateMethod() {}
    
        @Keep
        protected void protectedMethod() {}
    
        @Keep
        public void publicMethod() {}
      }
    
      public void testVisibility_public() throws Exception {
        assertFalse(
            Visibility.PUBLIC.isVisible(VisibilityMethods.class.getDeclaredMethod("privateMethod")));
        assertFalse(
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Tue Oct 28 18:44:53 UTC 2025
    - 47.8K bytes
    - Viewed (0)
Back to top