Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for addConstraintsModCheckMessage (0.57 sec)

  1. src/test/java/org/codelibs/fess/mylasta/action/FessMessagesTest.java

        public void test_addConstraintsModCheckMessage() {
            String property = "testProperty";
            String modType = "Modulo10";
            String value = "12345";
            FessMessages result = messages.addConstraintsModCheckMessage(property, modType, value);
            assertNotNull(result);
            assertSame(messages, result);
            assertTrue(messages.hasMessageOf(property));
        }
    
        // Test error message methods
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 28.2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/mylasta/action/FessMessages.java

         * @param modType The parameter modType for message. (NotNull)
         * @param value The parameter value for message. (NotNull)
         * @return this. (NotNull)
         */
        public FessMessages addConstraintsModCheckMessage(String property, String modType, String value) {
            assertPropertyNotNull(property);
            add(property, new UserMessage(CONSTRAINTS_ModCheck_MESSAGE, modType, value));
            return this;
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 02:36:47 UTC 2025
    - 119.6K bytes
    - Viewed (0)
Back to top