- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for addConstraintsDecimalMinMessage (0.66 sec)
-
src/test/java/org/codelibs/fess/mylasta/action/FessMessagesTest.java
} public void test_addConstraintsDecimalMinMessage() { String property = "testProperty"; String value = "0"; FessMessages result = messages.addConstraintsDecimalMinMessage(property, value); assertNotNull(result); assertSame(messages, result); assertTrue(messages.hasMessageOf(property)); } public void test_addConstraintsMaxMessage() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 28.2K bytes - Viewed (0) -
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 addConstraintsDecimalMinMessage(String property, String value) { assertPropertyNotNull(property); add(property, new UserMessage(CONSTRAINTS_DecimalMin_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)