WW-1854 XSLTResult excludingPattern Property is Missing

This is a backport of the fix made on the trunk for 2.1.

git-svn-id: https://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_0_X@557637 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
James Holmes
2007-07-19 14:20:13 +00:00
parent 6fcf3cfb56
commit 165b4e7799
@@ -100,7 +100,7 @@ import com.opensymphony.xwork2.util.ValueStack;
* &lt;/result&gt;</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 @@ public class XSLTResult implements Result {
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 @@ public class XSLTResult implements Result {
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;
}
/**