You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by st...@apache.org on 2018/04/13 10:02:01 UTC

svn commit: r1829054 - in /myfaces/core/branches/2.3.x/api/src/main/java/javax/faces: bean/ViewScoped.java view/ViewScoped.java

Author: struberg
Date: Fri Apr 13 10:02:01 2018
New Revision: 1829054

URL: http://svn.apache.org/viewvc?rev=1829054&view=rev
Log:
add JavaDocs for our ViewScoped

Modified:
    myfaces/core/branches/2.3.x/api/src/main/java/javax/faces/bean/ViewScoped.java
    myfaces/core/branches/2.3.x/api/src/main/java/javax/faces/view/ViewScoped.java

Modified: myfaces/core/branches/2.3.x/api/src/main/java/javax/faces/bean/ViewScoped.java
URL: http://svn.apache.org/viewvc/myfaces/core/branches/2.3.x/api/src/main/java/javax/faces/bean/ViewScoped.java?rev=1829054&r1=1829053&r2=1829054&view=diff
==============================================================================
--- myfaces/core/branches/2.3.x/api/src/main/java/javax/faces/bean/ViewScoped.java (original)
+++ myfaces/core/branches/2.3.x/api/src/main/java/javax/faces/bean/ViewScoped.java Fri Apr 13 10:02:01 2018
@@ -29,7 +29,7 @@ import java.lang.annotation.Target;
 @Retention(java.lang.annotation.RetentionPolicy.RUNTIME)
 @Target(ElementType.TYPE)
 @Inherited
-@Deprecated
+@Deprecated // the spec says it's deprecated, but it IS actually still very useful!
 public @interface ViewScoped
 {
 

Modified: myfaces/core/branches/2.3.x/api/src/main/java/javax/faces/view/ViewScoped.java
URL: http://svn.apache.org/viewvc/myfaces/core/branches/2.3.x/api/src/main/java/javax/faces/view/ViewScoped.java?rev=1829054&r1=1829053&r2=1829054&view=diff
==============================================================================
--- myfaces/core/branches/2.3.x/api/src/main/java/javax/faces/view/ViewScoped.java (original)
+++ myfaces/core/branches/2.3.x/api/src/main/java/javax/faces/view/ViewScoped.java Fri Apr 13 10:02:01 2018
@@ -27,6 +27,7 @@ import java.lang.annotation.Target;
 import javax.enterprise.context.NormalScope;
 
 /**
+ * This is the CDI successor of {@link javax.faces.bean.ViewScoped}.
  *
  * @since 2.2
  */