Package com.sk89q.mclauncher.util.PastebinPoster

Examples of com.sk89q.mclauncher.util.PastebinPoster.PasteCallback


    private void pastebinLog() {
        String text = messageLog.getPastableText();
        messageLog.log(_("console.paste.uploading", text.length()) + "\n",
                messageLog.asHighlighted());

        PastebinPoster.paste(text, new PasteCallback() {
            @Override
            public void handleSuccess(String url) {
                messageLog.log(_("console.paste.uploaded", url) +
                        "\n", messageLog.asHighlighted());
                SwingHelper.openURL(url, messageLog);
View Full Code Here

TOP

Related Classes of com.sk89q.mclauncher.util.PastebinPoster.PasteCallback

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.