Uses of Class
org.xmpp.packet.PacketExtension

Packages that use PacketExtension
org.xmpp.forms   
org.xmpp.packet   
 

Uses of PacketExtension in org.xmpp.forms
 

Subclasses of PacketExtension in org.xmpp.forms
 class DataForm
          Represents a form that could be use for gathering data as well as for reporting data returned from a search.
 

Uses of PacketExtension in org.xmpp.packet
 

Fields in org.xmpp.packet with type parameters of type PacketExtension
protected static java.util.Map<org.dom4j.QName,java.lang.Class<? extends PacketExtension>> PacketExtension.registeredExtensions
          Subclasses of PacketExtension should register the element name and namespace that the subclass is using.
 

Methods in org.xmpp.packet that return PacketExtension
 PacketExtension PacketExtension.createCopy()
          Creates a deep copy of this packet extension.
 PacketExtension IQ.getExtension(java.lang.String name, java.lang.String namespace)
          Returns a PacketExtension on the first element found in this packet's child element for the specified name and namespace or null if none was found.
 PacketExtension Packet.getExtension(java.lang.String name, java.lang.String namespace)
          Returns a PacketExtension on the first element found in this packet for the specified name and namespace or null if none was found.
 

Methods in org.xmpp.packet that return types with arguments of type PacketExtension
static java.lang.Class<? extends PacketExtension> PacketExtension.getExtensionClass(java.lang.String name, java.lang.String namespace)
          Returns the extension class to use for the specified element name and namespace.
 

Methods in org.xmpp.packet with parameters of type PacketExtension
 void IQ.addExtension(PacketExtension extension)
          Adds the element contained in the PacketExtension to the child element of the IQ packet.
 void Packet.addExtension(PacketExtension extension)
          Adds the element contained in the PacketExtension to the element of this packet.