mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-11-05 03:35:59 +01:00
e977c349a8
also fix stanzas.md
512 B
512 B
PacketExtension
The static from(Packet)
Method
Every PacketExtension class must have a static from()
method that retrieves that extension for a given Stanza (if any).
Sample Code
public static RSMSet from(Packet) {
return packet.getExtension(ELEMENT, NAMESPACE);
}
Sometimes certain PacketExtension's are only found in one stanza type, in that case, specify the parameter type. For example public static CarbonExtension getFrom(Message)
.