Package com.codeforces.graygoose.web.page

Examples of com.codeforces.graygoose.web.page.ApplicationPage.addMessage()


public abstract class ApplicationFrame extends Frame {
    public void addMessage(String text, Noty.Type type) {
        Page page = ApplicationContext.getInstance().getCurrentPage();
        if (page instanceof ApplicationPage) {
            ApplicationPage applicationPage = (ApplicationPage) page;
            applicationPage.addMessage(text, type);
        }
    }
}
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.