jcombobox.accessiblejcombobox.html

来自「API資料大全」· HTML 代码 · 共 670 行 · 第 1/3 页

HTML
670
字号
</DD><DD><DL><DT><B>Returns:</B><DD>this object</DL></DD></DL><HR><A NAME="getAccessibleActionDescription(int)"><!-- --></A><H3>getAccessibleActionDescription</H3><PRE>public <A HREF="../../java/lang/String.html">String</A> <B>getAccessibleActionDescription</B>(int&nbsp;i)</PRE><DL><DD>Return a description of the specified action of the object.<DD><DL><DT><B>Specified by: </B><DD><CODE><A HREF="../../javax/accessibility/AccessibleAction.html#getAccessibleActionDescription(int)">getAccessibleActionDescription</A></CODE> in interface <CODE><A HREF="../../javax/accessibility/AccessibleAction.html">AccessibleAction</A></CODE></DL></DD><DD><DL><DT><B>Parameters:</B><DD><CODE>i</CODE> - zero-based index of the actions</DL></DD></DL><HR><A NAME="getAccessibleActionCount()"><!-- --></A><H3>getAccessibleActionCount</H3><PRE>public int <B>getAccessibleActionCount</B>()</PRE><DL><DD>Returns the number of Actions available in this object.  The  default behavior of a combo box is to have one action.<DD><DL><DT><B>Specified by: </B><DD><CODE><A HREF="../../javax/accessibility/AccessibleAction.html#getAccessibleActionCount()">getAccessibleActionCount</A></CODE> in interface <CODE><A HREF="../../javax/accessibility/AccessibleAction.html">AccessibleAction</A></CODE></DL></DD><DD><DL><DT><B>Returns:</B><DD>1, the number of Actions in this object</DL></DD></DL><HR><A NAME="doAccessibleAction(int)"><!-- --></A><H3>doAccessibleAction</H3><PRE>public boolean <B>doAccessibleAction</B>(int&nbsp;i)</PRE><DL><DD>Perform the specified Action on the object<DD><DL><DT><B>Specified by: </B><DD><CODE><A HREF="../../javax/accessibility/AccessibleAction.html#doAccessibleAction(int)">doAccessibleAction</A></CODE> in interface <CODE><A HREF="../../javax/accessibility/AccessibleAction.html">AccessibleAction</A></CODE></DL></DD><DD><DL><DT><B>Parameters:</B><DD><CODE>i</CODE> - zero-based index of actions<DT><B>Returns:</B><DD>true if the the action was performed; else false.</DL></DD></DL><HR><A NAME="getAccessibleSelection()"><!-- --></A><H3>getAccessibleSelection</H3><PRE>public <A HREF="../../javax/accessibility/AccessibleSelection.html">AccessibleSelection</A> <B>getAccessibleSelection</B>()</PRE><DL><DD>Get the AccessibleSelection associated with this object.  In the implementation of the Java Accessibility API for this class,  return this object, which is responsible for implementing the AccessibleSelection interface on behalf of itself.<DD><DL><DT><B>Overrides:</B><DD><CODE><A HREF="../../javax/accessibility/AccessibleContext.html#getAccessibleSelection()">getAccessibleSelection</A></CODE> in class <CODE><A HREF="../../javax/accessibility/AccessibleContext.html">AccessibleContext</A></CODE></DL></DD><DD><DL><DT><B>Returns:</B><DD>this object</DL></DD></DL><HR><A NAME="getAccessibleSelectionCount()"><!-- --></A><H3>getAccessibleSelectionCount</H3><PRE>public int <B>getAccessibleSelectionCount</B>()</PRE><DL><DD>Returns the number of Accessible children currently selected. If no children are selected, the return value will be 0.<DD><DL><DT><B>Specified by: </B><DD><CODE><A HREF="../../javax/accessibility/AccessibleSelection.html#getAccessibleSelectionCount()">getAccessibleSelectionCount</A></CODE> in interface <CODE><A HREF="../../javax/accessibility/AccessibleSelection.html">AccessibleSelection</A></CODE></DL></DD><DD><DL><DT><B>Returns:</B><DD>the number of items currently selected.</DL></DD></DL><HR><A NAME="getAccessibleSelection(int)"><!-- --></A><H3>getAccessibleSelection</H3><PRE>public <A HREF="../../javax/accessibility/Accessible.html">Accessible</A> <B>getAccessibleSelection</B>(int&nbsp;i)</PRE><DL><DD>Returns an Accessible representing the specified selected child in the popup.  If there isn't a selection, or there are  fewer children selected than the integer passed in, the return value will be null. <p>Note that the index represents the i-th selected child, which is different from the i-th child.<DD><DL><DT><B>Specified by: </B><DD><CODE><A HREF="../../javax/accessibility/AccessibleSelection.html#getAccessibleSelection(int)">getAccessibleSelection</A></CODE> in interface <CODE><A HREF="../../javax/accessibility/AccessibleSelection.html">AccessibleSelection</A></CODE></DL></DD><DD><DL><DT><B>Parameters:</B><DD><CODE>i</CODE> - the zero-based index of selected children<DT><B>Returns:</B><DD>the i-th selected child<DT><B>See Also: </B><DD><A HREF="../../javax/swing/JComboBox.AccessibleJComboBox.html#getAccessibleSelectionCount()"><CODE>getAccessibleSelectionCount()</CODE></A></DL></DD></DL><HR><A NAME="isAccessibleChildSelected(int)"><!-- --></A><H3>isAccessibleChildSelected</H3><PRE>public boolean <B>isAccessibleChildSelected</B>(int&nbsp;i)</PRE><DL><DD>Determines if the current child of this object is selected.<DD><DL><DT><B>Specified by: </B><DD><CODE><A HREF="../../javax/accessibility/AccessibleSelection.html#isAccessibleChildSelected(int)">isAccessibleChildSelected</A></CODE> in interface <CODE><A HREF="../../javax/accessibility/AccessibleSelection.html">AccessibleSelection</A></CODE></DL></DD><DD><DL><DT><B>Parameters:</B><DD><CODE>i</CODE> - the zero-based index of the child in this Accessible object.<DT><B>Returns:</B><DD>true if the current child of this object is selected;  		else false<DT><B>See Also: </B><DD><A HREF="../../javax/accessibility/AccessibleContext.html#getAccessibleChild(int)"><CODE>AccessibleContext.getAccessibleChild(int)</CODE></A></DL></DD></DL><HR><A NAME="addAccessibleSelection(int)"><!-- --></A><H3>addAccessibleSelection</H3><PRE>public void <B>addAccessibleSelection</B>(int&nbsp;i)</PRE><DL><DD>Adds the specified Accessible child of the object to the object's selection.  If the object supports multiple selections, the specified child is added to any existing selection, otherwise it replaces any existing selection in the object.  If the specified child is already selected, this method has no effect.<DD><DL><DT><B>Specified by: </B><DD><CODE><A HREF="../../javax/accessibility/AccessibleSelection.html#addAccessibleSelection(int)">addAccessibleSelection</A></CODE> in interface <CODE><A HREF="../../javax/accessibility/AccessibleSelection.html">AccessibleSelection</A></CODE></DL></DD><DD><DL><DT><B>Parameters:</B><DD><CODE>i</CODE> - the zero-based index of the child<DT><B>See Also: </B><DD><A HREF="../../javax/accessibility/AccessibleContext.html#getAccessibleChild(int)"><CODE>AccessibleContext.getAccessibleChild(int)</CODE></A></DL></DD></DL><HR><A NAME="removeAccessibleSelection(int)"><!-- --></A><H3>removeAccessibleSelection</H3><PRE>public void <B>removeAccessibleSelection</B>(int&nbsp;i)</PRE><DL><DD>Removes the specified child of the object from the object's selection.  If the specified item isn't currently selected, this method has no effect.<DD><DL><DT><B>Specified by: </B><DD><CODE><A HREF="../../javax/accessibility/AccessibleSelection.html#removeAccessibleSelection(int)">removeAccessibleSelection</A></CODE> in interface <CODE><A HREF="../../javax/accessibility/AccessibleSelection.html">AccessibleSelection</A></CODE></DL></DD><DD><DL><DT><B>Parameters:</B><DD><CODE>i</CODE> - the zero-based index of the child<DT><B>See Also: </B><DD><A HREF="../../javax/accessibility/AccessibleContext.html#getAccessibleChild(int)"><CODE>AccessibleContext.getAccessibleChild(int)</CODE></A></DL></DD></DL><HR><A NAME="clearAccessibleSelection()"><!-- --></A><H3>clearAccessibleSelection</H3><PRE>public void <B>clearAccessibleSelection</B>()</PRE><DL><DD>Clears the selection in the object, so that no children in the object are selected.<DD><DL><DT><B>Specified by: </B><DD><CODE><A HREF="../../javax/accessibility/AccessibleSelection.html#clearAccessibleSelection()">clearAccessibleSelection</A></CODE> in interface <CODE><A HREF="../../javax/accessibility/AccessibleSelection.html">AccessibleSelection</A></CODE></DL></DD></DL><HR><A NAME="selectAllAccessibleSelection()"><!-- --></A><H3>selectAllAccessibleSelection</H3><PRE>public void <B>selectAllAccessibleSelection</B>()</PRE><DL><DD>Causes every child of the object to be selected if the object supports multiple selections.<DD><DL><DT><B>Specified by: </B><DD><CODE><A HREF="../../javax/accessibility/AccessibleSelection.html#selectAllAccessibleSelection()">selectAllAccessibleSelection</A></CODE> in interface <CODE><A HREF="../../javax/accessibility/AccessibleSelection.html">AccessibleSelection</A></CODE></DL></DD></DL><!-- ========= END OF CLASS DATA ========= --><HR><!-- ========== START OF NAVBAR ========== --><A NAME="navbar_bottom"><!-- --></A><TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0"><TR><TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"><A NAME="navbar_bottom_firstrow"><!-- --></A><TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3">  <TR ALIGN="center" VALIGN="top">  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD>  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD>  <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT>&nbsp;</TD>  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="class-use/JComboBox.AccessibleJComboBox.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A>&nbsp;</TD>  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD>  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD>  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../../index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD>  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD>  </TR></TABLE></TD><TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM><b>Java<sup><font size=-2>TM</font></sup>&nbsp;2&nbsp;Platform<br>Std.&nbsp;Ed. v1.3</b></EM></TD></TR><TR><TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">&nbsp;<A HREF="../../javax/swing/JComboBox.html"><B>PREV CLASS</B></A>&nbsp;&nbsp;<A HREF="../../javax/swing/JComponent.html"><B>NEXT CLASS</B></A></FONT></TD><TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">  <A HREF="../../index.html" TARGET="_top"><B>FRAMES</B></A>  &nbsp;&nbsp;<A HREF="JComboBox.AccessibleJComboBox.html" TARGET="_top"><B>NO FRAMES</B></A></FONT></TD></TR><TR><TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">  SUMMARY: &nbsp;<A HREF="#inner_classes_inherited_from_class_javax.swing.JComponent.AccessibleJComponent">INNER</A>&nbsp;|&nbsp;<A HREF="#fields_inherited_from_class_javax.swing.JComponent.AccessibleJComponent">FIELD</A>&nbsp;|&nbsp;<A HREF="#constructor_summary">CONSTR</A>&nbsp;|&nbsp;<A HREF="#method_summary">METHOD</A></FONT></TD><TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">DETAIL: &nbsp;FIELD&nbsp;|&nbsp;<A HREF="#constructor_detail">CONSTR</A>&nbsp;|&nbsp;<A HREF="#method_detail">METHOD</A></FONT></TD></TR></TABLE><!-- =========== END OF NAVBAR =========== --><HR><font size="-1"><a href="http://java.sun.com/cgi-bin/bugreport.cgi">Submit a bug or feature</a><br>For further API reference and developer documentation, see <a href="http://java.sun.com/products/jdk/1.3/devdocs-vs-specs.html">Java 2 SDK SE Developer Documentation</a>. That documentation  contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples. <p>Java, Java 2D, and JDBC are trademarks or registered trademarks of Sun Microsystems, Inc. in the US and other countries.<br>Copyright 1993-2000 Sun Microsystems, Inc. 901 San Antonio Road<br>Palo Alto, California, 94303, U.S.A.  All Rights Reserved.</font></BODY></HTML>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?