Examples of addAll()


Examples of com.jcloisterzone.action.MeepleAction.addAll()

            return;
        }
        MeepleAction phantomAction = new MeepleAction(Phantom.class);
        List actions = Collections.singletonList(phantomAction);
        Set<FeaturePointer> followerLocations = game.prepareFollowerLocations();
        phantomAction.addAll(followerLocations);

        if (towerCap != null) {
            towerCap.prepareTowerFollowerDeploy(actions);
        }
        if (flierCap != null) {
View Full Code Here

Examples of com.jgaap.util.EventBagging.addAll()

        EventBagging eventBag = authorBags.get(knownDocument.getAuthor());
        if (eventBag == null) {
          eventBag = new EventBagging(eventSet);
          authorBags.put(knownDocument.getAuthor(), eventBag);
        } else {
          eventBag.addAll(eventSet);
        }
      }
    }
    int samples = getParameter("samples", 5);
    int sampleSize = getParameter("sampleSize", 500);
View Full Code Here

Examples of com.jgoodies.binding.list.ArrayListModel.addAll()

          Map<String, Object> parameters = new HashMap<String, Object>();
          parameters.put("ugland_adresse", uglandAddress);
          parameters.put("ugland_fax", uglandFax);

          ArrayListModel list = new ArrayListModel();
          list.addAll(externalOrder.getExternalOrderLines());
          reportViewer.generateProtransReport(
              new FaxTableModel(list), "Fax", ReportEnum.FAX,
              parameters);
          window.pack();
          window.setSize(new Dimension(850, 700));
View Full Code Here

Examples of com.kellerkindt.scs.interfaces.ShopHandler.addAll()

               
                ShowCaseStandalone.slog(Level.INFO, "Remove all shops from storage.");
                sh.removeAll();
               
                ShowCaseStandalone.slog(Level.INFO, "Add backuped shops.");
                sh.addAll(shops);

                ShowCaseStandalone.slog(Level.INFO, "Saving all currently loaded shops.");
                storage.save(sh);
               
      } catch (Exception ioe) {
View Full Code Here

Examples of com.linkedin.data.DataList.addAll()

        assertTrue(o == null || exc instanceof ClassCastException);
        assertTrue(o != null || exc instanceof NullPointerException);
      }

      badDataList.clear();
      badDataList.addAll(badOutput);
      badWrappedArrayTemplate = DataTemplateUtil.wrap(badDataList, schema, templateClass);

      // Get returns bad
      for (int i = 0; i < badWrappedArrayTemplate.size(); ++i)
      {
View Full Code Here

Examples of com.linkedin.restli.restspec.ActionSchemaArray.addAll()

    // get all actions into a single ActionSchemaArray
    int resourceActionsSize = resourceActions == null ? 0 : resourceActions.size();
    int entityActionsSize = entityActions == null ? 0 : entityActions.size();
    ActionSchemaArray allActionSchema = new ActionSchemaArray(resourceActionsSize + entityActionsSize);
    allActionSchema.addAll(resourceActions == null ? new ActionSchemaArray() : resourceActions);
    allActionSchema.addAll(entityActions == null ? new ActionSchemaArray() : entityActions);

    String returnName = "value";

    for(ActionSchema actionSchema : allActionSchema)
View Full Code Here

Examples of com.linkedin.restli.tools.compatibility.CompatibilityInfoMap.addAll()

    }

    final ResourceCompatibilityChecker checker = new ResourceCompatibilityChecker(prevSnapshot.getResourceSchema(), prevResolver,
                                                                                  currSnapshot.getResourceSchema(), currResolver);
    checker.check(compatLevel);
    infoMap.addAll(checker.getInfoMap());

    return infoMap;
  }

  private static String listCompatLevelOptions()
View Full Code Here

Examples of com.meapsoft.Heap.addAll()

        Heap chunks = null;
        if(reverseSort)
            chunks = new MaxHeap(dist);
        else
            chunks = new MinHeap(dist);
        chunks.addAll(featFile.chunks);
       
        NumberFormat fmt = NumberFormat.getInstance();
        fmt.setMaximumFractionDigits(3);
       
        double currTime = 0;
View Full Code Here

Examples of com.meapsoft.MinHeap.addAll()

       
        dist.setTarget(currChunk);
       
        // maintain a set of chunks sorted using dist from targetChunk
        MinHeap chunks = new MinHeap(dist);
        chunks.addAll(featFile.chunks);
       
        MaxHeap chunks2 = new MaxHeap(500);
       
        NumberFormat fmt = NumberFormat.getInstance();
        fmt.setMaximumFractionDigits(3);
View Full Code Here

Examples of com.mongodb.BasicDBList.addAll()

            result.put("fullyQualifiedClassName", className);
           
            List     packageComponents   = new BasicDBList();
            String[] packageAndClassName = className.split("\\.");
           
            packageComponents.addAll(Arrays.asList(packageAndClassName));
            // Requires Java 6
            //packageComponents.addAll(Arrays.asList(Arrays.copyOf(packageAndClassName, packageAndClassName.length - 1)));
           
            if (packageComponents.size() > 0)
            {
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.