ABLE 2.0.0 07/02/2003 10:25:01

Uses of Class
com.ibm.able.AbleEvent

Packages that use AbleEvent
com.ibm.able The com.ibm.able package provides core interfaces and base classes to construct local and remote AbleBeans and AbleAgents. 
com.ibm.able.agents The AGENTS package provides a set of agents extending AbleDefaultAgent which contain AbleBean components. 
com.ibm.able.autotune AutoTune is an agent-based approach to automated tuning that does not require prior knowledge of the controlled system that is being tuned. 
com.ibm.able.beans The BEANS package provides a set of interfaces and objects which implement components ranging from simple file i/o to intelligent learning algorithms. 
com.ibm.able.beans.decisiontree The Decision Tree package is used to develop rules for classifying objects. 
com.ibm.able.beans.knn The knn package contains the k Nearest Neighbors (k-NN) learning algorithm  for classifying objects. 
com.ibm.able.conversation The com.ibm.able.conversation contains classes for conversation management in ABLE. 
com.ibm.able.editor The EDITOR package provides a set of objects that implement a GUI development environment for constructing hybrid intelligent agents using AbleBeans and AbleAgents as components. 
com.ibm.able.examples Sample beans and agents are loaded from the ableexamples.jar file and placed on the Samples palette when the Able Agent Editor starts. 
com.ibm.able.examples.ablebean SimpleAbleBean - How to create a custom AbleBean 
com.ibm.able.platform The com.ibm.able.platform package provides a set of classes that allows a distributed platform consisting of platform services and agents to be configured and run across physical systems. 
com.ibm.able.rules The rules package defines the ABLE rule language; various inferencing engines; objects and APIs for creating and running rulesets under program control. 
 

Uses of AbleEvent in com.ibm.able
 

Methods in com.ibm.able that return AbleEvent
 AbleEvent AbleEventQueue.getEvent()
          Remove and return the very next event waiting on the queue.
 AbleEvent AbleEventQueue.peekEvent()
          Return the very next event waiting on the queue, but leave that event on the queue for further processing.
 

Methods in com.ibm.able with parameters of type AbleEvent
 void AbleEventQueue.postEvent(AbleEvent theEvent)
          Place an event on the queue for future processing, but only if event posting is enabled.
 void AbleEventListenerRemoteManager.notifyAbleEventListeners(AbleEvent theEvent)
          Notify all registered listeners by sending the specified event.
 void AbleObject.notifyAbleEventListeners(AbleEvent theEvent)
          Notify all registered listeners by sending the specified event via their implemented AbleEventListener.handleAbleEvent(AbleEvent) method.
 void AbleObject.handleAbleEvent(AbleEvent theAbleEvent)
           
 void AbleObject.processAbleEvent(AbleEvent theAbleEvent)
          Processes an Able event synchronously; that is, on the same thread as the caller.
 void AbleEventListener.handleAbleEvent(AbleEvent theAbleEvent)
          Handles an Able event.
 void AbleDefaultAgent.handleAbleEvent(AbleEvent theAbleEvent)
          Handles an Able event.
 void AbleEventQueueProcessor.processAbleEvent(AbleEvent theAbleEvent)
          Processes an Able event synchronously; that is, on the same thread as the caller.
 void AbleEventListenerManager.notifyAbleEventListeners(AbleEvent theEvent)
          Notify all registered listeners by sending the specified event.
 void AbleRemoteEventListenerRemoteManager.notifyAbleRemoteEventListeners(AbleEvent theEvent)
          Notify all registered listeners by sending the specified event.
 void AbleRemoteEventListener.handleAbleEvent(AbleEvent theAbleEvent)
          Handles an Able event.
 

Uses of AbleEvent in com.ibm.able.agents
 

Methods in com.ibm.able.agents with parameters of type AbleEvent
 void AbleRuleAgent.processAbleEvent(AbleEvent theAbleEvent)
           
 

Uses of AbleEvent in com.ibm.able.autotune
 

Methods in com.ibm.able.autotune with parameters of type AbleEvent
 void TestAutotuneAdaptorCustomizer.handleAbleEvent(AbleEvent theEvent)
          The customizer listens for AbleEvents issued by its member import bean.
 void AutotuneAgent.processAbleEvent(AbleEvent theAbleEvent)
          Process an Able event synchronously; that is, on the same thread as the caller.
 

