1
0
Fork 0
mirror of https://github.com/vanitasvitae/Smack.git synced 2025-09-11 01:59:38 +02:00

Initial check-in.

git-svn-id: http://svn.igniterealtime.org/svn/repos/smack/trunk@1924 b35dd754-fafc-0310-a699-88a17e54d16e
This commit is contained in:
Matt Tucker 2003-05-08 15:53:40 +00:00 committed by mtucker
parent f5e167e067
commit cdd78ecbe6
5 changed files with 606 additions and 0 deletions

View file

@ -0,0 +1,14 @@
package org.jivesoftware.smack.packet;
/**
*
* @author Matt Tucker
*/
public interface PacketExtension {
public String getElementName();
public String getNamespace();
public String toXML();
}