Documentation for classes includes syntax, usage information, and code samples for methods, properties, and event handlers and listeners for those APIs that belong to a specific class in ActionScript. The classes are listed alphabetically. If you are not sure to which class a certain method or property belongs, you can look it up in the Index.


 ClassPackageDescription
 AbstractCommand
com.bourre.commands AbstractCommand provides a skeleton for commands which might work within plugin's FrontController.
 AbstractDisplayLoader
com.bourre.ioc.assembler.displayobject.loader Default implementation of display loader object.
 AbstractIterationCommand
com.bourre.commands AbstractIterationCommand provides a skeleton for concret IterationCommand implementations.
 AbstractLoader
com.bourre.load The AbstractLoader class gives abstract implementation of a loader object.
 AbstractLocator
com.bourre.core The AbstractLocator class gives an abstract implementation for Locator objects.
 AbstractModel
com.bourre.model Abstract implementation of Model part of the MVC implementation.
 AbstractMultiTween
com.bourre.transitions The AbstractMultiTween class allow tweening of many object properties at the same time.
 AbstractParser
com.bourre.ioc.parser Abstract implementation for IoC xml node parsers.
 AbstractPlugin
com.bourre.plugin Abstract implementation of Plugin.
 AbstractService
com.bourre.service The AbstractService class implements basic Service interface.
 AbstractServiceProxy
com.bourre.remoting The AbstractServiceProxy class.
 AbstractSyncCommand
com.bourre.commands AbstractSyncCommand provides a skeleton to create asynchronous stateless commands.
 AbstractTween
com.bourre.transitions The AbstractTween class.
 AbstractView
com.bourre.view Abstract implementation of View part of the MVC implementation.
 Accessor
com.bourre.core The Accessor interface defines common rules to create abstract access to properties or methods of an object.
 AccessorComposer
com.bourre.core The AccessorComposer interface defines common rules to create abstract access to properties or methods of an object.
 AccessorFactory
com.bourre.core A factory for Accessor and AccessorComposer creation.
 AdvancedTween
com.bourre.transitions The AdvancedTween interface extends Tween and add the support for event dispatching.
 AirLoggerLayout
com.bourre.utils The AirLoggerLayout class provides a convenient way to output messages through AirLogger console.
 ApplicationAssembler
com.bourre.ioc.assembler The ApplicationAssembler defines rules for concrete assembler implementations.
 ApplicationBroadcaster
com.bourre.events The ApplicationBroadcaster class is a singleton implementation of the ChannelBroadcaster class, used for Inversion of Controls purpose.
 ApplicationLoader
com.bourre.ioc.load IoC Context loader.
 ApplicationLoaderEvent
com.bourre.ioc.load 
 ApplicationLoaderListener
com.bourre.ioc.load Application loader listener implementation.
 ArgumentCallbackFactory
com.bourre.events The ArgumentCallbackFactory class.
 ArrayIterator
com.bourre.collection The ArrayIterator class provides a convenient way to iterate through each entry of an Array instance as you could do with a List instance.
 ASyncBatch
com.bourre.commands An asynchronous batch behave as a normal batch, but is designed to handle asynchronous commands.
 ASyncCommand
com.bourre.commands An asynchronous command is a runnable command, which is not terminated at the end of the execute call, for example a remoting request, or a file loading.
 ASyncCommandListener
com.bourre.commands Interface for objects which want to be notified of the end of execution of an asynchronous command.
 ASyncCommandSequencer
com.bourre.commands The AsyncCommandSequencer manage ASyncCommand execution list.
 ASyncCommandSequencerListener
com.bourre.commands The ASyncCommandSequencerListener interface defines rules for ASyncCommandSequencer listeners.
 ASyncQueue
com.bourre.commands An asynchronous queue behave as the asynchronous batch, but use the event dispatch by a sub-command to pass it in the execute method of the next sub-command.
 AttributeAsPropertyProcessor
com.bourre.ioc.context.processor Transforms node attributes value to IoC property node.
 BasicEvent
com.bourre.events The BasicEvent class adds the ability for developpers to change the type and the target of an event after its creation.
 BasicFaultEvent
com.bourre.remoting.events The BasicFaultEvent class represents the event object passed to the event listener for ServiceResponder events.
 BasicResultEvent
com.bourre.remoting.events The BasicResultEvent class represents the event object passed to the event listener for ServiceResponder events.
 BasicStringifier
