Now an abstract class.

git-svn-id: http://svn.igniterealtime.org/svn/repos/smack/trunk@2010 b35dd754-fafc-0310-a699-88a17e54d16e
This commit is contained in:
Matt Tucker 2003-08-04 21:59:07 +00:00 committed by mtucker
parent 2aeb58b776
commit 6101d85a00
1 changed files with 2 additions and 4 deletions

View File

@ -61,7 +61,7 @@ package org.jivesoftware.smack.packet;
* *
* @author Matt Tucker * @author Matt Tucker
*/ */
public class IQ extends Packet { public abstract class IQ extends Packet {
private Type type = Type.GET; private Type type = Type.GET;
@ -125,9 +125,7 @@ public class IQ extends Packet {
* *
* @return the query section of the IQ XML. * @return the query section of the IQ XML.
*/ */
public String getChildElementXML() { public abstract String getChildElementXML();
return null;
}
/** /**
* A class to represent the type of the IQ packet. The types are: * A class to represent the type of the IQ packet. The types are: