Package de.kilobyte22.app.kibibyte

Examples of de.kilobyte22.app.kibibyte.Database


    public BotAccess(Kibibyte bot, Plugin plugin) {
        this.plugin = plugin;
        this.bot = bot;
        this.kibibyte = bot;

        eventBus = new EventBus(bot.eventBus);
        plugin.setEventBus(eventBus);
        eventBusLock = eventBus.new LockController();
        eventBusLock.setLockState(true); // BAM
        eventBusLock.setFrozen(true);
View Full Code Here


        return isLocked;
    }

    private void checkLock() {
        if (isLocked)
            throw new ObjectLockedException();
    }
View Full Code Here

        channel = c;
        sender = s;
        args = a;
        bot = b;
        command = cmd;
        logger = new Logger("CMD:" + cmd);
    }
View Full Code Here

        channel = c;
        sender = s;
        args = a;
        botAccess = b;
        command = cmd;
        logger = new Logger("CMD:" + cmd);
    }
View Full Code Here

        nickservSystem = bot.nickservSystem;
        commandManager = new CommandManager(bot.commandManager);
        commandManager.setEnabled(false);

        config = new Configuration(new File("config/" + plugin.getName() + ".cfg"));
        logger = new Logger("PLUGIN/" + plugin.getName());
    }
View Full Code Here

TOP

Related Classes of de.kilobyte22.app.kibibyte.Database

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.