Package project.gluebooster.basics.structure.math

Examples of project.gluebooster.basics.structure.math.Pair



  private DefaultMutableTreeNode createNode(Doc doc)
  {
    //System.out.println("handle " + doc.name());
    Pair pair = new Pair();
    pair.setFirst(doc);
    pair.setSecond(new ArrayList<String>());
   
    DefaultMutableTreeNode node = new DefaultMutableTreeNode(pair);
    doc2node.put(doc, node);
    return node;
  }
View Full Code Here

TOP

Related Classes of project.gluebooster.basics.structure.math.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.