Package com.mcbans.firestar.mcbans.request

Examples of com.mcbans.firestar.mcbans.request.BanLookupRequest


        if (banID < 0 || callback == null){
            plugin.getLog().info("Invalid usage (null): lookupBan");
            return;
        }

        BanLookupRequest request = new BanLookupRequest(plugin, callback, banID);
        Thread triggerThread = new Thread(request);
        triggerThread.start();
    }
View Full Code Here


            Util.message(sender, _("formatError"));
            return;
        }

        // Start
        BanLookupRequest request = new BanLookupRequest(plugin, new BanLookupCallback(plugin, sender), Integer.parseInt(target));
        Thread triggerThread = new Thread(request);
        triggerThread.start();
    }
View Full Code Here

TOP

Related Classes of com.mcbans.firestar.mcbans.request.BanLookupRequest

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.