WW-1854 XSLTResult excludingPattern Property is Missing

git-svn-id: https://svn.apache.org/repos/asf/struts/struts2/trunk@555706 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
James Holmes
2007-07-12 18:09:59 +00:00
parent 6269fa89e9
commit c5bd467c36
@@ -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;
}
/**