Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 3,558 for Republic (0.03 sec)

  1. src/main/java/org/codelibs/core/lang/ModifierUtil.java

            return isPublic(method.getModifiers());
        }
    
        /**
         * Checks if the specified field is public.
         *
         * @param field
         *            the field to check. Must not be null.
         * @return true if public, false otherwise
         */
        public static boolean isPublic(final Field field) {
            assertArgumentNotNull("field", field);
    
            return isPublic(field.getModifiers());
        }
    
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 5.3K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/mylasta/action/FessLabelsTest.java

    import org.codelibs.fess.unit.UnitFessTestCase;
    
    public class FessLabelsTest extends UnitFessTestCase {
    
        private FessLabels fessLabels;
    
        @Override
        public void setUp() throws Exception {
            super.setUp();
            fessLabels = new FessLabels();
        }
    
        /**
         * Test that assertPropertyNotNull throws exception for null input
         */
        public void test_assertPropertyNotNull_withNull() {
            try {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 13.8K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/timer/SystemMonitorTargetTest.java

        }
    
        public void test_default_constructor_is_public() throws Exception {
            assertTrue("Default constructor should be public",
                    java.lang.reflect.Modifier.isPublic(SystemMonitorTarget.class.getConstructor().getModifiers()));
        }
    
        public void test_expired_method_is_public() throws Exception {
            assertTrue("expired method should be public",
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 8.9K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/timer/HotThreadMonitorTargetTest.java

        }
    
        public void test_default_constructor_is_public() throws Exception {
            assertTrue("Default constructor should be public",
                    java.lang.reflect.Modifier.isPublic(HotThreadMonitorTarget.class.getConstructor().getModifiers()));
        }
    
        public void test_expired_method_is_public() throws Exception {
            assertTrue("expired method should be public",
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 4K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/core/beans/impl/MethodDescTest.java

            assertThat(bar.getMethodName(), is("bar"));
            assertThat(bar.isPublic(), is(true));
            assertThat(bar.isStatic(), is(true));
            assertThat(bar.isFinal(), is(not(true)));
            assertThat(bar.isAbstract(), is(not(true)));
            assertThat(bar.invokeStatic("moge"), is((Object) "moge"));
        }
    
        /**
         */
        public static class MyBean {
            /**
             * @return String
             */
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat May 10 01:32:17 UTC 2025
    - 3.4K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/mylasta/action/FessHtmlPathTest.java

    public class FessHtmlPathTest extends UnitFessTestCase {
    
        public void test_allPathsInitialized() throws Exception {
            // Get all public static final fields of HtmlNext type
            Field[] fields = FessHtmlPath.class.getDeclaredFields();
            for (Field field : fields) {
                int modifiers = field.getModifiers();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 12.9K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/core/lang/ConstructorUtil.java

        /**
         * Returns whether the constructor is <code>public</code>.
         *
         * @param constructor the constructor (must not be {@literal null} or empty string)
         * @return whether the constructor is <code>public</code>
         */
        public static boolean isPublic(final Constructor<?> constructor) {
            assertArgumentNotNull("constructor", constructor);
    
            return Modifier.isPublic(constructor.getModifiers());
        }
    
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 3.1K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/core/beans/impl/ConstructorDescTest.java

            assertThat(ctor.isPublic(), is(true));
            final MyBean myBean = ctor.newInstance("hoge");
            assertThat(myBean, is(notNullValue()));
            assertThat(myBean.s, is("hoge"));
        }
    
        /**
         */
        public static class MyBean {
            /** */
            public String s;
    
            /**
             *
             */
            public MyBean() {
            }
    
            /**
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat May 10 01:32:17 UTC 2025
    - 2.9K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/util/WebApiUtilTest.java

                assertTrue("validate should be public", java.lang.reflect.Modifier.isPublic(validateMethod.getModifiers()));
                assertEquals("validate should return void", void.class, validateMethod.getReturnType());
    
            } catch (NoSuchMethodException e) {
                fail("All expected public methods should exist: " + e.getMessage());
            }
        }
    
        public void test_constant_WEB_API_EXCEPTION() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 17.1K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/reflect/Invokable.java

      public final boolean isPublic() {
        return Modifier.isPublic(getModifiers());
      }
    
      /** Returns true if the element is protected. */
      public final boolean isProtected() {
        return Modifier.isProtected(getModifiers());
      }
    
      /** Returns true if the element is package-private. */
      public final boolean isPackagePrivate() {
        return !isPrivate() && !isPublic() && !isProtected();
      }
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Mar 17 20:26:29 UTC 2025
    - 18.4K bytes
    - Viewed (0)
Back to top