(String to, String id )
| 50 | public class IqVCard implements JabberBlockListener |
| 51 | { |
| 52 | public static JabberDataBlock query(String to, String id ) { |
| 53 | Iq result = new Iq (to, Iq.TYPE_GET, id ); |
| 54 | result.addChildNs("vCard", VCard.NS_VCARD ); |
| 55 | return result; |
| 56 | } |
| 57 | |
| 58 | public int blockArrived(JabberDataBlock data) { |
| 59 | if( data instanceof Iq ) { |
no test coverage detected