Return-Path: X-Original-To: apmail-zest-commits-archive@minotaur.apache.org Delivered-To: apmail-zest-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 17E03192A4 for ; Thu, 21 Apr 2016 11:20:12 +0000 (UTC) Received: (qmail 28757 invoked by uid 500); 21 Apr 2016 11:20:12 -0000 Delivered-To: apmail-zest-commits-archive@zest.apache.org Received: (qmail 28724 invoked by uid 500); 21 Apr 2016 11:20:12 -0000 Mailing-List: contact commits-help@zest.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@zest.apache.org Delivered-To: mailing list commits@zest.apache.org Received: (qmail 28715 invoked by uid 99); 21 Apr 2016 11:20:11 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 21 Apr 2016 11:20:11 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id C8186DFC70; Thu, 21 Apr 2016 11:20:11 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: niclas@apache.org To: commits@zest.apache.org Date: Thu, 21 Apr 2016 11:20:11 -0000 Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: [1/4] zest-java git commit: Adding some javadoc to slowly quiet down javadoc's warnings. 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 Authored: Thu Apr 21 11:05:05 2016 +0800 Committer: Niclas Hedhman 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 /** * 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;