--- /dev/null 2015-03-27 18:57:35.000000000 -0500 +++ new/jdk/src/windows/classes/com/sun/java/accessibility/extensions/AccessibleExtendedState.java 2015-03-27 18:57:34.352106100 -0500 @@ -0,0 +1,32 @@ +/* + * Copyright (c) 2005, 2012, Oracle and/or its affiliates. All rights reserved. + * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. + */ + +package com.sun.java.accessibility.extensions; + +import javax.accessibility.*; + +/** + *

Class AccessibleState describes a component's particular state. The actual + * state of the component is defined as an AccessibleStateSet, which is a + * composed set of AccessibleStates. + *

The toDisplayString method allows you to obtain the localized string + * for a locale independent key from a predefined ResourceBundle for the + * keys defined in this class. + *

The constants in this class present a strongly typed enumeration + * of common object roles. A public constructor for this class has been + * purposely omitted and applications should use one of the constants + * from this class. If the constants in this class are not sufficient + * to describe the role of an object, a subclass should be generated + * from this class and it should provide constants in a similar manner. + * + */ + +public abstract class AccessibleExtendedState + extends AccessibleExtendedStateConstants { + + public AccessibleExtendedState(String s) { + super(s); + } +}