A B C D E F G I K L N O P R S T U V

A

AbstractCommand<ResultType,MessageType> - Class in org.keridwen.core.messaging
This class provides default implementations for methods common to most Commands.
AbstractCommand(String, String, boolean, boolean, boolean, boolean) - Constructor for class org.keridwen.core.messaging.AbstractCommand
Builds a command with the given label, description and control properties.
AbstractCommand(String, String, boolean, boolean, boolean, boolean, CommandLogLevel) - Constructor for class org.keridwen.core.messaging.AbstractCommand
Builds a command with the given label, description and control properties.
AbstractCommandScheme<U extends Serializable,V extends Serializable> - Class in org.keridwen.core.messaging.internal
A AbstractCommandScheme contains a list of Commands to be executed and the Scheme describing how to do it.
AbstractCommandScheme() - Constructor for class org.keridwen.core.messaging.internal.AbstractCommandScheme
 
actionPerformed(ActionEvent) - Method in class org.keridwen.core.messaging.ViewEvent
 
addConditionListener(ConditionListener) - Method in interface org.keridwen.core.messaging.Condition
Adds a ConditionListener to the Condition.
addConditionListener(ConditionListener) - Method in class org.keridwen.core.messaging.internal.DefaultCondition
 
addControllableListener(ControllableListener) - Method in class org.keridwen.core.messaging.AbstractCommand
 
addControllableListener(ControllableListener) - Method in class org.keridwen.core.messaging.internal.DefaultSupervisor
 
addProgressableListener(ProgressableListener) - Method in class org.keridwen.core.messaging.AbstractCommand
 
addProgressableListener(ProgressableListener) - Method in class org.keridwen.core.messaging.internal.DefaultSupervisor
 

B

BundleController - Interface in org.keridwen.core.messaging
This interface defines the methods to be implemented by an BundleController.

C

checkPreConditions() - Method in class org.keridwen.core.messaging.AbstractCommand
 
checkPreConditions() - Method in interface org.keridwen.core.messaging.Command
Check that the Command preconditions are fulfilled.
clean() - Method in interface org.keridwen.core.messaging.BundleController
Removes all registered Events/Commands associations.
clean() - Method in class org.keridwen.core.messaging.DefaultBundleController
 
clean() - Method in interface org.keridwen.core.messaging.EventDispatcher
Removes all registered BundleControllers and EventDispatchers.
clean() - Method in class org.keridwen.core.messaging.internal.CoreEventDispatcher
 
clearControllableListener() - Method in class org.keridwen.core.messaging.AbstractCommand
 
clearControllableListener() - Method in class org.keridwen.core.messaging.internal.DefaultSupervisor
 
clearProgressableListener() - Method in class org.keridwen.core.messaging.AbstractCommand
 
clearProgressableListener() - Method in class org.keridwen.core.messaging.internal.DefaultSupervisor
 
