Updated javadocs.

git-svn-id: http://svn.igniterealtime.org/svn/repos/smack/trunk@1935 b35dd754-fafc-0310-a699-88a17e54d16e
This commit is contained in:
Matt Tucker 2003-05-12 16:14:19 +00:00 committed by mtucker
parent 6e6e1a71b1
commit 20edd46b16
1 changed files with 5 additions and 5 deletions

View File

@ -65,11 +65,11 @@ import org.xmlpull.v1.XmlPullParser;
public interface IQProvider {
/**
* Parse the IQ sub-document and create an IQ instance. Each IQ must have a single
* sub-element At
* the beginning of the method call, the xml parser will be positioned directly
* after the opening <query> tag of the IQ packet. At the end of the method call,
* the parser <b>must</b> be positioned directly after the closing &lt;query/&gt; tag.
* Parse the IQ sub-document and create an IQ instance. Each IQ must have a
* single child element. At the beginning of the method call, the xml parser
* will be positioned at the opening tag of the IQ child element. At the end
* of the method call, the parser <b>must</b> be positioned on the closing tag
* of the child element.
*
* @param parser an XML parser.
* @return a new IQ instance.