Package AccessEngine :: Package AEAccAdapters
[hide private]
[frames] | no frames]

Source Code for Package AccessEngine.AEAccAdapters

 1  ''' 
 2  Defines L{AEAccAdapter}s for objects in accessibility toolkits to the 
 3  L{AEAccAdapter.Interface}s declared in  
 4  L{AEAccInterfaces <AccessEngine.AEAccInterfaces>}.  
 5   
 6  Subpackages contain adapters on a per toolkit basis. Adapters for toolkits that  
 7  are not available are not imported. 
 8   
 9  @author: Peter Parente 
10  @organization: IBM Corporation 
11  @copyright: Copyright (c) 2005, 2007 IBM Corporation 
12   
13  @license: I{The BSD License} 
14  All rights reserved. This program and the accompanying materials are made 
15  available under the terms of the BSD license which accompanies 
16  this distribution, and is available at 
17  U{http://www.opensource.org/licenses/bsd-license.php} 
18  ''' 
19  try: 
20    from ATSPI import * 
21  except ImportError, e: 
22    print 'AT-SPI adapters unavailable:', e 
23