You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@deltaspike.apache.org by li...@apache.org on 2012/01/25 08:02:22 UTC

[3/6] git commit: Fixing spelling, and moving javadoc comments to make more sense.

Fixing spelling, and moving javadoc comments to make more sense.


Project: http://git-wip-us.apache.org/repos/asf/incubator-deltaspike/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-deltaspike/commit/471ffbe6
Tree: http://git-wip-us.apache.org/repos/asf/incubator-deltaspike/tree/471ffbe6
Diff: http://git-wip-us.apache.org/repos/asf/incubator-deltaspike/diff/471ffbe6

Branch: refs/heads/master
Commit: 471ffbe62251b2ab426238d64e4004651c840731
Parents: 01fc877
Author: Jason Porter <li...@apache.org>
Authored: Tue Jan 24 23:41:21 2012 -0700
Committer: Jason Porter <li...@apache.org>
Committed: Tue Jan 24 23:41:21 2012 -0700

----------------------------------------------------------------------
 .../core/spi/activation/ClassDeactivator.java      |   15 +++++++--------
 1 files changed, 7 insertions(+), 8 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-deltaspike/blob/471ffbe6/deltaspike/core/api/src/main/java/org/apache/deltaspike/core/spi/activation/ClassDeactivator.java
----------------------------------------------------------------------
diff --git a/deltaspike/core/api/src/main/java/org/apache/deltaspike/core/spi/activation/ClassDeactivator.java b/deltaspike/core/api/src/main/java/org/apache/deltaspike/core/spi/activation/ClassDeactivator.java
index a1399cf..9c5841b 100644
--- a/deltaspike/core/api/src/main/java/org/apache/deltaspike/core/spi/activation/ClassDeactivator.java
+++ b/deltaspike/core/api/src/main/java/org/apache/deltaspike/core/spi/activation/ClassDeactivator.java
@@ -21,20 +21,19 @@ package org.apache.deltaspike.core.spi.activation;
 import java.io.Serializable;
 
 /**
- * <p>An implementation has to be stateless.</p>
- *
  * <p>A class-deactivator allows to specify deactivated classes which can't be deactivated via std. CDI mechanisms.
  * This might be the case for CDI Extensions because CDI mechanisms are not available at startup time.</p>
- * 
+ *
  * <p>A class-deactivator will be resolved from the environment via the default resolvers or via a custom resolver which
  * allows to use any type of configuration-format. See {@link org.apache.deltaspike.core.api.config.ConfigResolver}
  * for more information about how to configure it. The configuration key is
  * <code>org.apache.deltaspike.core.spi.activation.ClassDeactivator</code></p>
- * 
- * <p>All DlassDeactivators will get picked up in order of their ordinal and might explicitely activate or 
+ *
+ * <p>All ClassDeactivators will get picked up in order of their ordinal and might explicitly activate or
  * deactivate {@link Deactivatable} classes. Returning a <code>null</code> value means that the ClassDeactivator
- * doesn't care about the very Deactivatable class.</p>
- * 
+ * doesn't care about the Deactivatable class.</p>
+ *
+ * <p>An implementation has to be stateless.</p>
  */
 public interface ClassDeactivator extends Serializable
 {
@@ -43,7 +42,7 @@ public interface ClassDeactivator extends Serializable
      *
      * @param targetClass class which should be checked
      * @return {@link Boolean#FALSE} if class should get activated, {@link Boolean#FALSE} if class must be available
-     *         and <code>null</code> to let it as is (defined by default or other 
+     *         and <code>null</code> to let it as is (defined by default or other
      */
     Boolean isActivated(Class<? extends Deactivatable> targetClass);
 }