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/10/23 09:41:58 UTC

svn commit: r1534942 - /struts/struts2/trunk/core/src/main/java/org/apache/struts2/impl/PrefixBasedActionProxyFactory.java

Author: lukaszlenart
Date: Wed Oct 23 07:41:57 2013
New Revision: 1534942

URL: http://svn.apache.org/r1534942
Log:
WW-4131 Polishes JavaDoc a bit

Modified:
    struts/struts2/trunk/core/src/main/java/org/apache/struts2/impl/PrefixBasedActionProxyFactory.java

Modified: struts/struts2/trunk/core/src/main/java/org/apache/struts2/impl/PrefixBasedActionProxyFactory.java
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/core/src/main/java/org/apache/struts2/impl/PrefixBasedActionProxyFactory.java?rev=1534942&r1=1534941&r2=1534942&view=diff
==============================================================================
--- struts/struts2/trunk/core/src/main/java/org/apache/struts2/impl/PrefixBasedActionProxyFactory.java (original)
+++ struts/struts2/trunk/core/src/main/java/org/apache/struts2/impl/PrefixBasedActionProxyFactory.java Wed Oct 23 07:41:57 2013
@@ -14,15 +14,18 @@ import java.util.Map;
 
 /**
  * <!-- START SNIPPET: description -->
- * Prefix based factory should be used with {{{@link org.apache.struts2.dispatcher.mapper.PrefixBasedActionMapper}}}
+ * Prefix based factory should be used with <pre>{@link org.apache.struts2.dispatcher.mapper.PrefixBasedActionMapper}</pre>
  * to use appropriate {@link com.opensymphony.xwork2.ActionProxyFactory} connected with given
  * {@link org.apache.struts2.dispatcher.mapper.ActionMapper}
  *
  * Add below entry to struts.xml to enable the factory:
+ *
  * <pre>
  * &lt;constant name="struts.actionProxyFactory" value="prefix"/&gt;
  * </pre>
+ *
  * The factory will use the same set of patterns as defined with:
+ *
  * <pre>
  * &lt;constant name="struts.mapper.prefixMapping" value="..."/&gt;
  * </pre>