Package Adapters
[hide private]
[frames] | no frames]

Source Code for Package Adapters

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