com.bourre.log The BasicStringifier class allow to get full classpath class of an object as his string representation.
 Batch
com.bourre.commands Batch object encapsulate a set of Commands to execute at the same time.
 BeanEvent
com.bourre.ioc.bean The BeanEvent class represents the event object passed to the event listener for BeanFactory events.
 BeanFactory
com.bourre.ioc.bean Bean factory manager.
 BeanFactoryListener
com.bourre.ioc.bean All bean factory listeners must implement this iterface.
 BeanUtils
com.bourre.ioc.bean Some IoC bean util methods.
 BooleanEvent
com.bourre.events An event object which carry a boolean value.
 Broadcaster
com.bourre.events The Broadcaster interface.
 BuildArray
com.bourre.ioc.control Command to build Array object.
 BuildBoolean
com.bourre.ioc.control Command to build Boolean object.
 BuildClass
com.bourre.ioc.control Command to build Class object.
 BuildDictionary
com.bourre.ioc.control Command to build Dictionnay object.
 BuildFactory
com.bourre.ioc.control The BuildFactory class store command to build objects of different types.
 BuildFunction
com.bourre.ioc.control Command to build Function object.
 BuildInstance
com.bourre.ioc.control Command to build dynamic instance.
 BuildInt
com.bourre.ioc.control Command to build int object.
 BuildNull
com.bourre.ioc.control Command to build null object.
 BuildNumber
com.bourre.ioc.control Command to build null object.
 BuildObject
com.bourre.ioc.control Command to build custom object.
 BuildRef
com.bourre.ioc.control Command to build object using reference identifier store into Constructor parameter.
 BuildString
com.bourre.ioc.control Command to build String object.
 BuildUint
com.bourre.ioc.control Command to build uint object.
 BuildXML
com.bourre.ioc.control Command to build XML object.
 Cancelable
com.bourre.commands Cancelable defines rules for Runnable implementations whose instances process could be cancelled.
 CarTaker
com.bourre.pattern.memento CarTaker is the class used to store states of an object and to redo and undo state of the object
 ChannelBroadcaster
com.bourre.events The ChannelBroadcaster is a macro broadcaster which offer to dispatch events over communication channels.
 ChannelExpert
com.bourre.plugin The ChannelExpert class is a repository for EventChannel object.
 ChannelListener
com.bourre.ioc.assembler.channel The ChannelListener class store information about communication channel defined in the xml context file.
 ChannelListenerEvent
com.bourre.ioc.assembler.channel The ChannelListenerEvent class represents the event object passed to the event listener for ChannelListenerExpert events.
 ChannelListenerExpert
com.bourre.ioc.assembler.channel The ChannelListenerExpert class is a locator for ChannelListener object.
 ChannelListenerExpertListener
com.bourre.ioc.assembler.channel The ChannelListenerExpertListener interface defines rules for Channel listeners.
 ClassCastException
com.bourre.error A ClassCastException exception is throw when the actual type of an operand is different from the expected type.
 ClassUtils
com.bourre.utils Set of class utilities functions.
 Collection
com.bourre.collection The root interface in the collection hierarchy.
 Command
com.bourre.commands Encapsulate a request as an object, thereby letting you parameterize clients with different requests, queue or log requests, and support undoable operations.
 CommandFPS
com.bourre.commands The CommandFPS class manages a Commands list to execute on each frame (FPS).
 CommandManagerFPS
com.bourre.commands The CommandManagerFPS class defines singleton access to CommandFPS object.
 CommandManagerMS
com.bourre.commands The CommandManagerMS class defines singleton access to CommandMS object.
 CommandMS
com.bourre.commands The CommandMS class manages a Commands list to execute on using timer tick.
 Constructor
com.bourre.ioc.assembler.constructor The Constructor class store informations during xml context parsing on "how to build an object".
 ConstructorEvent
com.bourre.ioc.assembler.constructor The ConstructorEvent class represents the event object passed to the event listener for ConstructorExpert events.
 ConstructorExpert
com.bourre.ioc.assembler.constructor The ConstructorExpert class is a locator for Constructor object.
 ConstructorExpertListener
com.bourre.ioc.assembler.constructor The ConstructorExpert interface defines rules for constructor listeners.
 ContextAttributeList
com.bourre.ioc.parser Enumeration of possible attribute name in the xml context.
 ContextLoader
