Package de.justi.yagw2api.wrapper

Examples of de.justi.yagw2api.wrapper.IWVWObjective.capture()


          LOGGER.trace("Going to synchronize model=" + objectiveModel + " with dto=" + objectiveDTO);
        }

        // 1.1 synchronize owner
        potentialNewOwner = match.getWorldByDTOOwnerString(objectiveDTO.getOwner());
        objectiveModel.capture(potentialNewOwner.orNull());
        // 1.2 synchronize claiming guild
        claimedByGuildDTO = objectiveDTO.getGuildDetails();
        if (claimedByGuildDTO.isPresent()) {
          final IGuild guild = MODEL_FACTORY.getOrCreateGuild(claimedByGuildDTO.get().getId(), claimedByGuildDTO.get().getName(), claimedByGuildDTO.get().getTag());
          objectiveModel.claim(guild);
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.