blob: 69ccad0d07221b61d5f0c471041876047c349327 [file] [log] [blame]
J. Duke319a3b92007-12-01 00:00:00 +00001/*
2 * Copyright 1997-1999 Sun Microsystems, Inc. All Rights Reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation. Sun designates this
8 * particular file as subject to the "Classpath" exception as provided
9 * by Sun in the LICENSE file that accompanied this code.
10 *
11 * This code is distributed in the hope that it will be useful, but WITHOUT
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 * version 2 for more details (a copy is included in the LICENSE file that
15 * accompanied this code).
16 *
17 * You should have received a copy of the GNU General Public License version
18 * 2 along with this work; if not, write to the Free Software Foundation,
19 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20 *
21 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
22 * CA 95054 USA or visit www.sun.com if you need additional information or
23 * have any questions.
24 */
25
26package javax.accessibility;
27
28/**
29 * The AccessibleValue interface should be supported by any object
30 * that supports a numerical value (e.g., a scroll bar). This interface
31 * provides the standard mechanism for an assistive technology to determine
32 * and set the numerical value as well as get the minimum and maximum values.
33 * Applications can determine
34 * if an object supports the AccessibleValue interface by first
35 * obtaining its AccessibleContext (see
36 * {@link Accessible}) and then calling the
37 * {@link AccessibleContext#getAccessibleValue} method.
38 * If the return value is not null, the object supports this interface.
39 *
40 * @see Accessible
41 * @see Accessible#getAccessibleContext
42 * @see AccessibleContext
43 * @see AccessibleContext#getAccessibleValue
44 *
45 * @author Peter Korn
46 * @author Hans Muller
47 * @author Willie Walker
48 */
49public interface AccessibleValue {
50
51 /**
52 * Get the value of this object as a Number. If the value has not been
53 * set, the return value will be null.
54 *
55 * @return value of the object
56 * @see #setCurrentAccessibleValue
57 */
58 public Number getCurrentAccessibleValue();
59
60 /**
61 * Set the value of this object as a Number.
62 *
63 * @return True if the value was set; else False
64 * @see #getCurrentAccessibleValue
65 */
66 public boolean setCurrentAccessibleValue(Number n);
67
68// /**
69// * Get the description of the value of this object.
70// *
71// * @return description of the value of the object
72// */
73// public String getAccessibleValueDescription();
74
75 /**
76 * Get the minimum value of this object as a Number.
77 *
78 * @return Minimum value of the object; null if this object does not
79 * have a minimum value
80 * @see #getMaximumAccessibleValue
81 */
82 public Number getMinimumAccessibleValue();
83
84 /**
85 * Get the maximum value of this object as a Number.
86 *
87 * @return Maximum value of the object; null if this object does not
88 * have a maximum value
89 * @see #getMinimumAccessibleValue
90 */
91 public Number getMaximumAccessibleValue();
92}