com.bourre.ioc.context Context loader implementation based on the XMLLoader system.
 ContextLoaderEvent
com.bourre.ioc.context The ContextLoaderEvent class represents the event object passed to the event listener for ContextLoader events.
 ContextNodeNameList
com.bourre.ioc.parser Enumeration of nodes name compliant with Lowra context assembler.
 ContextParser
com.bourre.ioc.parser IoC Context parser.
 ContextParserEvent
com.bourre.ioc.parser The DisplayObjectBuilderEvent class represents the event object passed to the event listener for ContextParser events.
 ContextParserListener
com.bourre.ioc.parser Context parser listener interface.
 ContextPreprocessorLoader
com.bourre.ioc.load The ContextPreprocessorLoader class allow xml context pre processing from xml context nodes.
 ContextProcessor
com.bourre.ioc.context.processor IoC context pre processor must implements this interface.
 ContextTypeList
com.bourre.ioc.parser Enumeration of compliant object types which can be parsed by default IoC engine.
 Cookie
com.bourre.utils Cookies manager.
 CoreFactory
com.bourre.core A factory for object creation.
 CSSDeserializer
com.bourre.encoding CSS Stylesheet object deserializer.
 CuePointEvent
com.bourre.media.video The CuePointEvent class represents the event object passed to the event listener when VideoDisplay receive video cue points.
 DefaultApplicationAssembler
com.bourre.ioc.assembler Default application assembler implementation.
 DefaultApplicationRunner
com.bourre.ioc IoC Runner.
 DefaultDisplayObjectBuilder
com.bourre.ioc.assembler.displayobject Default display object builder implementation.
 Delegate
com.bourre.commands The Delegate encapsulate a method call as an object.
 Deserializer
com.bourre.encoding Deserializer interface defines rules for deserialization implementation.
 DictionaryItem
com.bourre.ioc.assembler.property DictionaryItem class.
 Dimension
com.bourre.structures The Dimension class encapsulates the width and height of an object (in double precision) in a single object.
 DimensionEvent
com.bourre.events An event object which carry a Dimension value.
 DisplayDeserializer
com.bourre.encoding Display object deserializer.
 DisplayLoader
com.bourre.ioc.assembler.displayobject.loader Display loader interface.
 DisplayLoaderInfo
com.bourre.ioc.assembler.displayobject Value object to store Display loader configuration defined in xml context.
 DisplayLoaderProxy
com.bourre.ioc.assembler.displayobject.loader Proxy to allow connection between ApplicationLoaderListener and a generic Display Loader object.
 DisplayObjectBuilder
com.bourre.ioc.assembler.displayobject All Display object builder must implement this interface.
 DisplayObjectBuilderEvent
com.bourre.ioc.assembler.displayobject The DisplayObjectBuilderEvent class represents the event object passed to the event listener for DisplayObjectBuilder events.
 DisplayObjectBuilderListener
com.bourre.ioc.assembler.displayobject Display object builder listeners must implement this interface.
 DisplayObjectEvent
com.bourre.ioc.assembler.displayobject The DisplayObjectEvent class represents the event object passed to the event listener for DisplayObjectBuilder events.
 DisplayObjectInfo
com.bourre.ioc.assembler.displayobject Value object to store Display object configuration defined in xml context.
 DisplayObjectParser
com.bourre.ioc.parser Parser implementation for 'display object' defined in xml context.
 DLLParser
com.bourre.ioc.parser Parser implementation for 'DLL' defined in xml context.
 DynBasicEvent
com.bourre.events The DynBasicEvent class extends the BasicEvent class and make it dynamic.
 EventBroadcaster
com.bourre.events The EventBroadcaster class is the cornerstone of the Lowra event system.
 EventCallbackAdapter
com.bourre.events The EventCallbackAdapter class.
 EventChannel
com.bourre.events An EventChannel object defines a communication channel in the ChannelBroadcaster.
 FileLoader
com.bourre.load The FileLoader class allow to load text, binary or variables data format from passed-in file.
 FileLoaderEvent
com.bourre.load The FileLoaderEvent class represents the event object passed to the event listener for FileLoader events.
 FirebugLayout
com.bourre.utils The FirebugLayout class provides a convenient way to output messages through Firebug console.
 FlashInspectorLayout
