mirror of
https://codeberg.org/Mercury-IM/Smack
synced 2024-11-22 22:32:06 +01:00
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:
parent
2aeb58b776
commit
6101d85a00
1 changed files with 2 additions and 4 deletions
|
@ -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:
|
||||||
|
|
Loading…
Reference in a new issue