|
PPF API Version 0.6 |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectnet.sourceforge.ppf.PPFPlugin
public abstract class PPFPlugin
Field Summary | |
---|---|
protected static int |
OUTPUT_CHANNEL
Output will be sent to the channel |
protected static int |
OUTPUT_NOTICE
Output will be sent as a notice |
protected static int |
OUTPUT_PM
Output will be sent to a private message |
protected java.lang.String |
PLUGIN_ID
Plugin ID |
protected java.lang.String |
PLUGIN_VERSION
Version number of the plugin |
Constructor Summary | |
---|---|
PPFPlugin()
Constructor |
Method Summary | |
---|---|
protected boolean |
addToItemList(java.lang.String listElem,
org.jdom.Element newElement,
java.lang.String key,
java.lang.String value)
Adds a new item to the persitent list. |
protected boolean |
addToItemList(java.lang.String key,
java.lang.String value)
Adds a new item to the list in memory. |
protected int |
authLevelFromString(java.lang.String authLevel)
Figure out what the required auth level is. |
protected java.lang.String |
getAttributeFromDoc(java.lang.String path,
java.lang.String attribute)
Get an attribute from an element in the document. |
protected boolean |
getBooleanFromDoc(java.lang.String path)
Get the boolean value from a text representation. |
PPF |
getBot()
Returns the instance of PPF that this plugin has been initialised with. |
protected org.jdom.Document |
getDoc()
The JDom Document that is created when reading in the XML config. |
protected java.lang.String |
getFormattedString(java.lang.String key,
java.lang.String defaultValue)
read a string from the language ressouce bundle for the default bot language |
protected java.lang.String |
getFormattedString(java.lang.String key,
java.lang.String defaultValue,
java.lang.Object[] arguments)
read a string from the language ressouce bundle for the default bot language |
protected java.lang.String |
getFormattedString(java.lang.String language,
java.lang.String key,
java.lang.String defaultValue)
read a language dependent string (without placeholders) from the ressouce bundle |
protected java.lang.String |
getFormattedString(java.lang.String language,
java.lang.String key,
java.lang.String defaultValue,
java.lang.Object[] arguments)
read a language dependent string (with placeholders) from the associated ressource bundle |
protected java.lang.String |
getFormattedStringFor(java.lang.String sender,
java.lang.String key,
java.lang.String defaultValue)
read a string from the language ressource bundle for the language of the sender |
protected java.lang.String |
getFormattedStringFor(java.lang.String sender,
java.lang.String key,
java.lang.String defaultValue,
java.lang.Object[] arguments)
read a string from the language ressource bundle for the language of the sender |
protected java.lang.String |
getFromItemList(java.lang.String key)
Select a single item from the list by using the key. |
protected java.util.HashMap<java.lang.String,PPFHelp> |
getHelp()
Gets all of the help for this plugin. |
protected java.util.HashMap<java.lang.String,java.lang.String> |
getItemList()
Easy way to keep hold of a list of String items. |
protected java.util.List |
getListFromDoc(java.lang.String path)
Get a list of elements from the Document. |
protected PPFResourceBundle |
getPPFResourceBundle()
A resource bundle that contains all of the available language resource bundles for this plugin. |
protected java.lang.String |
getTextFromDoc(java.lang.String path)
Get text from an XML element. |
protected java.lang.String |
getUrlStr()
The location of where this plugin is running from in URL from. |
java.lang.String |
getVersion()
Gets the version of the plugin. |
protected java.lang.String |
getXMLFilename()
The filename of the XML config that is used by this plugin. |
protected void |
init(PPF ppf)
Called by the core when a plugin is loaded. |
protected boolean |
isInItemList(java.lang.String key)
Check if an item is in the list, by key. |
protected org.jdom.Document |
loadDoc(java.lang.String filename)
Loads an XML document. |
protected void |
onAction(java.lang.String sender,
java.lang.String login,
java.lang.String hostname,
java.lang.String target,
java.lang.String action)
JavaDocs for this method are from: PircBot onAction |
protected void |
onAuth(java.lang.String login,
java.lang.String channel)
Send info that login has AUTHed with the system and the channel they are in. |
protected void |
onChannelInfo(java.lang.String channel,
int userCount,
java.lang.String topic)
JavaDocs for this method are from: PircBot onChannelInfo |
protected void |
onConnect()
JavaDocs for this method are from: PircBot onConnect |
protected void |
onDeop(java.lang.String channel,
java.lang.String sourceNick,
java.lang.String sourceLogin,
java.lang.String sourceHostname,
java.lang.String recipient)
JavaDocs for this method are from: PircBot onDeop |
protected void |
onDeVoice(java.lang.String channel,
java.lang.String sourceNick,
java.lang.String sourceLogin,
java.lang.String sourceHostname,
java.lang.String recipient)
JavaDocs for this method are from: PircBot onDeVoice |
protected void |
onDisconnect()
JavaDocs for this method are from: PircBot onDisconnect |
protected void |
onFileTransferFinished(org.jibble.pircbot.DccFileTransfer transfer,
java.lang.Exception e)
JavaDocs for this method are from: PircBot onFileTransferFinished |
protected void |
onFinger(java.lang.String sourceNick,
java.lang.String sourceLogin,
java.lang.String sourceHostname,
java.lang.String target)
JavaDocs for this method are from: PircBot onFinger |
protected void |
onIncomingChatRequest(org.jibble.pircbot.DccChat chat)
JavaDocs for this method are from: PircBot onIncomingChatRequest |
protected void |
onIncomingFileTransfer(org.jibble.pircbot.DccFileTransfer transfer)
JavaDocs for this method are from: PircBot onIncomingFileTransfer |
protected void |
onInvite(java.lang.String targetNick,
java.lang.String sourceNick,
java.lang.String sourceLogin,
java.lang.String sourceHostname,
java.lang.String channel)
JavaDocs for this method are from: PircBot onInvite |
protected void |
onJoin(java.lang.String channel,
java.lang.String sender,
java.lang.String login,
java.lang.String hostname)
JavaDocs for this method are from: PircBot onJoin |
protected void |
onKick(java.lang.String channel,
java.lang.String kickerNick,
java.lang.String kickerLogin,
java.lang.String kickerHostname,
java.lang.String recipientNick,
java.lang.String reason)
JavaDocs for this method are from: PircBot onKick |
protected void |
onMessage(java.lang.String channel,
java.lang.String sender,
java.lang.String login,
java.lang.String hostname,
java.lang.String message)
JavaDocs for this method are from: PircBot onMessage |
protected void |
onMode(java.lang.String channel,
java.lang.String sourceNick,
java.lang.String sourceLogin,
java.lang.String sourceHostname,
java.lang.String mode)
JavaDocs for this method are from: PircBot onMode |
protected void |
onNickChange(java.lang.String oldNick,
java.lang.String login,
java.lang.String hostname,
java.lang.String newNick)
JavaDocs for this method are from: PircBot onNickChange |
protected void |
onNotice(java.lang.String sourceNick,
java.lang.String sourceLogin,
java.lang.String sourceHostname,
java.lang.String target,
java.lang.String notice)
JavaDocs for this method are from: PircBot onNotice |
protected void |
onOp(java.lang.String channel,
java.lang.String sourceNick,
java.lang.String sourceLogin,
java.lang.String sourceHostname,
java.lang.String recipient)
JavaDocs for this method are from: PircBot onOp |
protected void |
onPart(java.lang.String channel,
java.lang.String sender,
java.lang.String login,
java.lang.String hostname)
JavaDocs for this method are from: PircBot onPart |
protected void |
onPing(java.lang.String sourceNick,
java.lang.String sourceLogin,
java.lang.String sourceHostname,
java.lang.String target,
java.lang.String pingValue)
JavaDocs for this method are from: PircBot onPing |
protected void |
onPrivateMessage(java.lang.String sender,
java.lang.String login,
java.lang.String hostname,
java.lang.String message)
JavaDocs for this method are from: PircBot onPrivateMessage |
protected void |
onQuit(java.lang.String sourceNick,
java.lang.String sourceLogin,
java.lang.String sourceHostname,
java.lang.String reason)
JavaDocs for this method are from: PircBot onQuit |
protected void |
onRemoveChannelBan(java.lang.String channel,
java.lang.String sourceNick,
java.lang.String sourceLogin,
java.lang.String sourceHostname,
java.lang.String hostmask)
JavaDocs for this method are from: PircBot onRemoveChannelBan |
protected void |
onRemoveChannelKey(java.lang.String channel,
java.lang.String sourceNick,
java.lang.String sourceLogin,
java.lang.String sourceHostname,
java.lang.String key)
JavaDocs for this method are from: PircBot onRemoveChannelKey |
protected void |
onRemoveChannelLimit(java.lang.String channel,
java.lang.String sourceNick,
java.lang.String sourceLogin,
java.lang.String sourceHostname)
JavaDocs for this method are from: PircBot onRemoveChannelLimit |
protected void |
onRemoveInviteOnly(java.lang.String channel,
java.lang.String sourceNick,
java.lang.String sourceLogin,
java.lang.String sourceHostname)
JavaDocs for this method are from: PircBot onRemoveInviteOnly |
protected void |
onRemoveModerated(java.lang.String channel,
java.lang.String sourceNick,
java.lang.String sourceLogin,
java.lang.String sourceHostname)
JavaDocs for this method are from: PircBot onRemoveModerated |
protected void |
onRemoveNoExternalMessages(java.lang.String channel,
java.lang.String sourceNick,
java.lang.String sourceLogin,
java.lang.String sourceHostname)
JavaDocs for this method are from: PircBot onRemoveNoExternalMessages |
protected void |
onRemovePrivate(java.lang.String channel,
java.lang.String sourceNick,
java.lang.String sourceLogin,
java.lang.String sourceHostname)
JavaDocs for this method are from: PircBot onRemovePrivate |
protected void |
onRemoveSecret(java.lang.String channel,
java.lang.String sourceNick,
java.lang.String sourceLogin,
java.lang.String sourceHostname)
JavaDocs for this method are from: PircBot onRemoveSecret |
protected void |
onRemoveTopicProtection(java.lang.String channel,
java.lang.String sourceNick,
java.lang.String sourceLogin,
java.lang.String sourceHostname)
JavaDocs for this method are from: PircBot onRemoveTopicProtection |
protected void |
onServerPing(java.lang.String response)
JavaDocs for this method are from: PircBot onServerPing |
protected void |
onServerResponse(int code,
java.lang.String response)
JavaDocs for this method are from: PircBot onServerResponse |
protected void |
onSetChannelBan(java.lang.String channel,
java.lang.String sourceNick,
java.lang.String sourceLogin,
java.lang.String sourceHostname,
java.lang.String hostmask)
JavaDocs for this method are from: PircBot onSetChannelBan |
protected void |
onSetChannelKey(java.lang.String channel,
java.lang.String sourceNick,
java.lang.String sourceLogin,
java.lang.String sourceHostname,
java.lang.String key)
JavaDocs for this method are from: PircBot onSetChannelKey |
protected void |
onSetChannelLimit(java.lang.String channel,
java.lang.String sourceNick,
java.lang.String sourceLogin,
java.lang.String sourceHostname,
int limit)
JavaDocs for this method are from: PircBot onSetChannelLimit |
protected void |
onSetInviteOnly(java.lang.String channel,
java.lang.String sourceNick,
java.lang.String sourceLogin,
java.lang.String sourceHostname)
JavaDocs for this method are from: PircBot onSetInviteOnly |
protected void |
onSetModerated(java.lang.String channel,
java.lang.String sourceNick,
java.lang.String sourceLogin,
java.lang.String sourceHostname)
JavaDocs for this method are from: PircBot onSetModerated |
protected void |
onSetNoExternalMessages(java.lang.String channel,
java.lang.String sourceNick,
java.lang.String sourceLogin,
java.lang.String sourceHostname)
JavaDocs for this method are from: PircBot onSetNoExternalMessages |
protected void |
onSetPrivate(java.lang.String channel,
java.lang.String sourceNick,
java.lang.String sourceLogin,
java.lang.String sourceHostname)
JavaDocs for this method are from: PircBot onSetPrivate |
protected void |
onSetSecret(java.lang.String channel,
java.lang.String sourceNick,
java.lang.String sourceLogin,
java.lang.String sourceHostname)
JavaDocs for this method are from: PircBot onSetSecret |
protected void |
onSetTopicProtection(java.lang.String channel,
java.lang.String sourceNick,
java.lang.String sourceLogin,
java.lang.String sourceHostname)
JavaDocs for this method are from: PircBot onSetTopicProtection |
protected void |
onTime(java.lang.String sourceNick,
java.lang.String sourceLogin,
java.lang.String sourceHostname,
java.lang.String target)
JavaDocs for this method are from: PircBot onTime |
protected void |
onTopic(java.lang.String channel,
java.lang.String topic,
java.lang.String setBy,
long date,
boolean changed)
JavaDocs for this method are from: PircBot onTopic |
protected void |
onUnknown(java.lang.String line)
JavaDocs for this method are from: PircBot onUnknown |
protected void |
onUserList(java.lang.String channel,
org.jibble.pircbot.User[] users)
JavaDocs for this method are from: PircBot onUserList |
protected void |
onUserMode(java.lang.String targetNick,
java.lang.String sourceNick,
java.lang.String sourceLogin,
java.lang.String sourceHostname,
java.lang.String mode)
JavaDocs for this method are from: PircBot onUserMode |
protected void |
onVersion(java.lang.String sourceNick,
java.lang.String sourceLogin,
java.lang.String sourceHostname,
java.lang.String target)
JavaDocs for this method are from: PircBot onVersion |
protected void |
onVoice(java.lang.String channel,
java.lang.String sourceNick,
java.lang.String sourceLogin,
java.lang.String sourceHostname,
java.lang.String recipient)
JavaDocs for this method are from: PircBot onVoice |
protected int |
outputFromString(java.lang.String output)
Figure out where the output will go. |
protected void |
readProperties(java.lang.String bundleName)
Read a set of properties files in for use by this plugin. |
protected boolean |
removeFromItemList(java.lang.String childElem,
java.lang.String xPath,
java.lang.String key)
Remove an item from the persitent list. |
protected boolean |
saveDoc()
Save the currently loaded XML document. |
protected boolean |
saveDocAs(java.lang.String newFilename)
Save the currently loaded XML document to an alternate file. |
void |
sendOutput(int output,
java.lang.String channel,
java.lang.String sender,
java.lang.String message)
Sends the output to the place that was configured. |
protected void |
setHelp(java.lang.String command,
PPFHelp ppfHelp)
Adds online help information for a command in the plugin. |
protected void |
setVersion(java.lang.String thisVersion)
Set the version of the plugin. |
protected void |
unload()
Unload hook to place any clean-up code in - this is called by PPF when unloading the plugin. |
protected void |
viewItemList(java.lang.String sender)
View all items in the list. |
protected void |
viewItemList(java.lang.String sender,
int timeout)
View all items in the list. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
protected java.lang.String PLUGIN_VERSION
protected java.lang.String PLUGIN_ID
protected static final int OUTPUT_CHANNEL
protected static final int OUTPUT_PM
protected static final int OUTPUT_NOTICE
Constructor Detail |
---|
public PPFPlugin()
Method Detail |
---|
protected void init(PPF ppf)
ppf
- the bot instance used to create this pluginpublic PPF getBot()
protected void unload()
protected int outputFromString(java.lang.String output)
output
- string representation of where the output will go
public void sendOutput(int output, java.lang.String channel, java.lang.String sender, java.lang.String message)
output
- the output method, one of the plugin OUTPUT constantschannel
- the name of the channel to send tosender
- the name of the sender to send tomessage
- the message that will be sentpublic java.lang.String getVersion()
protected void setVersion(java.lang.String thisVersion)
thisVersion
- version of the pluginprotected PPFResourceBundle getPPFResourceBundle()
protected void readProperties(java.lang.String bundleName)
bundleName
- the base name of the properties to read inprotected java.lang.String getFormattedString(java.lang.String language, java.lang.String key, java.lang.String defaultValue, java.lang.Object[] arguments)
language
- ressource language to be usedkey
- key for lookup in resouce bundledefaultValue
- value to be used if key is not available in ressource bundlearguments
- arguments to put into the placeholders of the retrieved string
protected java.lang.String getFormattedString(java.lang.String language, java.lang.String key, java.lang.String defaultValue)
language
- ressource language to be usedkey
- key for lookup in resouce bundledefaultValue
- value to be used if key is not available in ressource bundle
protected java.lang.String getFormattedString(java.lang.String key, java.lang.String defaultValue)
key
- key for lookup in resouce bundledefaultValue
- value to be used if key is not available in ressource bundle
protected java.lang.String getFormattedString(java.lang.String key, java.lang.String defaultValue, java.lang.Object[] arguments)
key
- key for lookup in resouce bundledefaultValue
- value to be used if key is not available in ressource bundle
protected java.lang.String getFormattedStringFor(java.lang.String sender, java.lang.String key, java.lang.String defaultValue, java.lang.Object[] arguments)
sender
- user for whom the language ressource shall be selectedkey
- key for lookup in resouce bundledefaultValue
- value to be used if key is not available in ressource bundlearguments
- arguments to put into the placeholders of the retrieved string
protected java.lang.String getFormattedStringFor(java.lang.String sender, java.lang.String key, java.lang.String defaultValue)
sender
- user for whom the language ressource shall be selectedkey
- key for lookup in resouce bundledefaultValue
- value to be used if key is not available in ressource bundle
protected org.jdom.Document getDoc()
protected java.lang.String getUrlStr()
protected java.lang.String getXMLFilename()
protected org.jdom.Document loadDoc(java.lang.String filename)
filename
- the XML document to load
protected boolean saveDoc()
protected boolean saveDocAs(java.lang.String newFilename)
protected java.lang.String getTextFromDoc(java.lang.String path)
path
- the path to the element containing the text
protected java.util.List getListFromDoc(java.lang.String path)
path
- the path to the element containing the list
protected boolean getBooleanFromDoc(java.lang.String path)
path
- the path to the element containing the text
protected java.lang.String getAttributeFromDoc(java.lang.String path, java.lang.String attribute)
path
- the path to the element containing the attributeattribute
- the attribute to get the text from
protected void setHelp(java.lang.String command, PPFHelp ppfHelp)
command
- the command to associate the help withppfHelp
- the help text for the commandprotected java.util.HashMap<java.lang.String,PPFHelp> getHelp()
protected java.util.HashMap<java.lang.String,java.lang.String> getItemList()
protected java.lang.String getFromItemList(java.lang.String key)
key
- to search for
protected boolean isInItemList(java.lang.String key)
key
- to check for
protected boolean addToItemList(java.lang.String key, java.lang.String value)
key
- to use for adding the itemvalue
- item to add to the list
protected boolean addToItemList(java.lang.String listElem, org.jdom.Element newElement, java.lang.String key, java.lang.String value)
listElem
- name of the list elementnewElement
- new element to addkey
- to use for adding the itemvalue
- item to add to the list
protected boolean removeFromItemList(java.lang.String childElem, java.lang.String xPath, java.lang.String key)
childElem
- name of the list elementxPath
- path to the elementkey
- key of the item to be removed
protected void viewItemList(java.lang.String sender)
sender
- the person to create a DCC chat session withprotected void viewItemList(java.lang.String sender, int timeout)
sender
- the person to create a DCC chat session withtimeout
- how long to wait for an answer before giving upprotected int authLevelFromString(java.lang.String authLevel)
authLevel
- string representation of the auth level
protected void onAuth(java.lang.String login, java.lang.String channel)
login
- the login that just AUTHedchannel
- the channel thatprotected void onAction(java.lang.String sender, java.lang.String login, java.lang.String hostname, java.lang.String target, java.lang.String action)
protected void onChannelInfo(java.lang.String channel, int userCount, java.lang.String topic)
protected void onConnect()
protected void onDeop(java.lang.String channel, java.lang.String sourceNick, java.lang.String sourceLogin, java.lang.String sourceHostname, java.lang.String recipient)
protected void onDeVoice(java.lang.String channel, java.lang.String sourceNick, java.lang.String sourceLogin, java.lang.String sourceHostname, java.lang.String recipient)
protected void onDisconnect()
protected void onFileTransferFinished(org.jibble.pircbot.DccFileTransfer transfer, java.lang.Exception e)
protected void onFinger(java.lang.String sourceNick, java.lang.String sourceLogin, java.lang.String sourceHostname, java.lang.String target)
protected void onIncomingChatRequest(org.jibble.pircbot.DccChat chat)
protected void onIncomingFileTransfer(org.jibble.pircbot.DccFileTransfer transfer)
protected void onInvite(java.lang.String targetNick, java.lang.String sourceNick, java.lang.String sourceLogin, java.lang.String sourceHostname, java.lang.String channel)
protected void onJoin(java.lang.String channel, java.lang.String sender, java.lang.String login, java.lang.String hostname)
protected void onKick(java.lang.String channel, java.lang.String kickerNick, java.lang.String kickerLogin, java.lang.String kickerHostname, java.lang.String recipientNick, java.lang.String reason)
protected void onMessage(java.lang.String channel, java.lang.String sender, java.lang.String login, java.lang.String hostname, java.lang.String message)
protected void onMode(java.lang.String channel, java.lang.String sourceNick, java.lang.String sourceLogin, java.lang.String sourceHostname, java.lang.String mode)
protected void onNickChange(java.lang.String oldNick, java.lang.String login, java.lang.String hostname, java.lang.String newNick)
protected void onNotice(java.lang.String sourceNick, java.lang.String sourceLogin, java.lang.String sourceHostname, java.lang.String target, java.lang.String notice)
protected void onOp(java.lang.String channel, java.lang.String sourceNick, java.lang.String sourceLogin, java.lang.String sourceHostname, java.lang.String recipient)
protected void onPart(java.lang.String channel, java.lang.String sender, java.lang.String login, java.lang.String hostname)
protected void onPing(java.lang.String sourceNick, java.lang.String sourceLogin, java.lang.String sourceHostname, java.lang.String target, java.lang.String pingValue)
protected void onPrivateMessage(java.lang.String sender, java.lang.String login, java.lang.String hostname, java.lang.String message)
protected void onQuit(java.lang.String sourceNick, java.lang.String sourceLogin, java.lang.String sourceHostname, java.lang.String reason)
protected void onRemoveChannelBan(java.lang.String channel, java.lang.String sourceNick, java.lang.String sourceLogin, java.lang.String sourceHostname, java.lang.String hostmask)
protected void onRemoveChannelKey(java.lang.String channel, java.lang.String sourceNick, java.lang.String sourceLogin, java.lang.String sourceHostname, java.lang.String key)
protected void onRemoveChannelLimit(java.lang.String channel, java.lang.String sourceNick, java.lang.String sourceLogin, java.lang.String sourceHostname)
protected void onRemoveInviteOnly(java.lang.String channel, java.lang.String sourceNick, java.lang.String sourceLogin, java.lang.String sourceHostname)
protected void onRemoveModerated(java.lang.String channel, java.lang.String sourceNick, java.lang.String sourceLogin, java.lang.String sourceHostname)
protected void onRemoveNoExternalMessages(java.lang.String channel, java.lang.String sourceNick, java.lang.String sourceLogin, java.lang.String sourceHostname)
protected void onRemovePrivate(java.lang.String channel, java.lang.String sourceNick, java.lang.String sourceLogin, java.lang.String sourceHostname)
protected void onRemoveSecret(java.lang.String channel, java.lang.String sourceNick, java.lang.String sourceLogin, java.lang.String sourceHostname)
protected void onRemoveTopicProtection(java.lang.String channel, java.lang.String sourceNick, java.lang.String sourceLogin, java.lang.String sourceHostname)
protected void onServerPing(java.lang.String response)
protected void onServerResponse(int code, java.lang.String response)
protected void onSetChannelBan(java.lang.String channel, java.lang.String sourceNick, java.lang.String sourceLogin, java.lang.String sourceHostname, java.lang.String hostmask)
protected void onSetChannelKey(java.lang.String channel, java.lang.String sourceNick, java.lang.String sourceLogin, java.lang.String sourceHostname, java.lang.String key)
protected void onSetChannelLimit(java.lang.String channel, java.lang.String sourceNick, java.lang.String sourceLogin, java.lang.String sourceHostname, int limit)
protected void onSetInviteOnly(java.lang.String channel, java.lang.String sourceNick, java.lang.String sourceLogin, java.lang.String sourceHostname)
protected void onSetModerated(java.lang.String channel, java.lang.String sourceNick, java.lang.String sourceLogin, java.lang.String sourceHostname)
protected void onSetNoExternalMessages(java.lang.String channel, java.lang.String sourceNick, java.lang.String sourceLogin, java.lang.String sourceHostname)
protected void onSetPrivate(java.lang.String channel, java.lang.String sourceNick, java.lang.String sourceLogin, java.lang.String sourceHostname)
protected void onSetSecret(java.lang.String channel, java.lang.String sourceNick, java.lang.String sourceLogin, java.lang.String sourceHostname)
protected void onSetTopicProtection(java.lang.String channel, java.lang.String sourceNick, java.lang.String sourceLogin, java.lang.String sourceHostname)
protected void onTime(java.lang.String sourceNick, java.lang.String sourceLogin, java.lang.String sourceHostname, java.lang.String target)
protected void onTopic(java.lang.String channel, java.lang.String topic, java.lang.String setBy, long date, boolean changed)
protected void onUnknown(java.lang.String line)
protected void onUserList(java.lang.String channel, org.jibble.pircbot.User[] users)
protected void onUserMode(java.lang.String targetNick, java.lang.String sourceNick, java.lang.String sourceLogin, java.lang.String sourceHostname, java.lang.String mode)
protected void onVersion(java.lang.String sourceNick, java.lang.String sourceLogin, java.lang.String sourceHostname, java.lang.String target)
protected void onVoice(java.lang.String channel, java.lang.String sourceNick, java.lang.String sourceLogin, java.lang.String sourceHostname, java.lang.String recipient)
|
PPF API Version 0.6 |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
PircBot Plugin Framework API 0.6
© 2003-2004 DeadEd e.a.
ppf.sourceforge.net