Uses of Class
com.levelonelabs.aim.AIMBuddy

Packages that use AIMBuddy
com.levelonelabs.aim   
com.levelonelabs.aimbot   
com.levelonelabs.aimbot.modules   
 

Uses of AIMBuddy in com.levelonelabs.aim
 

Methods in com.levelonelabs.aim that return AIMBuddy
 AIMBuddy AIMSender.getBuddy(java.lang.String name)
           
 AIMBuddy AIMClient.getBuddy(java.lang.String buddyName)
          Retrieve a buddy from the list
 

Methods in com.levelonelabs.aim with parameters of type AIMBuddy
 void AIMSender.sendMessage(AIMBuddy buddy, java.lang.String text)
           
 void AIMSender.sendWarning(AIMBuddy buddy)
           
 void AIMSender.addBuddy(AIMBuddy buddy)
           
 void AIMSender.removeBuddy(AIMBuddy buddy)
           
 void AIMSender.banBuddy(AIMBuddy buddy)
           
 void AIMSender.denyBuddy(AIMBuddy buddy)
           
 void AIMSender.permitBuddy(AIMBuddy buddy)
           
 void AIMListener.handleMessage(AIMBuddy buddy, java.lang.String request)
           
 void AIMListener.handleWarning(AIMBuddy buddy, int amount)
           
 void AIMListener.handleBuddySignOn(AIMBuddy buddy, java.lang.String info)
           
 void AIMListener.handleBuddySignOff(AIMBuddy buddy, java.lang.String info)
           
 void AIMListener.handleBuddyUnavailable(AIMBuddy aimbud, java.lang.String message)
           
 void AIMListener.handleBuddyAvailable(AIMBuddy aimbud, java.lang.String message)
           
 void AIMClient.sendMessage(AIMBuddy buddy, java.lang.String text)
          Send a message to a buddy
 void AIMClient.addBuddy(AIMBuddy buddy)
          Add a single budy
 void AIMClient.removeBuddy(AIMBuddy buddy)
          Remove a single budy
 void AIMClient.sendWarning(AIMBuddy buddy)
          Warn a buddy
 void AIMClient.banBuddy(AIMBuddy buddy)
          tell aim to ignore a buddy
 void AIMClient.denyBuddy(AIMBuddy buddy)
          Add a buddy to the denied list
 void AIMClient.permitBuddy(AIMBuddy buddy)
          Add a buddy to the permitted list
 void AIMAdapter.handleMessage(AIMBuddy buddy, java.lang.String request)
           
 void AIMAdapter.handleBuddySignOn(AIMBuddy buddy, java.lang.String info)
           
 void AIMAdapter.handleBuddySignOff(AIMBuddy buddy, java.lang.String info)
           
 void AIMAdapter.handleWarning(AIMBuddy buddy, int amount)
           
 void AIMAdapter.handleBuddyUnavailable(AIMBuddy aimbud, java.lang.String message)
           
 void AIMAdapter.handleBuddyAvailable(AIMBuddy aimbud, java.lang.String message)
           
 

Uses of AIMBuddy in com.levelonelabs.aimbot
 

Methods in com.levelonelabs.aimbot that return AIMBuddy
 AIMBuddy BotModule.getBuddy(java.lang.String name)
          Convience method to call aimsender's getBuddy
 

Methods in com.levelonelabs.aimbot with parameters of type AIMBuddy
 void BotModule.addBuddy(AIMBuddy buddy)
          Convience method to call aimsender's addBuddy
 void BotModule.removeBuddy(AIMBuddy buddy)
          Convience method to call aimsender's removeBuddy
 void BotModule.denyBuddy(AIMBuddy buddy)
          Deny a buddy
 void BotModule.permitBuddy(AIMBuddy buddy)
          Permit a buddy
 void BotModule.sendMessage(AIMBuddy buddy, java.lang.String text)
          Convenience method to call aimsender's sendMessage
 void BotModule.sendWarning(AIMBuddy buddy)
          Convenience method to call aimsender's sendWarning
