1 '''
2 L{AccessEngineAPI} related constants.
3
4 @var CHAIN_BEFORE: Links one task before the execution of another.
5 @type CHAIN_BEFORE: integer
6 @var CHAIN_AFTER: Links one task after the execution of another.
7 @type CHAIN_AFTER: integer
8 @var CHAIN_AROUND: Links on task around the execution of another.
9 @type CHAIN_AROUND: integer
10 @var UIE_LOADED: Constant indicating L{AEUserInterface}s loaded
11 @type UIE_LOADED: integer
12 @var UIE_INSTALLED: Constant indicating L{AEUserInterface}s installed
13 @type UIE_INSTALLED: integer
14 @var UIE_TIER_ASSOCIATED: Constant indicating L{AEScript <AEScript.AEScript>}s associated with the
15 current L{AETier} in the active profile
16 @type UIE_TIER_ASSOCIATED: integer
17 @var UIE_ALL_ASSOCIATED: Constant indicating L{AEUserInterface}s associated with the
18 active profile
19 @type UIE_ALL_ASSOCIATED: integer
20
21 @author: Peter Parente
22 @organization: IBM Corporation
23 @copyright: Copyright (c) 2005, 2007 IBM Corporation
24 @license: The BSD License
25
26 All rights reserved. This program and the accompanying materials are made
27 available under the terms of the BSD license which accompanies
28 this distribution, and is available at
29 U{http://www.opensource.org/licenses/bsd-license.php}
30 '''
31 CHAIN_BEFORE = 0
32 CHAIN_AFTER = 1
33 CHAIN_AROUND = 2
34
35 UIE_LOADED = 0
36 UIE_INSTALLED = 1
37 UIE_TIER_ASSOCIATED = 2
38 UIE_ALL_ASSOCIATED = 3
39