Examples of IWorld


Examples of de.justi.yagw2api.wrapper.IWorld

    private void setupOwner(IWVWMatch match, IWVWMap map, IWVWMatchDTO matchDTO, IWVWMapDTO mapDTO) {
      checkNotNull(match);
      checkNotNull(map);
      checkNotNull(matchDTO);
      Optional<IWVWObjective> objective;
      IWorld owner;
      for (IWVWObjectiveDTO objectiveDTO : mapDTO.getObjectives()) {
        if (objectiveDTO.getOwner() != null) {
          owner = match.getWorldByDTOOwnerString(objectiveDTO.getOwner()).get();
          objective = map.getByObjectiveId(objectiveDTO.getId());
          checkState(objective.isPresent());
View Full Code Here

Examples of de.justi.yagw2api.wrapper.IWorld

  @Override
  public boolean equals(Object obj) {
    if ((obj == null) || !(obj instanceof IWorld)) {
      return false;
    } else {
      final IWorld world = (IWorld) obj;
      return Objects.equal(this.id, world.getId());
    }
  }
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.