Package com.codeforces.graygoose.misc

Examples of com.codeforces.graygoose.misc.Noty


    public boolean hasAnonymousAccess() {
        return false;
    }

    public void addMessage(String text, Noty.Type type) {
        Noty noty = new Noty();
        noty.setText(text);
        noty.setType(type);

        //noinspection unchecked
        putSession("graygoose.noty", noty);
    }
View Full Code Here

TOP

Related Classes of com.codeforces.graygoose.misc.Noty

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.