Package com.calclab.emite.xep.dataforms

Examples of com.calclab.emite.xep.dataforms.Reported


  }

  @Test
  public void parseReported() {
    final Form result = parse(XEP_0004_5_2_SAMPLE_8);
    final Reported reported = result.getReported();
    final List<Field> fields = reported.getFields();
    assertEquals(2, fields.size());
    assertEquals("name", fields.get(0).getVar());
    assertEquals("url", fields.get(1).getVar());
  }
View Full Code Here

TOP

Related Classes of com.calclab.emite.xep.dataforms.Reported

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.