- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for addConstraintsPatternMessage (0.27 sec)
-
src/test/java/org/codelibs/fess/mylasta/action/FessMessagesTest.java
} public void test_addConstraintsPatternMessage() { String property = "testProperty"; String regexp = "[0-9]+"; FessMessages result = messages.addConstraintsPatternMessage(property, regexp); assertNotNull(result); assertSame(messages, result); assertTrue(messages.hasMessageOf(property)); }
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 regexp The parameter regexp for message. (NotNull) * @return this. (NotNull) */ public FessMessages addConstraintsPatternMessage(String property, String regexp) { assertPropertyNotNull(property); add(property, new UserMessage(CONSTRAINTS_Pattern_MESSAGE, regexp)); 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)