Package org.xbill.DNS

Examples of org.xbill.DNS.RRset.first()


  m_rs.addRR(m_s2);

  RRset rs2 = new RRset( m_rs );

  assertEquals(2, rs2.size());
  assertEquals(m_a1, rs2.first());
  Iterator itr = rs2.rrs();
  assertEquals(m_a1, itr.next());
  assertEquals(m_a2, itr.next());
  assertFalse(itr.hasNext());
 
View Full Code Here


  m_rs.addRR(m_s2);

  RRset rs2 = new RRset( m_rs );

  assertEquals(2, rs2.size());
  assertEquals(m_a1, rs2.first());
  Iterator itr = rs2.rrs();
  assertEquals(m_a1, itr.next());
  assertEquals(m_a2, itr.next());
  assertFalse(itr.hasNext());
 
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.