From 38e6c9db0a72bedb88f61b77022e243fc285bd54 Mon Sep 17 00:00:00 2001 From: Janne Valkealahti Date: Sat, 19 Nov 2016 18:29:02 +0000 Subject: [PATCH] Polish - Fix javadoc warnings --- .../statemachine/config/configurers/StateConfigurer.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/spring-statemachine-core/src/main/java/org/springframework/statemachine/config/configurers/StateConfigurer.java b/spring-statemachine-core/src/main/java/org/springframework/statemachine/config/configurers/StateConfigurer.java index 71168b27..1f58ea62 100644 --- a/spring-statemachine-core/src/main/java/org/springframework/statemachine/config/configurers/StateConfigurer.java +++ b/spring-statemachine-core/src/main/java/org/springframework/statemachine/config/configurers/StateConfigurer.java @@ -126,6 +126,7 @@ public interface StateConfigurer extends * * @param state the state * @param action the state action + * @param error action that will be called if any unexpected exception is thrown by the action. * @return configurer for chaining */ StateConfigurer stateDo(S state, Action action, Action error); @@ -171,6 +172,7 @@ public interface StateConfigurer extends * * @param state the state * @param action the state entry action + * @param error action that will be called if any unexpected exception is thrown by the action. * @return configurer for chaining * @see #state(Object, Action, Action) */ @@ -196,6 +198,7 @@ public interface StateConfigurer extends * * @param state the state * @param action the state entry action + * @param error action that will be called if any unexpected exception is thrown by the action. * @return configurer for chaining * @see #state(Object, Action, Action) */