There are 1 code examples for javax.accessibility.AccessibleContext.
The API names are highlighted below.
You can use
button
to vote the code example(s) you like. The best code example will be ranked first next time. Thanks a lot for your feedback.
Project Name: vfsjfilechooser Package: net.sf.vfsjfilechooser
Source Code: VFSJFileChooser.java (Click to view .java file)
Method Code:
/**
* Gets the AccessibleContext associated with this VFSJFileChooser.
* For file choosers, the AccessibleContext takes the form of an
* AccessibleJFileChooser.
* A new AccessibleJFileChooser instance is created if necessary.
* @return an AccessibleJFileChooser that serves as the
* AccessibleContext of this VFSJFileChooser
*/
@Override public AccessibleContext getAccessibleContext(){
if (m_accessibleContext == null) {
m_accessibleContext=new AccessibleJFileChooser();
}
return m_accessibleContext;
}