Repository: zest-java Updated Branches: refs/heads/develop d4b6bc9bb -> 54c1e6122
Adding some javadoc to slowly quiet down javadoc's warnings. Project: http://git-wip-us.apache.org/repos/asf/zest-java/repo Commit: http://git-wip-us.apache.org/repos/asf/zest-java/commit/8d97ec02 Tree: http://git-wip-us.apache.org/repos/asf/zest-java/tree/8d97ec02 Diff: http://git-wip-us.apache.org/repos/asf/zest-java/diff/8d97ec02 Branch: refs/heads/develop Commit: 8d97ec0225b8b4b7b38986596c685915428dbf52 Parents: d4b6bc9 Author: Niclas Hedhman <[email protected]> Authored: Thu Apr 21 11:05:05 2016 +0800 Committer: Niclas Hedhman <[email protected]> Committed: Thu Apr 21 11:05:05 2016 +0800 ---------------------------------------------------------------------- .../org/apache/zest/api/activation/Activator.java | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/zest-java/blob/8d97ec02/core/api/src/main/java/org/apache/zest/api/activation/Activator.java ---------------------------------------------------------------------- diff --git a/core/api/src/main/java/org/apache/zest/api/activation/Activator.java b/core/api/src/main/java/org/apache/zest/api/activation/Activator.java index 57cdb29..c2da2f2 100644 --- a/core/api/src/main/java/org/apache/zest/api/activation/Activator.java +++ b/core/api/src/main/java/org/apache/zest/api/activation/Activator.java @@ -32,24 +32,40 @@ public interface Activator<ActivateeType> /** * Called before activatee activation. + * + * @param activating The instance that is about to be activated. + * + * @throws Exception Allowed to throw Exception which will be wrapped in an ActivationException */ void beforeActivation( ActivateeType activating ) throws Exception; /** * Called after activatee activation. + * + * @param activated The instance that has just been activated. + * + * @throws Exception Allowed to throw Exception which will be wrapped in an ActivationException */ void afterActivation( ActivateeType activated ) throws Exception; /** * Called before activatee passivation. + * + * @param passivating The instance that is about to be passivated. + * + * @throws Exception Allowed to throw Exception which will be wrapped in an PassivationException */ void beforePassivation( ActivateeType passivating ) throws Exception; /** * Called after activatee passivation. + * + * @param passivated The instance that has just been passivated. + * + * @throws Exception Allowed to throw Exception which will be wrapped in an PassivationException */ void afterPassivation( ActivateeType passivated ) throws Exception;
