You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@struts.apache.org by lu...@apache.org on 2013/05/22 12:46:34 UTC

svn commit: r1485146 - /struts/struts2/trunk/xwork-core/src/main/java/com/opensymphony/xwork2/interceptor/ValidationWorkflowAware.java

Author: lukaszlenart
Date: Wed May 22 10:46:33 2013
New Revision: 1485146

URL: http://svn.apache.org/r1485146
Log:
Adds proper JavaDoc comment

Modified:
    struts/struts2/trunk/xwork-core/src/main/java/com/opensymphony/xwork2/interceptor/ValidationWorkflowAware.java

Modified: struts/struts2/trunk/xwork-core/src/main/java/com/opensymphony/xwork2/interceptor/ValidationWorkflowAware.java
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/xwork-core/src/main/java/com/opensymphony/xwork2/interceptor/ValidationWorkflowAware.java?rev=1485146&r1=1485145&r2=1485146&view=diff
==============================================================================
--- struts/struts2/trunk/xwork-core/src/main/java/com/opensymphony/xwork2/interceptor/ValidationWorkflowAware.java (original)
+++ struts/struts2/trunk/xwork-core/src/main/java/com/opensymphony/xwork2/interceptor/ValidationWorkflowAware.java Wed May 22 10:46:33 2013
@@ -1,9 +1,12 @@
 package com.opensymphony.xwork2.interceptor;
 
 /**
- * <code>ValidationWorkflowAware</code>
+ * ValidationWorkflowAware classes can programmatically change result name when errors occurred
+ *
+ * This interface can be only applied to action which already implements {@link com.opensymphony.xwork2.ValidationAware} interface!
  */
 public interface ValidationWorkflowAware {
 
     String getInputResultName();
+
 }