com.bourre.utils The FlashInspectorLayout class provides a convenient way to output messages through FlashInspector console.
 FlashVarsUtil
com.bourre.ioc.load FlashVars helper.
 FPSBeacon
com.bourre.transitions FPSBeacon provides tick to its listeners based on the native ENTER_FRAME event.
 FrontController
com.bourre.commands A base class for an application specific front controller, that is able to dispatch control following particular events to appropriate command classes.
 GlobalSoundManager
com.bourre.media The GlobalSoundManager class.
 GlobalSoundManagerEvent
com.bourre.media The GlobalSoundManagerEvent class.
 GraphicLoader
com.bourre.load The GraphicLoader class is used to load SWF files or image (JPG, PNG, or GIF) files.
 GraphicLoaderEvent
com.bourre.load The GraphicLoaderEvent class represents the event object passed to the event listener for GraphicLoader events.
 GraphicLoaderLocator
com.bourre.load The GraphicLoaderLoacator store and register GraphicLoader objects.
 GraphicLoaderLocatorEvent
com.bourre.load The GraphicLoaderLocatorEvent class represents the event object passed to the event listener for GraphicLoaderLocator events.
 GraphicLoaderLocatorListener
com.bourre.load The GraphicLoaderLocatorListener interface defines rules for GraphicLoaderLocator listeners.
 Grid
com.bourre.structures A Grid is basically a two dimensions data structure based on the Collection interface.
 HashCodeFactory
com.bourre.core The HashCodeFactory class provides convenient methods to emulate the behavior of the Java™ Object.hashcode() method.
 HashMap
com.bourre.collection An object that maps keys to values.
 IDExpert
com.bourre.ioc.core IoC Identifier manager.
 IllegalArgumentException
com.bourre.error A IllegalArgumentException exception is thrown when the arguments supplied in a function do not match the arguments defined for that function.
 IllegalStateException
com.bourre.error The IllegalStateException exception.
 IMemento
com.bourre.pattern.memento IMemento is an interface used to store the state of an object.
 IndexOutOfBoundsException
com.bourre.error A IndexOutOfBoundsException exception is thrown when the index supplied is not valid for data structure which try to access data using this index.
 IOriginator
com.bourre.pattern.memento IOriginator is an interface used to save and set the state of an object.
 Iterable
com.bourre.collection An object onto which the user can iterate using an Iterator object provided by this Iterable object.
 IterationCommand
com.bourre.commands IterationCommands are used by a LoopCommand to perform the concret iterations.
 IterationEvent
com.bourre.events Event dispatched by the LoopCommand class to its dedicated IterationCommand.
 Iterator
com.bourre.collection An iterator over a collection.
 List
com.bourre.collection An ordered collection (also known as a sequence).
 ListIterator
com.bourre.collection An iterator for lists that allows the programmer to traverse the list in either direction, modify the list during iteration, and obtain the iterator's current position in the list.
 Loader
com.bourre.load The Loader interface defines rules for loader implementations.
 LoaderEvent
com.bourre.load An event object which carry a Loader value.
 LoaderListener
com.bourre.load All loaders listener must implements this interface.
 LoaderParser
com.bourre.ioc.parser Parses xml node definition for Display Loader object.
 LoaderStrategy
com.bourre.load.strategy The LoaderStrategy class define a loading strategy using Adobe com.bourre.load.Loader loader.
 LoadStrategy
com.bourre.load.strategy The LoadStrategy interface defines rule for loading strategy implementation.
 Locator
com.bourre.core A Locator is an entity that points to specific kind of ressources within an application.
 Log
com.bourre.log Logging interface.
 LogEvent
com.bourre.log The LogEvent class represents the event object passed to the event listener for Logger events.
 Logger
com.bourre.log The Logger class allow to dispatch log message tl all registered Log listeners, in dedicated, or all logging channel.
 LogLevel
com.bourre.log The LogLevel class allow to filter log messages with logging level.
 LogListener
com.bourre.log The LogListener must be implemented by all objects which want to listen to Logging API events, like logging console.
 LoopCommand
com.bourre.commands A LoopCommand wrap a loop statement within a command.
 LoopCommandListener
com.bourre.commands Objects which want to listen to a LoopCommand instance have to implement the LoopCommandListener interface.
 LoopEvent
com.bourre.events Event dispatched by the LoopCommand class to its listeners.
 MacroCommand
com.bourre.commands A macro command wraps many commands execution in a single execute call.
 MetaData
