Examples of hideDraft()


Examples of mage.client.draft.DraftPanel.hideDraft()

    public static void removeDraft(UUID draftId) {
        DraftPanel draftPanel = drafts.get(draftId);
        if (draftPanel != null) {
            drafts.remove(draftId);
            draftPanel.hideDraft();
        }       
    }

    public static void addDraft(UUID draftId, DraftPanel draftPanel) {
        drafts.put(draftId, draftPanel);
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.