Package aibo.systemextensions.core

Examples of aibo.systemextensions.core.Object


            this.object.getExtensionMessenger().getCommandSender().sendIrcCommand(new IrcCommand("AUTH",
                    String.format("%s %s", this.username, this.password)));

            if (this.setHiddenHostNeeded) {
                Object coreObject = (Object)this.object;

                this.object.getExtensionMessenger().getCommandSender().sendIrcCommand(new IrcCommand("MODE",
                        String.format("%s +x", coreObject.getCurrentNickName())));
            }

            this.authenticated = true;
        }
    }
View Full Code Here

TOP

Related Classes of aibo.systemextensions.core.Object

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.