Package org.jostraca.util

Examples of org.jostraca.util.Pair


  // test methods

  public void testHasValue() throws Exception {
    String a = "a";
    String b = "b";
    Pair p = new Pair( "a", "b" );
    assertEquals( "a", p.getFirst() );
    assertEquals( "b", p.getSecond() );
  }
View Full Code Here

TOP

Related Classes of org.jostraca.util.Pair

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.