Fixed typo getAllAttibutes -> getAllAttRibutes

This commit is contained in:
Arjen Poutsma
2008-01-22 11:54:31 +00:00
parent 3f837abffb
commit 26aa9be6e7
4 changed files with 4 additions and 4 deletions

View File

@@ -72,6 +72,6 @@ public interface SoapElement {
*
* @return an iterator over all the attribute names
*/
Iterator getAllAttibutes();
Iterator getAllAttributes();
}

View File

@@ -101,7 +101,7 @@ class AxiomSoapElement implements SoapElement {
}
}
public final Iterator getAllAttibutes() {
public final Iterator getAllAttributes() {
try {
List results = new ArrayList();
for (Iterator iterator = getAxiomElement().getAllAttributes(); iterator.hasNext();) {

View File

@@ -76,7 +76,7 @@ class SaajSoapElement implements SoapElement {
}
}
public Iterator getAllAttibutes() {
public Iterator getAllAttributes() {
return getImplementation().getAllAttibutes(element);
}

View File

@@ -42,7 +42,7 @@ public abstract class AbstractSoapElementTestCase extends XMLTestCase {
String value = "value";
soapElement.addAttribute(name, value);
assertEquals("Invalid attribute value", value, soapElement.getAttributeValue(name));
Iterator allAttributes = soapElement.getAllAttibutes();
Iterator allAttributes = soapElement.getAllAttributes();
assertTrue("Iterator is empty", allAttributes.hasNext());
}