com.bourre.media.video The MetaData interface.
 MetaDataInfo
com.bourre.media.video The MetaDataInfo class.
 Method
com.bourre.ioc.assembler.method Method class.
 MethodAccessor
com.bourre.core The MethodAccessor provides read and write access to the specified method of an object.
 MethodEvent
com.bourre.ioc.assembler.method The MethodEvent class represents the event object passed to the event listener for MethodExpert events.
 MethodExpert
com.bourre.ioc.assembler.method The MethodExpert class is a locator for Method object.
 MethodExpertListener
com.bourre.ioc.assembler.method The MethodExpertListener interface defines rules for method listeners.
 MixSoundFactory
com.bourre.media.sound The MixSoundFactory class.
 ModelListener
com.bourre.model The ModelListener interface defines rules for model listeners.
 ModelLocator
com.bourre.model The ModelLocator class is a locator for AbstractModel object.
 MSBeacon
com.bourre.transitions MSBeacon provides tick to its listeners based on the native TIMER event.
 MultiAccessor
com.bourre.core The MultiAccessor provides read and write access to the specified methods and properties of a single object.
 MultiTweenFPS
com.bourre.transitions The MultiTweenFPS class.
 MultiTweenMS
com.bourre.transitions The MultiTweenMS class allow tweening of many properties at the same time using a MSBeacon timer.
 NoSuchElementException
com.bourre.error A NoSuchElementException exception is thrown when the object supplied in a function or process is not find in current data structure.
 NoSuchFieldException
com.bourre.error A NoSuchFieldException exception is thrown rwhen the property name supplied is not a property of target object in use.
 NoSuchMethodException
com.bourre.error A NoSuchMethodException exeption is thrown when the method name supplied is not a method of target object in use.
 NullChannelException
com.bourre.ioc.error Throws an NullChannelException when try to communicate with a null event channel.
 NullIDException
com.bourre.ioc.error Throws an NullIDException when try to communicate with a null event channel.
 NullPlugin
com.bourre.plugin The NullPlugin class defines a default plugin to use if none is defined current application.
 NullPointerException
com.bourre.error A NullPointerException is thrown when the arguments supplied is null.
 NumberEvent
com.bourre.events An event object which carry a numeric value.
 ObjectEvent
com.bourre.events An event object which carry any object.
 ObjectIterator
com.bourre.collection The ObjectIterator class provides a convenient way to iterate through each property of an Object instance as you could do with a Collection instance.
 ObjectParser
com.bourre.ioc.parser Parser implementation for generic objects defined in xml context.
 ObjectUtils
com.bourre.utils Set of object utilities functions.
 ParserCollection
com.bourre.ioc.parser Parser collection.
 PixlibDebug
com.bourre.log Dedicated Logging tunnel using own event channel.
 PixlibStringifier
com.bourre.log The PixlibStringifier class is the main access point to string representation processing of an object.
 Plugin
com.bourre.plugin The Plugin interface defines rules for IoC plugin implementation.
 PluginBroadcaster
com.bourre.plugin The PluginBroadcaster class extends EventBroadcaster to add dedicated Plugin features.
 PluginChannel
com.bourre.plugin The PluginChannel class defines event channel for a target plugin.
 PluginDebug
com.bourre.plugin The PluginDebug class defines "logging tunnel" for plugin logging feature.
 PluginEvent
com.bourre.plugin The PluginEvent class represents the event object passed to the event listener for Plugin events.
 PluginExpert
com.bourre.ioc.assembler.plugins The PluginExpert class is a locator for Plugin object.
 PluginListener
com.bourre.plugin The PluginListener interface defines rules for objects which want to listen all of plugin events.
 PrivateConstructorException
com.bourre.error A PrivateConstructorException exception is thrown when trying to access private constructor of a class.
 ProcessingHelper
com.bourre.ioc.context.processor The ProcessingHelper helper gives method for xml context content pre processing.
 Property
com.bourre.ioc.assembler.property Property class.
 PropertyAccessor
com.bourre.core The PropertyAccessor provides read and write access to the specified property of an object.
 PropertyEvent
com.bourre.ioc.assembler.property The PropertyEvent class represents the event object passed to the event listener for PropertyExpert events.
 PropertyExpert
com.bourre.ioc.assembler.property The PropertyExpert class is a locator for Property object.
 PropertyExpertListener
