Author: lukaszlenart Date: Wed Oct 23 07:36:28 2013 New Revision: 1534938 URL: http://svn.apache.org/r1534938 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=1534938&r1=1534937&r2=1534938&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:36:28 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 {{{@link org.apache.struts2.dispatcher.mapper.PrefixBasedActionMapper}}} * 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> * <constant name="struts.actionProxyFactory" value="prefix"/> - * + * </pre> * The factory will use the same set of patterns as defined with: + * <pre> * <constant name="struts.mapper.prefixMapping" value="..."/> + * </pre> * <!-- END SNIPPET: description --> */ public class PrefixBasedActionProxyFactory extends DefaultActionProxyFactory {