001: /*
002: * Licensed to the Apache Software Foundation (ASF) under one or more
003: * contributor license agreements. See the NOTICE file distributed with
004: * this work for additional information regarding copyright ownership.
005: * The ASF licenses this file to You under the Apache License, Version 2.0
006: * (the "License"); you may not use this file except in compliance with
007: * the License. You may obtain a copy of the License at
008: *
009: * http://www.apache.org/licenses/LICENSE-2.0
010: *
011: * Unless required by applicable law or agreed to in writing, software
012: * distributed under the License is distributed on an "AS IS" BASIS,
013: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
014: * See the License for the specific language governing permissions and
015: * limitations under the License.
016: */
017:
018: package javax.accessibility;
019:
020: import java.util.ListResourceBundle;
021:
022: @Deprecated
023: public class AccessibleResourceBundle extends ListResourceBundle {
024: // Localized values representing the accessible roles and states of the accessible components.
025: private final Object[][] contents = { { "alert", "alert" }, //$NON-NLS-1$ //$NON-NLS-2$
026: { "column_header", "column header" }, //$NON-NLS-1$ //$NON-NLS-2$
027: { "canvas", "canvas" }, //$NON-NLS-1$ //$NON-NLS-2$
028: { "combobox", "combobox" }, //$NON-NLS-1$ //$NON-NLS-2$
029: { "desktopIcon", "desktop icon" }, //$NON-NLS-1$ //$NON-NLS-2$
030: { "internalFrame", "internal frame" }, //$NON-NLS-1$ //$NON-NLS-2$
031: { "desktopPane", "desktop pane" }, //$NON-NLS-1$ //$NON-NLS-2$
032: { "optionPane", "option pane" }, //$NON-NLS-1$ //$NON-NLS-2$
033: { "window", "window" }, //$NON-NLS-1$ //$NON-NLS-2$
034: { "frame", "frame" }, //$NON-NLS-1$ //$NON-NLS-2$
035: { "dialog", "dialog" }, //$NON-NLS-1$ //$NON-NLS-2$
036: { "colorChooser", "color chooser" }, //$NON-NLS-1$ //$NON-NLS-2$
037: { "directoryPane", "directory pane" }, //$NON-NLS-1$ //$NON-NLS-2$
038: { "fileChooser", "file chooser" }, //$NON-NLS-1$ //$NON-NLS-2$
039: { "filler", "filler" }, //$NON-NLS-1$ //$NON-NLS-2$
040: { "hyperlink", "hyperlink" }, //$NON-NLS-1$ //$NON-NLS-2$
041: { "icon", "icon" }, //$NON-NLS-1$ //$NON-NLS-2$
042: { "label", "label" }, //$NON-NLS-1$ //$NON-NLS-2$
043: { "rootPane", "root pane" }, //$NON-NLS-1$ //$NON-NLS-2$
044: { "glassPane", "glass pane" }, //$NON-NLS-1$ //$NON-NLS-2$
045: { "layeredPane", "layered pane" }, //$NON-NLS-1$ //$NON-NLS-2$
046: { "list", "list" }, //$NON-NLS-1$ //$NON-NLS-2$
047: { "listItem", "list item" }, //$NON-NLS-1$ //$NON-NLS-2$
048: { "menuBar", "menu bar" }, //$NON-NLS-1$ //$NON-NLS-2$
049: { "popupMenu", "popup menu" }, //$NON-NLS-1$ //$NON-NLS-2$
050: { "menu", "menu" }, //$NON-NLS-1$ //$NON-NLS-2$
051: { "menuItem", "menu item" }, //$NON-NLS-1$ //$NON-NLS-2$
052: { "separator", "separator" }, //$NON-NLS-1$ //$NON-NLS-2$
053: { "pageTabList", "page tab list" }, //$NON-NLS-1$ //$NON-NLS-2$
054: { "pageTab", "page tab" }, //$NON-NLS-1$ //$NON-NLS-2$
055: { "panel", "panel" }, //$NON-NLS-1$ //$NON-NLS-2$
056: { "progressBar", "progress" }, //$NON-NLS-1$ //$NON-NLS-2$
057: { "passwordText", "password" }, //$NON-NLS-1$ //$NON-NLS-2$
058: { "pushButton", "push button" }, //$NON-NLS-1$ //$NON-NLS-2$
059: { "toggleButton", "toggle button" }, //$NON-NLS-1$ //$NON-NLS-2$
060: { "checkBox", "check box" }, //$NON-NLS-1$ //$NON-NLS-2$
061: { "radioButton", "radio button" }, //$NON-NLS-1$ //$NON-NLS-2$
062: { "rowHeader", "row header" }, //$NON-NLS-1$ //$NON-NLS-2$
063: { "scrollPane", "scroll pane" }, //$NON-NLS-1$ //$NON-NLS-2$
064: { "scrollBar", "scroller" }, //$NON-NLS-1$ //$NON-NLS-2$
065: { "viewport", "viewport" }, //$NON-NLS-1$ //$NON-NLS-2$
066: { "slider", "slider" }, //$NON-NLS-1$ //$NON-NLS-2$
067: { "splitPane", "split pane" }, //$NON-NLS-1$ //$NON-NLS-2$
068: { "table", "table" }, //$NON-NLS-1$ //$NON-NLS-2$
069: { "text", "text" }, //$NON-NLS-1$ //$NON-NLS-2$
070: { "tree", "tree" }, //$NON-NLS-1$ //$NON-NLS-2$
071: { "toolBar", "tool bar" }, //$NON-NLS-1$ //$NON-NLS-2$
072: { "toolTip", "tool tip" }, //$NON-NLS-1$ //$NON-NLS-2$
073: { "awtComponent", "AWT component" }, //$NON-NLS-1$ //$NON-NLS-2$
074: { "swingComponent", "Swing component" }, //$NON-NLS-1$ //$NON-NLS-2$
075: { "unknown", "unknown" }, //$NON-NLS-1$ //$NON-NLS-2$
076: { "statusBar", "status bar" }, //$NON-NLS-1$ //$NON-NLS-2$
077: { "dateEditor", "date editor" }, //$NON-NLS-1$ //$NON-NLS-2$
078: { "spinBox", "spinner" }, //$NON-NLS-1$ //$NON-NLS-2$
079: { "fontChooser", "font chooser" }, //$NON-NLS-1$ //$NON-NLS-2$
080: { "groupBox", "group" }, //$NON-NLS-1$ //$NON-NLS-2$
081: { "header", "header" }, //$NON-NLS-1$ //$NON-NLS-2$
082: { "footer", "footer" }, //$NON-NLS-1$ //$NON-NLS-2$
083: { "paragraph", "paragraph" }, //$NON-NLS-1$ //$NON-NLS-2$
084: { "ruler", "ruler" }, //$NON-NLS-1$ //$NON-NLS-2$
085: { "editBar", "edit bar" }, //$NON-NLS-1$ //$NON-NLS-2$
086: { "progressMonitor", "progress monitor" }, //$NON-NLS-1$ //$NON-NLS-2$
087: { "labelFor", "label for" }, //$NON-NLS-1$ //$NON-NLS-2$
088: { "labeledBy", "labeled by" }, //$NON-NLS-1$ //$NON-NLS-2$
089: { "memberOf", "member of" }, //$NON-NLS-1$ //$NON-NLS-2$
090: { "controllerFor", "controller for" }, //$NON-NLS-1$ //$NON-NLS-2$
091: { "controlledBy", "controlled by" }, //$NON-NLS-1$ //$NON-NLS-2$
092: { "flowsTo", "flows to" }, //$NON-NLS-1$ //$NON-NLS-2$
093: { "flowsFrom", "flows from" }, //$NON-NLS-1$ //$NON-NLS-2$
094: { "subwindowOf", "sub-window of" }, //$NON-NLS-1$ //$NON-NLS-2$
095: { "parentWindowOf", "parent window of" }, //$NON-NLS-1$ //$NON-NLS-2$
096: { "embeds", "embeds" }, //$NON-NLS-1$ //$NON-NLS-2$
097: { "embeddedBy", "embedded by" }, //$NON-NLS-1$ //$NON-NLS-2$
098: { "childNodeOf", "child node of" }, //$NON-NLS-1$ //$NON-NLS-2$
099: { "active", "active" }, //$NON-NLS-1$ //$NON-NLS-2$
100: { "pressed", "pressed" }, //$NON-NLS-1$ //$NON-NLS-2$
101: { "armed", "armed" }, //$NON-NLS-1$ //$NON-NLS-2$
102: { "busy", "busy" }, //$NON-NLS-1$ //$NON-NLS-2$
103: { "checked", "checked" }, //$NON-NLS-1$ //$NON-NLS-2$
104: { "editable", "editable" }, //$NON-NLS-1$ //$NON-NLS-2$
105: { "expandable", "expandable" }, //$NON-NLS-1$ //$NON-NLS-2$
106: { "collapsed", "collapsed" }, //$NON-NLS-1$ //$NON-NLS-2$
107: { "expanded", "expanded" }, //$NON-NLS-1$ //$NON-NLS-2$
108: { "enabled", "enabled" }, //$NON-NLS-1$ //$NON-NLS-2$
109: { "focusable", "focusable" }, //$NON-NLS-1$ //$NON-NLS-2$
110: { "focused", "focused" }, //$NON-NLS-1$ //$NON-NLS-2$
111: { "iconified", "iconified" }, //$NON-NLS-1$ //$NON-NLS-2$
112: { "modal", "modal" }, //$NON-NLS-1$ //$NON-NLS-2$
113: { "opaque", "opaque" }, //$NON-NLS-1$ //$NON-NLS-2$
114: { "resizable", "resizable" }, //$NON-NLS-1$ //$NON-NLS-2$
115: { "multiSelectable", "multi-selectable" }, //$NON-NLS-1$ //$NON-NLS-2$
116: { "selectable", "selectable" }, //$NON-NLS-1$ //$NON-NLS-2$
117: { "selected", "selected" }, //$NON-NLS-1$ //$NON-NLS-2$
118: { "showing", "showing" }, //$NON-NLS-1$ //$NON-NLS-2$
119: { "visible", "visible" }, //$NON-NLS-1$ //$NON-NLS-2$
120: { "vertical", "vertical" }, //$NON-NLS-1$ //$NON-NLS-2$
121: { "horizontal", "horizontal" }, //$NON-NLS-1$ //$NON-NLS-2$
122: { "singleLine", "singleLine" }, //$NON-NLS-1$ //$NON-NLS-2$
123: { "multiLine", "multi line" }, //$NON-NLS-1$ //$NON-NLS-2$
124: { "transient", "transient" }, //$NON-NLS-1$ //$NON-NLS-2$
125: { "managesDescendants", "manages descendants" }, //$NON-NLS-1$ //$NON-NLS-2$
126: { "indeterminate", "indeterminate" }, //$NON-NLS-1$ //$NON-NLS-2$
127: { "truncated", "truncated" }, //$NON-NLS-1$ //$NON-NLS-2$
128: };
129:
130: @Override
131: public Object[][] getContents() {
132: return contents;
133: }
134: }
|