com.bourre.ioc.assembler.property The PropertyExpertListener interface defines rules for property listeners.
 Queue
com.bourre.collection A collection designed for holding elements prior to processing.
 QueueLoader
com.bourre.load The QueueLoader class is a composite loader class wich enables to enqueue differents kinf of Loaders and then, load the entire queue.
 QueueLoaderEvent
com.bourre.load An event object which carry a QueueLoader value.
 Range
com.bourre.structures A range represent a space of numeric values.
 RecordSet
com.bourre.collection Recordet class.
 RecursiveObjectParser
com.bourre.ioc.parser Recursive parser.
 RemotingCall
com.bourre.remoting The RemotingCall class.
 RemotingCallEvent
com.bourre.remoting.events The RemotingCallEvent class represents the event object passed to the event listener for RemotingCall events.
 RemotingConnection
com.bourre.remoting The RemotingConnection class.
 RemotingDebug
com.bourre.remoting The RemotingDebug class.
 Resource
com.bourre.ioc.assembler.resource Value object to store resource configuration defined in xml context.
 ResourceEvent
com.bourre.ioc.assembler.resource The ResourceEvent class represents the event object passed to the event listener for ResourceExpert events.
 ResourceExpert
com.bourre.ioc.assembler.resource The ResourceExpert class is a locator for Resource object.
 ResourceExpertListener
com.bourre.ioc.assembler.resource The ResourceExpertListener interface defines rules for resource listeners.
 ReversedBatch
com.bourre.commands Extends Batch to process commands in the reversed order.
 RSCParser
com.bourre.ioc.parser Parser implementation for 'resources' defined in xml context.
 RTDisplayObjectBuilder
com.bourre.ioc.load.runtime Context builder to use with RuntimeContextLoader context loader.
 Runnable
com.bourre.commands The Runnable interface should be implemented by any class whose instances are intended to be executed asynchronously.
 RuntimeContextLoader
com.bourre.ioc.load.runtime The RuntimeContextLoader class allow to load external xml context at runtime.
 Service
com.bourre.service The Service interface defines rules for remoting service.
 ServiceEvent
com.bourre.service The ServiceEvent class represents the event object passed to the event listener for Service events.
 ServiceListener
com.bourre.service The ServiceListener interface defines rules for Service listeners.
 ServiceLocator
com.bourre.service The ServiceLocator class is a locator for remoting Service object.
 ServiceLocatorEvent
com.bourre.service The ServiceLocatorEvent class represents the event object passed to the event listener for ServiceLocator events.
 ServiceLocatorListener
com.bourre.service The ServiceLocatorListener interface defines rules for ServiceLocatorEvent listeners.
 ServiceMethod
com.bourre.remoting The ServiceMethod class.
 ServiceProxy
com.bourre.remoting The ServiceProxy class.
 ServiceProxyListener
com.bourre.remoting.interfaces The ServiceProxyListener interface.
 ServiceProxyLocator
com.bourre.remoting The ServiceProxyLocator class.
 ServiceResponder
com.bourre.remoting The ServiceResponder class.
 Set
com.bourre.collection A collection that contains no duplicate elements.
 SharedObjectUtils
com.bourre.utils The SharedObjectUtils class provide simple methods to save data on the local machine.
 SosLayout
com.bourre.utils The SosLayout class provides a convenient way to output messages through SOS Max console.
 SoundEvent
com.bourre.media.sound The SoundEvent class represents the event object passed to the event listener for BeanFactory events.
 SoundFactory
com.bourre.media.sound
  The SoundFactory class is a collection of sounds.
 SoundInfo
com.bourre.media.sound 
 SoundInfoChannel
com.bourre.media.sound 
 SoundInfoListener
com.bourre.media.sound 
 SoundLoader
com.bourre.media.sound 
 SoundLoaderEvent
com.bourre.media.sound 
 SoundLoaderLocator
com.bourre.media.sound 
 SoundLoaderLocatorEvent
com.bourre.media.sound 
 SoundLoaderLocatorListener
com.bourre.media.sound 
 SoundMixer
com.bourre.media.sound 
 SoundMixerLocator
com.bourre.media.sound 
 SoundMixerLocatorEvent
com.bourre.media.sound 
 SoundMixerLocatorListener
com.bourre.media.sound 
 SoundSWFLoader