Uses of AbleEvent in com.ibm.able.beans
 

Methods in com.ibm.able.beans with parameters of type AbleEvent
 void AbleAbstractImport.processAbleEvent(AbleEvent e)
          Process an AbleEvent sent by another Able bean.
 void AbleDBExport.processAbleEvent(AbleEvent theEvent)
          Extract the argument object from an AbleEvent and output it to the data file.
 void AbleNetworkGraphicView.handleAbleEvent(AbleEvent theAbleEvent)
           
 void AbleTraceTextView.handleAbleEvent(AbleEvent theAbleEvent)
           
 void AbleExport.processAbleEvent(AbleEvent theEvent)
          Extract the argument object from an AbleEvent and output it to the data file.
 void AbleClusterDiagramView.handleAbleEvent(AbleEvent theAbleEvent)
           
 void AbleDataSetPanel.handleAbleEvent(AbleEvent e)
           
 

Uses of AbleEvent in com.ibm.able.beans.decisiontree
 

Methods in com.ibm.able.beans.decisiontree with parameters of type AbleEvent
 void AbleDecisionTree.handleAbleEvent(AbleEvent theEvent)
           
 

Uses of AbleEvent in com.ibm.able.beans.knn
 

Methods in com.ibm.able.beans.knn with parameters of type AbleEvent
 void AbleKnnClassifierAgent.handleAbleEvent(AbleEvent theAbleEvent)
          Handle an Able event.
 void AbleDecisionTreeClassifierAgent.handleAbleEvent(AbleEvent theAbleEvent)
          Handle an Able event.
 void JasKnnDistributedAgent.handleAbleEvent(AbleEvent theAbleEvent)
          Handle an Able event.
 void JasNaiveBayesDistributedAgent.handleAbleEvent(AbleEvent theAbleEvent)
          Handle an Able event.
 void AbleNaiveBayesClassifierAgent.handleAbleEvent(AbleEvent theAbleEvent)
          Handle an Able event.
 

Uses of AbleEvent in com.ibm.able.conversation
 

Methods in com.ibm.able.conversation with parameters of type AbleEvent
 void SimpleConversationManager.handleAbleEvent(AbleEvent theAbleEvent)
          From AbleBean -- overriden here for testing.
 void SimpleConversationManager.processAbleEvent(AbleEvent theAbleEvent)
          From AbleBean -- overriden here for testing.
 

Uses of AbleEvent in com.ibm.able.editor
 

Methods in com.ibm.able.editor with parameters of type AbleEvent
 void AbleInspector.handleAbleEvent(AbleEvent theAbleEvent)
           
 

Uses of AbleEvent in com.ibm.able.examples
 

Methods in com.ibm.able.examples with parameters of type AbleEvent
 void AbleBeanWrapper.handleAbleEvent(AbleEvent theEvent)
          Process an AbleEvent sent by another Able bean.
 void AbleBeanWrapper.processAbleEvent(AbleEvent theEvent)
          Process an AbleEvent sent by another Able bean.
 

Uses of AbleEvent in com.ibm.able.examples.ablebean
 

Methods in com.ibm.able.examples.ablebean with parameters of type AbleEvent
 void SimpleAbleApp.processAbleEvent(AbleEvent e)
          Display changes when agent modifies its output buffer.
 void SimpleAbleApp.handleAbleEvent(AbleEvent e)
          Process an Able event.
 

Uses of AbleEvent in com.ibm.able.platform
 

Methods in com.ibm.able.platform with parameters of type AbleEvent
 void AblePersistenceSupport.processAbleEvent(AbleEvent theAbleEvent)
           
 

Uses of AbleEvent in com.ibm.able.rules
 

Methods in com.ibm.able.rules with parameters of type AbleEvent
 void AbleRuleSet.processAbleEvent(AbleEvent theAbleEvent)
          Process an Able event synchronously; that is, on the same thread as the caller.
 void AbleVariableTextView.handleAbleEvent(AbleEvent theAbleEvent)
           
 


ABLE 2.0.0 07/02/2003 10:25:01

(C) Copyright IBM Corporation 1999, 2003