abstract  void BotModule.performService(AIMBuddy buddy, java.lang.String query)
          This will be called when the AIMBot gets a string starting with a keyword that this module advertised as a service.
 void AIMBot.handleMessage(AIMBuddy buddy, java.lang.String request)
          Will call the appropriate bot module to service the request.
 void AIMBot.handleWarning(AIMBuddy enemy, int amount)
          Handle being warned from others.
 

Uses of AIMBuddy in com.levelonelabs.aimbot.modules
 

Methods in com.levelonelabs.aimbot.modules with parameters of type AIMBuddy
 void WeatherModule.performService(AIMBuddy buddy, java.lang.String query)
          Return 5 deay forecast
 void UserInformationModule.performService(AIMBuddy buddy, java.lang.String query)
           
 void UserAdminModule.performService(AIMBuddy buddy, java.lang.String query)
          Perform user maintenance
 void TVListingsModule.performService(AIMBuddy buddy, java.lang.String query)
          Grab show detail, or list the providers
 void TicTacToeModule.sendMessageUnlessRobot(AIMBuddy buddy, java.lang.String message)
          sends a message unless it is to the computer
 void TicTacToeModule.performService(AIMBuddy buddy, java.lang.String query)
          Handle a tic tac toe query
 void TelnetModule.performService(AIMBuddy buddy, java.lang.String query)
          This will be called when the AIMBot gets a string starting with a keyword that this module advertised as a service.
 void StockModule.performService(AIMBuddy buddy, java.lang.String query)
           
 void SkiReportModule.performService(AIMBuddy buddy, java.lang.String query)
          Return snow report
 boolean ScheduleModule.retrieveEvents(AIMBuddy buddy)
          Grabs and sends any stored reminders for a buddy
 void ScheduleModule.performService(AIMBuddy buddy, java.lang.String query)
          Handle a messaging query
 boolean ScheduleModule.removeEvent(AIMBuddy buddy, int i)
          Remove Specific Reminder
 void ScheduleModule.clearEvents(AIMBuddy buddy)
          clear reminders for a buddy
 void ScheduleModule.addEvent(AIMBuddy buddy, long period, java.lang.String command)
          Add a reminder for a buddy
 void ScheduleModule.addEvent(AIMBuddy buddy, java.util.Date eventDate, java.lang.String command)
          Add a reminder for a buddy
 boolean ReminderModule.retrieveReminders(AIMBuddy buddy)
          Grabs and sends any stored reminders for a buddy
 void ReminderModule.performService(AIMBuddy buddy, java.lang.String query)
          Handle a messaging query
 boolean ReminderModule.removeReminder(AIMBuddy buddy, int i)
          Remove Specific Reminder
 void ReminderModule.clearReminders(AIMBuddy buddy)
          Clear reminders for a buddy
 void ReminderModule.addReminder(AIMBuddy buddy, java.lang.String reminder)
          Add a reminder for a buddy
 void PreferenceModule.performService(AIMBuddy buddy, java.lang.String query)
          Handle a preference query
 void MoviesModule.performService(AIMBuddy buddy, java.lang.String query)
          Grab the movie times (or list the theater not done)
 void MessengerModule.addMessage(AIMBuddy to, AIMBuddy from, java.lang.String message)
          Called when someone leaves a message for someone else to add the message.
 boolean MessengerModule.retrieveMessages(AIMBuddy buddy)
          Grabs and sends any stored messages for a buddy when they sign on
 void MessengerModule.performService(AIMBuddy buddy, java.lang.String query)
          Handle a messaging query
 void MegaHalModule.performService(AIMBuddy buddy, java.lang.String query)
          Create poetry
 void ListModule.performService(AIMBuddy buddy, java.lang.String query)
          Handle a list query
 void HeyuModule.performService(AIMBuddy buddy, java.lang.String query)
           
 void HeadlinesModule.performService(AIMBuddy buddy, java.lang.String query)
           
 void DefaultModule.performService(AIMBuddy buddy, java.lang.String query)
          Responds to an unknown command, or adds a term to respond with
 void BuddyManagementModule.performService(AIMBuddy buddy, java.lang.String query)
          Perform buddy maintenance
 void BabelModule.performService(AIMBuddy buddy, java.lang.String query)
          Create poetry
 



Copyright © 2001-2005 Java AIM Bot. All Rights Reserved.