Package com.forgeessentials.data.api

Examples of com.forgeessentials.data.api.ClassContainer


        {
            OutputHandler.sendMessage(receiver, EnumChatFormatting.GREEN + "--- Your mail ---");
            for (Mail mail : map.get(receiver.getPersistentID()))
            {
                OutputHandler.sendMessage(receiver, EnumChatFormatting.GREEN + "{" + mail.getSender() + "} " + EnumChatFormatting.WHITE + mail.getMessage());
                DataStorageManager.getReccomendedDriver().deleteObject(new ClassContainer(Mail.class), mail.getKey());
            }
            OutputHandler.sendMessage(receiver, EnumChatFormatting.GREEN + "--- End of mail ---");
        }
    }
View Full Code Here

TOP

Related Classes of com.forgeessentials.data.api.ClassContainer

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.