FileDocCategorySizeDatePackage
Detail.javaAPI DocApache Axis 1.41928Sat Apr 22 18:57:28 BST 2006org.apache.axis.message

Detail

public class Detail extends SOAPFaultElement implements Detail
Detail Container implementation
author
Davanum Srinivas (dims@yahoo.com)

Fields Summary
Constructors Summary
public Detail()

    
Methods Summary
public javax.xml.soap.DetailEntryaddDetailEntry(javax.xml.soap.Name name)
Creates a new DetailEntry object with the given name and adds it to this Detail object.

param
name a Name object identifying the new DetailEntry object
return
DetailEntry.
throws
SOAPException thrown when there is a problem in adding a DetailEntry object to this Detail object.

        org.apache.axis.message.DetailEntry entry = new org.apache.axis.message.DetailEntry(name);
        addChildElement(entry);
        return entry;
    
public java.util.IteratorgetDetailEntries()
Gets a list of the detail entries in this Detail object.

return
an Iterator object over the DetailEntry objects in this Detail object

        return this.getChildElements();