Command<ResultType,MessageType> - Interface in org.keridwen.core.messaging
A Command represents and encapsultes the business logic to be executed upon reception of a specific Event.
CommandException - Exception in org.keridwen.core.messaging
This class defines the exceptions thrown by Commands when failing.
CommandException(Throwable) - Constructor for exception org.keridwen.core.messaging.CommandException
Constructs a new exception with the specified cause and a detail message of (cause==null ?
CommandException(String, Throwable) - Constructor for exception org.keridwen.core.messaging.CommandException
Constructs a new exception with the specified detail message and cause.
CommandException(String) - Constructor for exception org.keridwen.core.messaging.CommandException
Constructs a new exception with the specified detail message.
CommandException() - Constructor for exception org.keridwen.core.messaging.CommandException
Constructs a new exception with null as its detail message.
CommandFactory - Class in org.keridwen.core.messaging.internal
 
CommandLogLevel - Enum in org.keridwen.core.messaging
Define the various levels of verbosity in the logging system.
compose(Command<IntermediateMessageType, MessageType>, Command<ReturnType, IntermediateMessageType>) - Static method in class org.keridwen.core.messaging.internal.CommandFactory
Return the composition of two Commands.
Condition - Interface in org.keridwen.core.messaging
A Condition encapsulates one condition of validity of a data packet.
ConditionListener - Interface in org.keridwen.core.messaging
A ConditionListener observes the changes of a Condition.
containsEventKey(EventKey) - Method in interface org.keridwen.core.messaging.BundleController
Checks whether the given key is registered in the controller.
containsEventKey(EventKey) - Method in class org.keridwen.core.messaging.DefaultBundleController
 
CoreEventDispatcher - Class in org.keridwen.core.messaging.internal
This class provides a default implementation of an EventDispatcher.
CoreEventKeys - Interface in org.keridwen.core.messaging.internal
This enumeration lists all the event keys that Keridwen core can emit.

D

DefaultBundleController - Class in org.keridwen.core.messaging
This abstract class defines the default behaviour of a BundleController.
DefaultBundleController(DataModel, DataModel) - Constructor for class org.keridwen.core.messaging.DefaultBundleController
Creates a bundle controller for the given application data model and bundle data model.
DefaultCondition - Class in org.keridwen.core.messaging.internal
This is the default implementation of the Condition interface.
DefaultCondition() - Constructor for class org.keridwen.core.messaging.internal.DefaultCondition
Default constructor.
DefaultEvent<ResultType,MessageType> - Class in org.keridwen.core.messaging.internal
This is the default implementation of the Event interface.
DefaultEvent(EventKey, MessageType) - Constructor for class org.keridwen.core.messaging.internal.DefaultEvent
Builds an Event with the given unique EventKey and a message to transport.
DefaultEvent(EventKey, MessageType, Object) - Constructor for class org.keridwen.core.messaging.internal.DefaultEvent
Builds an Event with the given unique EventKey and a message to transport.
DefaultEvent(EventKey, MessageType, Object, BundleController) - Constructor for class org.keridwen.core.messaging.internal.DefaultEvent
Builds an Event with the given unique EventKey and a message to transport.
DefaultEventKey<ReturnType,MessageType> - Class in org.keridwen.core.messaging
Default event.
DefaultEventKey(Class<? extends Command<ReturnType, MessageType>>) - Constructor for class org.keridwen.core.messaging.DefaultEventKey
 
DefaultEventKey(String, Class<? extends Command<ReturnType, MessageType>>) - Constructor for class org.keridwen.core.messaging.DefaultEventKey
 
DefaultSupervisor<ReturnType> - Class in org.keridwen.core.messaging.internal
A DefaultSupervisor controls and monitors a Command.
DefaultSupervisor(Future<ReturnType>, Command<ReturnType, ?>) - Constructor for class org.keridwen.core.messaging.internal.DefaultSupervisor
Builds a command Supervisor for the given command.
DispatcherListener - Interface in org.keridwen.core.messaging
 

E

Event<ResultType,MessageType> - Interface in org.keridwen.core.messaging
This interface defines a Keridwen Event.
event(EventKey, MessageType) - Static method in class org.keridwen.core.messaging.EventBuilder
Builds an Event with the given key and message.
event(String, MessageType) - Static method in class org.keridwen.core.messaging.EventBuilder
 
event(Event) - Static method in class org.keridwen.core.messaging.EventBuilder
Initializes the builder with the given event.
EventBuilder - Class in org.keridwen.core.messaging
An EventBuilder is a helper class used to create and trigger Events.
eventDispatched(Supervisor<?>) - Method in interface org.keridwen.core.messaging.DispatcherListener
 
EventDispatcher - Interface in org.keridwen.core.messaging
An EventDispatcher is a class that dispatches the Events raised by the application modules to the registred BundleControllers.
EventKey - Interface in org.keridwen.core.messaging
An EventKey is the unique ID of an event.
execute(MessageType) - Method in class org.keridwen.core.messaging.AbstractCommand
 
execute(MessageType) - Method in interface org.keridwen.core.messaging.Command
Executes the Command's logic with a given message.
execute(V) - Method in class org.keridwen.core.messaging.internal.AbstractCommandScheme
 
execute(V) - Method in class org.keridwen.core.messaging.internal.ParallelScheme
 
execute(V) - Method in class org.keridwen.core.messaging.internal.SequenceScheme
 
execute(V) - Method in interface org.keridwen.core.messaging.Scheme
Executes the given list of Commands with the given Event.

F

flatten(Future<Future<T>>) - Static method in class org.keridwen.core.messaging.internal.FutureUtils
Converts a Future of Future in a simple Future.
FutureUtils - Class in org.keridwen.core.messaging.internal
Helper class that convert a Future of Future in Future.

G

get(long, TimeUnit) - Method in class org.keridwen.core.messaging.internal.DefaultSupervisor
 
get() - Method in class org.keridwen.core.messaging.internal.DefaultSupervisor
 
get(long, TimeUnit) - Method in interface org.keridwen.core.messaging.Supervisor
Waits if necessary for at most the given time for the computation to complete, and then retrieves its result, if available.
get() - Method in interface org.keridwen.core.messaging.Supervisor
Waits if necessary for the computation to complete, and then retrieves its result.
getApplicationModel() - Method in class org.keridwen.core.messaging.AbstractCommand
 
getApplicationModel() - Method in interface org.keridwen.core.messaging.BundleController
Gets the data model of the application.
getApplicationModel() - Method in interface org.keridwen.core.messaging.Command
Gets the data model of the application.
getApplicationModel() - Method in class org.keridwen.core.messaging.DefaultBundleController
 
getBundleModel() - Method in class org.keridwen.core.messaging.AbstractCommand
 
getBundleModel() - Method in interface org.keridwen.core.messaging.BundleController
Gets the data model of the bundle.
getBundleModel() - Method in interface org.keridwen.core.messaging.Command
Gets the data model of the bundle.
getBundleModel() - Method in class org.keridwen.core.messaging.DefaultBundleController
 
getCommand() - Method in class org.keridwen.core.messaging.DefaultEventKey
 
getCommandDescription() - Method in class org.keridwen.core.messaging.internal.DefaultSupervisor
 
getCommandDescription() - Method in interface org.keridwen.core.messaging.Supervisor
Returns the localized Command description.
getCommandForEvent(Event<ReturnType, MessageType>) - Method in interface org.keridwen.core.messaging.BundleController
Gets the Command (if any) associated with the given Event.
getCommandForEvent(Event<ReturnType, MessageType>) - Method in class org.keridwen.core.messaging.DefaultBundleController
 
getCommandLabel() - Method in class org.keridwen.core.messaging.internal.DefaultSupervisor
 
getCommandLabel() - Method in interface org.keridwen.core.messaging.Supervisor
Returns the localized Command name.
getCommandsList() - Method in class org.keridwen.core.messaging.internal.ParallelScheme
 
getCommandsList() - Method in class org.keridwen.core.messaging.internal.SequenceScheme
 
getCommandsList() - Method in interface org.keridwen.core.messaging.Scheme
Gets the list of Commands managed by the scheme.
getDescription() - Method in class org.keridwen.core.messaging.AbstractCommand
 
getDescription() - Method in interface org.keridwen.core.messaging.Command
Returns the localized Command description.
getDestination() - Method in interface org.keridwen.core.messaging.Event
Gets the BundleController to which this Event should be sent (if known).
getDestination() - Method in class org.keridwen.core.messaging.internal.DefaultEvent
 
getDestination() - Method in class org.keridwen.core.messaging.ViewEvent
 
getEvent() - Method in class org.keridwen.core.messaging.ViewEvent
 
getId() - Method in class org.keridwen.core.messaging.DefaultEventKey
 
getId() - Method in interface org.keridwen.core.messaging.EventKey
 
getId() - Static method in class org.keridwen.core.messaging.internal.IdGenerator
 
getInstance() - Static method in class org.keridwen.core.messaging.EventBuilder
Gets the unique instance of the class.
getInstance() - Static method in class org.keridwen.core.messaging.internal.CoreEventDispatcher
Returns the singleton instance of the event dispatcher.
getKey() - Method in interface org.keridwen.core.messaging.Event
Returns the unique EventKey of this Event.
getKey() - Method in class org.keridwen.core.messaging.internal.DefaultEvent
 
getKey() - Method in class org.keridwen.core.messaging.ViewEvent
 
getLabel() - Method in class org.keridwen.core.messaging.AbstractCommand
 
getLabel() - Method in interface org.keridwen.core.messaging.Command
Returns the localized Command name.
getLogLevel() - Method in class org.keridwen.core.messaging.AbstractCommand
 
getLogLevel() - Method in interface org.keridwen.core.messaging.Command
Gets the verbosity level at which this command should be logged.
getMessage() - Method in interface org.keridwen.core.messaging.Event
Gets the message transmitted with by the Event.
getMessage() - Method in class org.keridwen.core.messaging.internal.DefaultEvent
 
getMessage() - Method in class org.keridwen.core.messaging.ViewEvent
 
getProgress() - Method in class org.keridwen.core.messaging.AbstractCommand
 
getProgress() - Method in class org.keridwen.core.messaging.internal.DefaultSupervisor
 
getScheme() - Method in class org.keridwen.core.messaging.internal.AbstractCommandScheme
Gets the Scheme of the CommandScheme.
getSource() - Method in interface org.keridwen.core.messaging.Event
Gets the sender of the Event.
getSource() - Method in class org.keridwen.core.messaging.internal.DefaultEvent
 
getSource() - Method in class org.keridwen.core.messaging.ViewEvent
 
getState() - Method in class org.keridwen.core.messaging.AbstractCommand
 
getState() - Method in class org.keridwen.core.messaging.internal.DefaultSupervisor
 
getSupervisor() - Method in interface org.keridwen.core.messaging.Event
Gets the supervisor of the associated Command.
getSupervisor() - Method in class org.keridwen.core.messaging.internal.DefaultEvent
 
getSupervisor() - Method in class org.keridwen.core.messaging.ViewEvent
 
getValidationCommands() - Method in interface org.keridwen.core.messaging.Condition
Gets the list of Commands that validate the Condition.
getValidationCommands() - Method in class org.keridwen.core.messaging.internal.DefaultCondition
 

I

IdGenerator - Class in org.keridwen.core.messaging.internal
 
IdGenerator() - Constructor for class org.keridwen.core.messaging.internal.IdGenerator
 
interrupt() - Method in class org.keridwen.core.messaging.AbstractCommand
 
interrupt() - Method in class org.keridwen.core.messaging.internal.DefaultSupervisor
 
isDetermined() - Method in class org.keridwen.core.messaging.AbstractCommand
 
isDetermined() - Method in class org.keridwen.core.messaging.internal.DefaultSupervisor
 
isEventRegistered() - Method in class org.keridwen.core.messaging.EventBuilder
 
isEventRegistered(Event<?, ?>) - Method in interface org.keridwen.core.messaging.EventDispatcher
 
isEventRegistered(Event<?, ?>) - Method in class org.keridwen.core.messaging.internal.CoreEventDispatcher
 
isInterrupted() - Method in class org.keridwen.core.messaging.AbstractCommand
 
isInterrupted() - Method in class org.keridwen.core.messaging.internal.DefaultSupervisor
 
isInterruptible() - Method in class org.keridwen.core.messaging.AbstractCommand
 
isInterruptible() - Method in class org.keridwen.core.messaging.internal.DefaultSupervisor
 
isPausable() - Method in class org.keridwen.core.messaging.AbstractCommand
 
isPausable() - Method in class org.keridwen.core.messaging.internal.DefaultSupervisor
 
isUndoable() - Method in class org.keridwen.core.messaging.AbstractCommand
 
isUndoable() - Method in interface org.keridwen.core.messaging.Command
Checks whether the Command can be undone by the user.
isValid() - Method in interface org.keridwen.core.messaging.Condition
Indicates if the Condition is fulfilled or not.
isValid() - Method in class org.keridwen.core.messaging.internal.DefaultCondition
 

K

killCommand() - Method in class org.keridwen.core.messaging.internal.DefaultSupervisor
 
killCommand() - Method in interface org.keridwen.core.messaging.Supervisor
 

L

log(Logger, String) - Method in enum org.keridwen.core.messaging.CommandLogLevel
 

N

notifyProgressChanged(int) - Method in class org.keridwen.core.messaging.AbstractCommand
Method called when the command progress has changed.
notifyStatusChanged(ControllableState) - Method in class org.keridwen.core.messaging.AbstractCommand
Method called when the command status has changed.

O

org.keridwen.core.messaging - package org.keridwen.core.messaging
Project : Keridwen Copyright : Artenum SARL, 24 rue Louis Blanc 75010, Paris, France 2010.
org.keridwen.core.messaging.internal - package org.keridwen.core.messaging.internal
 
org_keridwen_core_exit - Static variable in interface org.keridwen.core.messaging.internal.CoreEventKeys
 
org_keridwen_core_save - Static variable in interface org.keridwen.core.messaging.internal.CoreEventKeys
 

P

ParallelScheme<U extends Serializable,V extends Serializable> - Class in org.keridwen.core.messaging.internal
A ParallelScheme executes a list of Commands in parallel.
ParallelScheme() - Constructor for class org.keridwen.core.messaging.internal.ParallelScheme
Default constructor.
pause() - Method in class org.keridwen.core.messaging.AbstractCommand
 
pause() - Method in class org.keridwen.core.messaging.internal.DefaultSupervisor
 

R

registerBundle(BundleController) - Method in interface org.keridwen.core.messaging.EventDispatcher
Registers the given BundleController to be called on Event dispatch.
registerBundle(BundleController) - Method in class org.keridwen.core.messaging.internal.CoreEventDispatcher
 
registerEvent(DefaultEventKey<?, ?>...) - Method in interface org.keridwen.core.messaging.BundleController
Registers the given EventKey array.
registerEvent(String, Class<? extends Command<?, ?>>) - Method in interface org.keridwen.core.messaging.BundleController
 
registerEvent(DefaultEventKey<?, ?>...) - Method in class org.keridwen.core.messaging.DefaultBundleController
 
registerEvent(String, Class<? extends Command<?, ?>>) - Method in class org.keridwen.core.messaging.DefaultBundleController
 
registerEventDispatcher(EventDispatcher) - Method in interface org.keridwen.core.messaging.EventDispatcher
Registers the given EventDispatcher to be called on Event dispatch.
registerEventDispatcher(EventDispatcher) - Method in class org.keridwen.core.messaging.internal.CoreEventDispatcher
 
registerValidationCommand(Class<? extends Command<?, ?>>) - Method in interface org.keridwen.core.messaging.Condition
Registers a Command that validates the Condition.
registerValidationCommand(Class<? extends Command<?, ?>>) - Method in class org.keridwen.core.messaging.internal.DefaultCondition
 
removeConditionListener(ConditionListener) - Method in interface org.keridwen.core.messaging.Condition
Removes the given ConditionListener that observes the Condition.
removeConditionListener(ConditionListener) - Method in class org.keridwen.core.messaging.internal.DefaultCondition
 
removeControllableListener(ControllableListener) - Method in class org.keridwen.core.messaging.AbstractCommand
 
removeControllableListener(ControllableListener) - Method in class org.keridwen.core.messaging.internal.DefaultSupervisor
 
removeProgressableListener(ProgressableListener) - Method in class org.keridwen.core.messaging.AbstractCommand
 
removeProgressableListener(ProgressableListener) - Method in class org.keridwen.core.messaging.internal.DefaultSupervisor
 
resume() - Method in class org.keridwen.core.messaging.AbstractCommand
 
resume() - Method in class org.keridwen.core.messaging.internal.DefaultSupervisor
 
run(MessageType) - Method in class org.keridwen.core.messaging.AbstractCommand
This method is the concrete business implementation of what the command should do.
runAfterDelay(Command<ReturnType, MessageType>, MessageType, long, TimeUnit) - Method in interface org.keridwen.core.messaging.BundleController
Runs the given Command after the given delay.
runAfterDelay(Command<ReturnType, MessageType>, MessageType, long, TimeUnit) - Method in class org.keridwen.core.messaging.DefaultBundleController
 
runAsynchronously(Command<ReturnType, MessageType>, MessageType) - Method in interface org.keridwen.core.messaging.BundleController
Runs the given Command asynchronously.
runAsynchronously(Command<ReturnType, MessageType>, MessageType, int) - Method in interface org.keridwen.core.messaging.BundleController
 
runAsynchronously(Command<ReturnType, MessageType>, MessageType) - Method in class org.keridwen.core.messaging.DefaultBundleController
 
runAsynchronously(Command<ReturnType, MessageType>, MessageType, int) - Method in class org.keridwen.core.messaging.DefaultBundleController
 
runAtFixedRate(Command<ReturnType, MessageType>, MessageType, long, long, TimeUnit) - Method in interface org.keridwen.core.messaging.BundleController
Runs the gievn Command after the given delay and at a given period.
runAtFixedRate(Command<ReturnType, MessageType>, MessageType, long, long, TimeUnit) - Method in class org.keridwen.core.messaging.DefaultBundleController
 
runOnCondition(Command<ReturnType, MessageType>, MessageType, Condition) - Method in interface org.keridwen.core.messaging.BundleController
Runs the given Command as soon as the Condition becomes valid.
runOnCondition(Command<ReturnType, MessageType>, MessageType, Condition) - Method in class org.keridwen.core.messaging.DefaultBundleController
 
runWithFixedDelay(Command<ReturnType, MessageType>, MessageType, long, long, TimeUnit) - Method in interface org.keridwen.core.messaging.BundleController
Runs the given Command after the given delay with the given delay between two executions.
runWithFixedDelay(Command<ReturnType, MessageType>, MessageType, long, long, TimeUnit) - Method in class org.keridwen.core.messaging.DefaultBundleController
 

S

Scheme<U,V> - Interface in org.keridwen.core.messaging
A Scheme describes how a list of Commands has to be executed.
SequenceScheme<U,V> - Class in org.keridwen.core.messaging.internal
A sequential scheme is a scheme that executes a series of Command sequentially (i.e. in the same thread).
SequenceScheme() - Constructor for class org.keridwen.core.messaging.internal.SequenceScheme
Default constructor.
SerializableEvent<ResultType extends Serializable,MessageType extends Serializable> - Interface in org.keridwen.core.messaging
 
setCommandStatus(ControllableState) - Method in class org.keridwen.core.messaging.AbstractCommand
Sets the command status to the provided value and notifies the listeners.
setDispatcher(EventDispatcher) - Method in class org.keridwen.core.messaging.EventBuilder
Method used to set a different event dispatcher than the default one.
setMessage(MessageType) - Method in interface org.keridwen.core.messaging.Event
Sets the message of the Event.
setMessage(MessageType) - Method in class org.keridwen.core.messaging.internal.DefaultEvent
 
setMessage(MessageType) - Method in class org.keridwen.core.messaging.ViewEvent
 
setModels(DataModel, DataModel) - Method in class org.keridwen.core.messaging.AbstractCommand
 
setModels(DataModel, DataModel) - Method in interface org.keridwen.core.messaging.Command
Initializes the models of that the command can access.
setProgress(int) - Method in class org.keridwen.core.messaging.AbstractCommand
Updates the value of the command progress and warns the listeners.
setSupervisor(Supervisor<ResultType>) - Method in interface org.keridwen.core.messaging.Event
Sets the supervisor of the associated Command.
setSupervisor(Supervisor<ResultType>) - Method in class org.keridwen.core.messaging.internal.DefaultEvent
 
setSupervisor(Supervisor<ResultType>) - Method in class org.keridwen.core.messaging.ViewEvent
 
setValid(boolean) - Method in interface org.keridwen.core.messaging.Condition
Sets the Condition validity.
setValid(boolean) - Method in class org.keridwen.core.messaging.internal.DefaultCondition
 
Supervisor<ReturnType> - Interface in org.keridwen.core.messaging
A Supervisor allows to monitor and control a Command.

T

terminate() - Method in interface org.keridwen.core.messaging.BundleController
Terminates all threads running in the controller.
terminate() - Method in class org.keridwen.core.messaging.DefaultBundleController
 
terminate() - Method in interface org.keridwen.core.messaging.EventDispatcher
Terminates all threads running in the registred controllers.
terminate() - Method in class org.keridwen.core.messaging.internal.CoreEventDispatcher
 
toString() - Method in class org.keridwen.core.messaging.DefaultEventKey
 
triggerCallEvent() - Method in class org.keridwen.core.messaging.EventBuilder
Triggers the event synchronously.
triggerChangeEvent(Condition) - Method in class org.keridwen.core.messaging.EventBuilder
Triggers the event as soon as the change Condition becomes true.
triggerChangeEvent(Event<ReturnType, ?>, Condition) - Method in interface org.keridwen.core.messaging.EventDispatcher
Triggers the given Event that will trigger the command execution as soon as the change Condition becomes true.
triggerChangeEvent(Event<ReturnType, ?>, Condition) - Method in class org.keridwen.core.messaging.internal.CoreEventDispatcher
 
triggerEvent(Event<ReturnType, ?>) - Method in interface org.keridwen.core.messaging.EventDispatcher
Triggers the given Event asynchronously.
triggerEvent(Event<ReturnType, ?>, int) - Method in interface org.keridwen.core.messaging.EventDispatcher
 
triggerEvent(Event<ReturnType, ?>) - Method in class org.keridwen.core.messaging.internal.CoreEventDispatcher
 
triggerEvent(Event<ReturnType, ?>, int) - Method in class org.keridwen.core.messaging.internal.CoreEventDispatcher
 
triggerSignalEvent() - Method in class org.keridwen.core.messaging.EventBuilder
Triggers the event asynchronously.
triggerSignalEvent(int) - Method in class org.keridwen.core.messaging.EventBuilder
 
triggerTimeEvent(long, TimeUnit) - Method in class org.keridwen.core.messaging.EventBuilder
Triggers the event after the given delay.
triggerTimeEvent(Event<ReturnType, ?>, long, TimeUnit) - Method in interface org.keridwen.core.messaging.EventDispatcher
Triggers the given Event after the given delay.
triggerTimeEvent(Event<ReturnType, ?>, long, TimeUnit) - Method in class org.keridwen.core.messaging.internal.CoreEventDispatcher
 
triggerTimeEventAtFixedDelay(long, long, TimeUnit) - Method in class org.keridwen.core.messaging.EventBuilder
Triggers the event after the given delay with the given delay between two executions.
triggerTimeEventAtFixedRate(long, long, TimeUnit) - Method in class org.keridwen.core.messaging.EventBuilder
Triggers the event after the given delay and at a given period.
triggerTimeEventAtFixedRate(Event<ReturnType, ?>, long, long, TimeUnit) - Method in interface org.keridwen.core.messaging.EventDispatcher
Triggers the given Event after the given delay and at a given period.
triggerTimeEventAtFixedRate(Event<ReturnType, ?>, long, long, TimeUnit) - Method in class org.keridwen.core.messaging.internal.CoreEventDispatcher
 
triggerTimeEventWithFixedDelay(Event<ReturnType, ?>, long, long, TimeUnit) - Method in interface org.keridwen.core.messaging.EventDispatcher
Triggers the given Event after the given delay with the given delay between two executions.
triggerTimeEventWithFixedDelay(Event<ReturnType, ?>, long, long, TimeUnit) - Method in class org.keridwen.core.messaging.internal.CoreEventDispatcher
 

U

undo() - Method in class org.keridwen.core.messaging.AbstractCommand
 
undo() - Method in interface org.keridwen.core.messaging.Command
Undo the Command actions.
unregisterBundle(BundleController) - Method in interface org.keridwen.core.messaging.EventDispatcher
Unregisters the given BundleController.
unregisterBundle(BundleController) - Method in class org.keridwen.core.messaging.internal.CoreEventDispatcher
 
unregisterEvent(EventKey...) - Method in interface org.keridwen.core.messaging.BundleController
Unregisters the Command associated to the given EventKeys.
unregisterEvent(EventKey...) - Method in class org.keridwen.core.messaging.DefaultBundleController
 
unregisterEventDispatcher(EventDispatcher) - Method in interface org.keridwen.core.messaging.EventDispatcher
Unregisters the given EventDispatcher.
unregisterEventDispatcher(EventDispatcher) - Method in class org.keridwen.core.messaging.internal.CoreEventDispatcher
 
unregisterValidationCommand(Class<? extends Command<?, ?>>) - Method in interface org.keridwen.core.messaging.Condition
Unregisters the given Command from the list of Commands able to validate the Condition.
unregisterValidationCommand(Class<? extends Command<?, ?>>) - Method in class org.keridwen.core.messaging.internal.DefaultCondition
 

V

validatePostConditions() - Method in class org.keridwen.core.messaging.AbstractCommand
 
validatePostConditions() - Method in interface org.keridwen.core.messaging.Command
Sets all postconditions to true if they have been validated by the Command.
validityChanged(Condition, boolean) - Method in interface org.keridwen.core.messaging.ConditionListener
Method called when the validity of a Condition has changed.
validityChanged(Condition, boolean) - Method in class org.keridwen.core.messaging.DefaultBundleController
 
valueOf(String) - Static method in enum org.keridwen.core.messaging.CommandLogLevel
Returns the enum constant of this type with the specified name.
values() - Static method in enum org.keridwen.core.messaging.CommandLogLevel
Returns an array containing the constants of this enum type, in the order they are declared.
ViewEvent<ResultType,MessageType> - Class in org.keridwen.core.messaging
 
ViewEvent(EventKey, MessageType) - Constructor for class org.keridwen.core.messaging.ViewEvent
 
ViewEvent(EventKey, MessageType, String, Icon, String) - Constructor for class org.keridwen.core.messaging.ViewEvent
 

A B C D E F G I K L N O P R S T U V

Copyright © 2010-2013 Artenum. All Rights Reserved.