A  B  C  D  E  F  G  H  I  J  K  L  M  N  O  P  Q  R  S  T  U  V  W  X  Y  Z  
CairngormError — Class in package com.adobe.cairngorm
CairngormError(errorCode, ... rest) — Constructor in class com.adobe.cairngorm.CairngormError
CairngormEvent — Class in package com.adobe.cairngorm.control
The CairngormEvent class is mandatory for Cairngorm event dispatching.
CairngormEvent(type, bubbles, cancelable) — Constructor in class com.adobe.cairngorm.control.CairngormEvent
Constructor, takes the event name (type) and data object (defaults to null) and also defaults the standard Flex event properties bubbles and cancelable to true and false respectively.
CairngormEventDispatcher — Class in package com.adobe.cairngorm.control
The CairngormEventDispatcher class is a singleton class, used by the application developer to broadcast events that correspond to user gestures and requests.
CairngormEventDispatcher(target) — Constructor in class com.adobe.cairngorm.control.CairngormEventDispatcher
Constructor.
CairngormMessageCodes — Class in package com.adobe.cairngorm
All messages/error codes must match the regular expression: C\d{4}[EWI] 1.
com.adobe.cairngorm — Package
com.adobe.cairngorm.business — Package
com.adobe.cairngorm.commands — Package
com.adobe.cairngorm.control — Package
com.adobe.cairngorm.model — Package
com.adobe.cairngorm.view — Package
com.adobe.cairngorm.vo — Package
Command — Interface in package com.adobe.cairngorm.commands
Deprecated as of Cairngorm 2.1, replaced by com.adobe.cairngorm.commands.ICommand

The Command interface enforces the contract between the Front Controller and concrete command classes in your application.

In a Cairngorm application, the application specific Front Controller will listen for events of interest, dispatching control to appropriate command classes according to the type of the event broadcast.

When an event is broadcasted by the Front Controller, it will lookup its list of registered commands, to find the command capable of carrying out the appropriate work in response to the user gesture that has caused the event.

COMMAND_ALREADY_REGISTERED — Constant static property in class com.adobe.cairngorm.CairngormMessageCodes
COMMAND_NOT_FOUND — Constant static property in class com.adobe.cairngorm.CairngormMessageCodes
A  B  C  D  E  F  G  H  I  J  K  L  M  N  O  P  Q  R  S  T  U  V  W  X  Y  Z