Author: jholmes Date: Thu Jul 19 07:20:13 2007 New Revision: 557637 URL: http://svn.apache.org/viewvc?view=rev&rev=557637 Log: WW-1854 XSLTResult excludingPattern Property is Missing
This is a backport of the fix made on the trunk for 2.1. Modified: struts/struts2/branches/STRUTS_2_0_X/core/src/main/java/org/apache/struts2/views/xslt/XSLTResult.java Modified: struts/struts2/branches/STRUTS_2_0_X/core/src/main/java/org/apache/struts2/views/xslt/XSLTResult.java URL: http://svn.apache.org/viewvc/struts/struts2/branches/STRUTS_2_0_X/core/src/main/java/org/apache/struts2/views/xslt/XSLTResult.java?view=diff&rev=557637&r1=557636&r2=557637 ============================================================================== --- struts/struts2/branches/STRUTS_2_0_X/core/src/main/java/org/apache/struts2/views/xslt/XSLTResult.java (original) +++ struts/struts2/branches/STRUTS_2_0_X/core/src/main/java/org/apache/struts2/views/xslt/XSLTResult.java Thu Jul 19 07:20:13 2007 @@ -100,7 +100,7 @@ * </result></pre> * * <p> - * Without it there would be an endless x/y/x/y/x/y/... elements. + * Without it there would be endless x/y/x/y/x/y/... elements. * </p> * * <p> @@ -231,7 +231,7 @@ private String matchingPattern; /** Indicates the property name patterns which should be excluded from the xml. */ - private String exludingPattern; + private String excludingPattern; /** Indicates the ognl expression respresenting the bean which is to be exposed as xml. */ private String exposedValue; @@ -285,12 +285,12 @@ this.matchingPattern = matchingPattern; } - public String getExludingPattern() { - return exludingPattern; + public String getExcludingPattern() { + return excludingPattern; } - public void setExludingPattern(String exludingPattern) { - this.exludingPattern = exludingPattern; + public void setExcludingPattern(String excludingPattern) { + this.excludingPattern = excludingPattern; } /**