Examples of addAll()


Examples of com.bergerkiller.bukkit.common.collections.BlockSet.addAll()

  /**
   * Re-calculates all path nodes from scratch
   */
  public static void reroute() {
    BlockSet blocks = new BlockSet();
    blocks.addAll(blockNodes.keySet());
    clearAll();
    String name;
    SignActionEvent info;
    for (BlockLocation location : blocks) {
      name = location.toString();
View Full Code Here

Examples of com.browseengine.bobo.api.BrowseResult.addAll()

                reader.moveUp();
              }
              facetMap.put(name,new MappedFacetAccessible(facets));
              reader.moveUp();
            }
            res.addAll(facetMap);
          }
        }
      }
      else if ("hits".equals(reader.getNodeName())){
        String countStr = reader.getAttribute("length");
View Full Code Here

Examples of com.carrotsearch.hppc.IntOpenHashSet.addAll()

  public IntOpenHashSet getTerminalIdSet(CTTree tree)
  {
    IntOpenHashSet set = new IntOpenHashSet();
   
    for (PBLoc loc : l_locs)
      set.addAll(tree.getNode(loc).getSubTerminalIdSet());
   
    return set;
  }
 
  /**
 
View Full Code Here

Examples of com.cburch.logisim.circuit.CircuitMutation.addAll()

        if (w0.getLength() > 0) ws.add(w0);
        if (w1.getLength() > 0) ws.add(w1);
      }
      if (ws.size() > 0) {
        CircuitMutation mutation = new CircuitMutation(canvas.getCircuit());
        mutation.addAll(ws);
        StringGetter desc;
        if (ws.size() == 1) desc = Strings.getter("addWireAction");
        else desc = Strings.getter("addWiresAction");
        Action act = mutation.toAction(desc);
        canvas.getProject().doAction(act);
View Full Code Here

Examples of com.clarkparsia.empire.annotation.runtime.ProxyAwareList.addAll()

                                aList.add(aObj);
                            }
                        }
                    }
                    else {
                        aList.addAll(Lists.newArrayList(aResults));
                    }
                }
                finally {
                    aResults.close();
                }
View Full Code Here

Examples of com.clearnlp.dependency.DEPTree.addAll()

    DEPTree tree = new DEPTree();
    DEPNode rel, aux;
   
    if (prevNodes != null)
    {
      tree.addAll(prevNodes);
      added.addAll(prevNodes);
    }
   
    verb.setHead(tree.get(0), DEPLibEn.DEP_ROOT);
    rel = setRelativizer(tree, verb, added);
View Full Code Here

Examples of com.clearnlp.util.map.Prob1DMap.addAll()

        for (j=1; j<len; j++)
          set.add(tree.get(j).lowerSimplifiedForm);
      }
     
      reader.close();
      map.addAll(set);
      LOG.debug(".");
    LOG.debug("\n");
   
    return map.toSet(xml.getDocumentFrequencyCutoff());
  }
View Full Code Here

Examples of com.compomics.util.experiment.identification.ptm.PtmtableContent.addAll()

                tempContent = PtmtableContent.getPTMTableContent(peptide, ptm, nPTM, spectrum, annotationPreferences.getIonTypes(),
                        annotationPreferences.getNeutralLosses(), annotationPreferences.getValidatedCharges(),
                        spectrumMatch.getBestPeptideAssumption().getIdentificationCharge().value,
                        annotationPreferences.getFragmentIonAccuracy(), spectrum.getIntensityLimit(annotationPreferences.getAnnotationIntensityLimit()));
                tempContent.normalize();
                tableContent.addAll(tempContent);
            } catch (Exception e) {
                peptideShakerGUI.catchException(e);
            }
        }
View Full Code Here

Examples of com.datastax.driver.core.BatchStatement.addAll()

                }
                else
                {
                    BatchStatement batch = new BatchStatement(batchType);
                    batch.setConsistencyLevel(JavaDriverClient.from(cl));
                    batch.addAll(substmts);
                    stmt = batch;
                }

                try
                {
View Full Code Here

Examples of com.dubture.getcomposer.core.collection.ComposerPackages.addAll()

    String vendor = getVendorDir();
    ComposerPackages packages = new ComposerPackages();
   
    IFile installed = project.getFile(vendor + "/composer/installed.json");
    if (installed != null && installed.exists()) {
      packages.addAll(loadInstalled(installed));
    }
   
    return packages;
  }
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.