Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for addConstraintsDecimalMaxMessage (0.18 sec)

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

        public void test_addConstraintsDecimalMaxMessage() {
            String property = "testProperty";
            String value = "100";
            FessMessages result = messages.addConstraintsDecimalMaxMessage(property, value);
            assertNotNull(result);
            assertSame(messages, result);
            assertTrue(messages.hasMessageOf(property));
        }
    
        public void test_addConstraintsDecimalMinMessage() {
    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

         * </pre>
         * @param property The property name for the message. (NotNull)
         * @param value The parameter value for message. (NotNull)
         * @return this. (NotNull)
         */
        public FessMessages addConstraintsDecimalMaxMessage(String property, String value) {
            assertPropertyNotNull(property);
            add(property, new UserMessage(CONSTRAINTS_DecimalMax_MESSAGE, 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