Package ocempgui :: Package access :: Module IAccessible :: Class IAccessible
[show private | hide private]
[frames | no frames]

Type IAccessible

object --+
         |
        IAccessible


IAccessible () -> IAccessible

An abstract interface class for accessibility implementations.

The IAccessible class provides a single get_accessible() method definition, which can can be used by accessibility toolkit bindings to get necessary acessibility information from an python object. Those can contain information such as the object its current state, presentation information and interaction possibilities, for example.

Accessibility information are especially needed by, but not limited to, people with disabilities, so they can gather needed information from objects to clearly recognize them.
Method Summary
  get_accessible(self)
I.get_accessible () -> Accessible
    Inherited from object
  __init__(...)
x.__init__(...) initializes x; see x.__class__.__doc__ for signature
  __delattr__(...)
x.__delattr__('name') <==> del x.name
  __getattribute__(...)
x.__getattribute__('name') <==> x.name
  __hash__(x)
x.__hash__() <==> hash(x)
  __new__(T, S, ...)
T.__new__(S, ...) -> a new object with type S, a subtype of T
  __reduce__(...)
helper for pickle
  __reduce_ex__(...)
helper for pickle
  __repr__(x)
x.__repr__() <==> repr(x)
  __setattr__(...)
x.__setattr__('name', value) <==> x.name = value
  __str__(x)
x.__str__() <==> str(x)

Method Details

get_accessible(self)

I.get_accessible () -> Accessible

Gets the Accessible from the object.

Gets the Accessible from the object, which contains further infomormation about its state, presentation, interaction possibilities and more.

This method has to be implemented by inheriting classes.

Generated by Epydoc 2.1 on Thu Jan 10 10:18:44 2008 http://epydoc.sf.net