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