Uses of Class
org.xmpp.packet.PacketExtension
-
Packages that use PacketExtension Package Description org.xmpp.forms org.xmpp.packet -
-
Uses of PacketExtension in org.xmpp.forms
Subclasses of PacketExtension in org.xmpp.forms Modifier and Type Class Description classDataFormRepresents 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 Modifier and Type Field Description protected static Map<org.dom4j.QName,Class<? extends PacketExtension>>PacketExtension. registeredExtensionsSubclasses of PacketExtension should register the element name and namespace that the subclass is using.Methods in org.xmpp.packet that return PacketExtension Modifier and Type Method Description PacketExtensionPacketExtension. createCopy()Creates a deep copy of this packet extension.PacketExtensionIQ. getExtension(String name, String namespace)Returns aPacketExtensionon the first element found in this packet's child element for the specifiednameandnamespaceornullif none was found.PacketExtensionPacket. getExtension(String name, String namespace)Returns aPacketExtensionon the first element found in this packet for the specifiednameandnamespaceornullif none was found.Methods in org.xmpp.packet that return types with arguments of type PacketExtension Modifier and Type Method Description static Class<? extends PacketExtension>PacketExtension. getExtensionClass(String name, 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 Modifier and Type Method Description voidIQ. addExtension(PacketExtension extension)Adds the element contained in the PacketExtension to the child element of the IQ packet.voidPacket. addExtension(PacketExtension extension)Adds the element contained in the PacketExtension to the element of this packet.
-