com.bourre.media.sound 
 SoundTransformInfo
com.bourre.media The SoundTransformInfo class.
 SoundURLLoader
com.bourre.media.sound 
 SoundURLStrategy
com.bourre.media.sound 
 Stack
com.bourre.collection The Stack class represents a last-in-first-out (LIFO) stack of objects.
 StreamLoader
com.bourre.load The StreamLoader class allow to load content using URLStream loader.
 StreamLoaderEvent
com.bourre.load The StreamLoaderEvent class represents the event object passed to the event listener for StreamLoader events.
 StreamLoaderStrategy
com.bourre.load.strategy The URLStreamStrategy class define a loading strategy using URLStream loader.
 StringEvent
com.bourre.events An event object which carry a string value.
 Stringifier
com.bourre.log Stringifier allow string representation of an object.
 StringIterator
com.bourre.collection The StringIterator class provides a convenient way to iterate through each character of a string as you could do with a List instance.
 Suspendable
com.bourre.commands Suspendable defines rules for Runnable implementations whose instances process could be suspended.
 TickBeacon
com.bourre.transitions A TickBeacon object is an object which provides time slicing in an application.
 TickListener
com.bourre.transitions A TickListener object is an object which will change in time according to the TickBeacon it listen.
 Tween
com.bourre.transitions The Tween interface defines a tween, a property animation performed on a target object over a period of time.
 TweenEvent
com.bourre.transitions TweenEvent defines event model for Tween API.
 TweenFPS
com.bourre.transitions The TweenFPS class.
 TweenListener
com.bourre.transitions TweenListener defines rules for tween listeners.
 TweenMS
com.bourre.transitions The TweenMS class.
 TypedArray
com.bourre.collection TypedArray work the same way than a classical Array but all elements in a TypedArray have to be of the same type.
 TypedContainer
com.bourre.collection A TypedContainer allow collections and data structures to provide runtime type checking over their elements.
 TypedFactoryLocator
com.bourre.core The TypedFactoryLocator locator allow to store Class resource.
 UnimplementedVirtualMethodException
com.bourre.error A UnimplementedVirtualMethodException exception is thrown when calling a method defined in an abstract class taht is not implemented in concrete class in use.
 UnreachableDataException
com.bourre.error A UnreachableDataException exception is thrown when a stateless command don't retreive the needed data from the passed-in event
 UnsupportedNodeAttributeException
com.bourre.error A UnsupportedNodeAttributeException exception is thrown when attibute value supplied can't be use by current process.
 UnsupportedOperationException
com.bourre.error A UnsupportedOperationException exception is thrown when trying to access a method that is implemented as "unsupported" by the developer.
 URLLoaderStrategy
com.bourre.load.strategy The URLLoaderStrategy class define a loading strategy using Lowra URL loader.
 ValueObject
com.bourre.events Some entities contain a group of attributes that are always accessed together.
 ValueObjectEvent
com.bourre.events An event object which carry a value object.
 ValueObjectFactory
com.bourre.events The ValueObjectFactory interface.
 VideoDisplay
com.bourre.media.video The VideoDisplay class.
 VideoDisplayEvent
com.bourre.media.video The VideoDisplayEvent class represents the event object passed to the event listener for VideoDisplay events.
 VideoDisplayLocator
com.bourre.media.video The VideoDisplayLocator store and register VideoDisplay objects.
 VideoDisplayLocatorEvent
com.bourre.media.video The VideoDisplayLocatorEvent class represents the event object passed to the event listener for VideoDisplayLocator events.
 VideoDisplayLocatorListener
com.bourre.media.video The VideoDisplayLocatorListener interface defines rules for VideoDisplayLocator listeners.
 ViewListener
com.bourre.view The ViewListener interfacedefines rules for view listeners.
 ViewLocator
com.bourre.view The ViewLocator class is a locator for AbstractView object.
 WeakCollection
com.bourre.collection A weak collection stores element using weak references instead of the classical hard references.
 XMLListIterator
com.bourre.collection The XMLListIterator class provides a convenient way to iterate through each entry of an XMLList instance.
 XMLLoader
com.bourre.load The XMLLoader class allow to load xml content.
 XMLLoaderEvent
com.bourre.load The XMLLoaderEvent class represents the event object passed to the event listener for XMLLoader events.
 XMLToObjectDeserializer
com.bourre.encoding XML object deserializer.