Package gwlpr.database.entities

Examples of gwlpr.database.entities.Map


            Level level = character.getLevel();
            if (level != null) {
                level.getCharacterCollection().remove(character);
                level = em.merge(level);
            }
            Map lastOutpost = character.getLastOutpost();
            if (lastOutpost != null) {
                lastOutpost.getCharacterCollection().remove(character);
                lastOutpost = em.merge(lastOutpost);
            }
            Inventory equipmentPack = character.getEquipmentPack();
            if (equipmentPack != null) {
                equipmentPack.getCharacterCollection().remove(character);
View Full Code Here

TOP

Related Classes of gwlpr.database.entities.Map

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.