MCPcopy Index your code
hub / github.com/BombusMod/BombusMod / query

Method query

src/main/java/xmpp/extensions/IqTimeReply.java:48–52  ·  view source on GitHub ↗
(String to)

Source from the content-addressed store, hash-verified

46 public IqTimeReply(){};
47
48 public static JabberDataBlock query(String to){
49 JabberDataBlock result=new Iq(to, Iq.TYPE_GET, "time");
50 result.addChildNs("query", "jabber:iq:time");
51 return result;
52 }
53
54 public int blockArrived(JabberDataBlock data) {
55 if (!(data instanceof Iq)) return BLOCK_REJECTED;

Callers 1

doActionMethod · 0.95

Calls 1

addChildNsMethod · 0.80

Tested by

no test coverage detected