📄 jtable.accessiblejtable.accessiblejtablecell.html
字号:
<PRE>public boolean <B>isEnabled</B>()</PRE><DL><DD>Determines if the object is enabled.<DD><DL><DT><B>Specified by: </B><DD><CODE><A HREF="../../javax/accessibility/AccessibleComponent.html#isEnabled()">isEnabled</A></CODE> in interface <CODE><A HREF="../../javax/accessibility/AccessibleComponent.html">AccessibleComponent</A></CODE></DL></DD><DD><DL><DT><B>Returns:</B><DD>true if object is enabled; otherwise, false</DL></DD></DL><HR><A NAME="setEnabled(boolean)"><!-- --></A><H3>setEnabled</H3><PRE>public void <B>setEnabled</B>(boolean b)</PRE><DL><DD>Sets the enabled state of the object.<DD><DL><DT><B>Specified by: </B><DD><CODE><A HREF="../../javax/accessibility/AccessibleComponent.html#setEnabled(boolean)">setEnabled</A></CODE> in interface <CODE><A HREF="../../javax/accessibility/AccessibleComponent.html">AccessibleComponent</A></CODE></DL></DD><DD><DL><DT><B>Parameters:</B><DD><CODE>b</CODE> - if true, enables this object; otherwise, disables it</DL></DD></DL><HR><A NAME="isVisible()"><!-- --></A><H3>isVisible</H3><PRE>public boolean <B>isVisible</B>()</PRE><DL><DD>Determines if this object is visible. Note: this means that the object intends to be visible; however, it may not in fact be showing on the screen because one of the objects that this object is contained by is not visible. To determine if an object is showing on the screen, use isShowing().<DD><DL><DT><B>Specified by: </B><DD><CODE><A HREF="../../javax/accessibility/AccessibleComponent.html#isVisible()">isVisible</A></CODE> in interface <CODE><A HREF="../../javax/accessibility/AccessibleComponent.html">AccessibleComponent</A></CODE></DL></DD><DD><DL><DT><B>Returns:</B><DD>true if object is visible; otherwise, false</DL></DD></DL><HR><A NAME="setVisible(boolean)"><!-- --></A><H3>setVisible</H3><PRE>public void <B>setVisible</B>(boolean b)</PRE><DL><DD>Sets the visible state of the object.<DD><DL><DT><B>Specified by: </B><DD><CODE><A HREF="../../javax/accessibility/AccessibleComponent.html#setVisible(boolean)">setVisible</A></CODE> in interface <CODE><A HREF="../../javax/accessibility/AccessibleComponent.html">AccessibleComponent</A></CODE></DL></DD><DD><DL><DT><B>Parameters:</B><DD><CODE>b</CODE> - if true, shows this object; otherwise, hides it</DL></DD></DL><HR><A NAME="isShowing()"><!-- --></A><H3>isShowing</H3><PRE>public boolean <B>isShowing</B>()</PRE><DL><DD>Determines if the object is showing. This is determined by checking the visibility of the object and ancestors of the object. Note: this will return true even if the object is obscured by another (for example, it happens to be underneath a menu that was pulled down).<DD><DL><DT><B>Specified by: </B><DD><CODE><A HREF="../../javax/accessibility/AccessibleComponent.html#isShowing()">isShowing</A></CODE> in interface <CODE><A HREF="../../javax/accessibility/AccessibleComponent.html">AccessibleComponent</A></CODE></DL></DD><DD><DL><DT><B>Returns:</B><DD>true if the object is showing; otherwise, false</DL></DD></DL><HR><A NAME="contains(java.awt.Point)"><!-- --></A><H3>contains</H3><PRE>public boolean <B>contains</B>(<A HREF="../../java/awt/Point.html">Point</A> p)</PRE><DL><DD>Checks whether the specified point is within this object's bounds, where the point's x and y coordinates are defined to be relative to the coordinate system of the object.<DD><DL><DT><B>Specified by: </B><DD><CODE><A HREF="../../javax/accessibility/AccessibleComponent.html#contains(java.awt.Point)">contains</A></CODE> in interface <CODE><A HREF="../../javax/accessibility/AccessibleComponent.html">AccessibleComponent</A></CODE></DL></DD><DD><DL><DT><B>Parameters:</B><DD><CODE>p</CODE> - the Point relative to the coordinate system of the object<DT><B>Returns:</B><DD>true if object contains Point; otherwise false</DL></DD></DL><HR><A NAME="getLocationOnScreen()"><!-- --></A><H3>getLocationOnScreen</H3><PRE>public <A HREF="../../java/awt/Point.html">Point</A> <B>getLocationOnScreen</B>()</PRE><DL><DD>Returns the location of the object on the screen.<DD><DL><DT><B>Specified by: </B><DD><CODE><A HREF="../../javax/accessibility/AccessibleComponent.html#getLocationOnScreen()">getLocationOnScreen</A></CODE> in interface <CODE><A HREF="../../javax/accessibility/AccessibleComponent.html">AccessibleComponent</A></CODE></DL></DD><DD><DL><DT><B>Returns:</B><DD>location of object on screen -- can be null if this object is not on the screen</DL></DD></DL><HR><A NAME="getLocation()"><!-- --></A><H3>getLocation</H3><PRE>public <A HREF="../../java/awt/Point.html">Point</A> <B>getLocation</B>()</PRE><DL><DD>Gets the location of the object relative to the parent in the form of a point specifying the object's top-left corner in the screen's coordinate space.<DD><DL><DT><B>Specified by: </B><DD><CODE><A HREF="../../javax/accessibility/AccessibleComponent.html#getLocation()">getLocation</A></CODE> in interface <CODE><A HREF="../../javax/accessibility/AccessibleComponent.html">AccessibleComponent</A></CODE></DL></DD><DD><DL><DT><B>Returns:</B><DD>an instance of Point representing the top-left corner of the object's bounds in the coordinate space of the screen; null if this object or its parent are not on the screen</DL></DD></DL><HR><A NAME="setLocation(java.awt.Point)"><!-- --></A><H3>setLocation</H3><PRE>public void <B>setLocation</B>(<A HREF="../../java/awt/Point.html">Point</A> p)</PRE><DL><DD>Sets the location of the object relative to the parent.<DD><DL><DT><B>Specified by: </B><DD><CODE><A HREF="../../javax/accessibility/AccessibleComponent.html#setLocation(java.awt.Point)">setLocation</A></CODE> in interface <CODE><A HREF="../../javax/accessibility/AccessibleComponent.html">AccessibleComponent</A></CODE></DL></DD><DD>Following copied from interface: <CODE>javax.accessibility.AccessibleComponent</CODE></DD><DD><DL><DT><B>Parameters:</B><DD><CODE>p</CODE> - the new position for the top-left corner<DT><B>See Also: </B><DD><A HREF="../../javax/accessibility/AccessibleComponent.html#getLocation()"><CODE>AccessibleComponent.getLocation()</CODE></A></DL></DD></DL><HR><A NAME="getBounds()"><!-- --></A><H3>getBounds</H3><PRE>public <A HREF="../../java/awt/Rectangle.html">Rectangle</A> <B>getBounds</B>()</PRE><DL><DD><B>Description copied from interface: <CODE><A HREF="../../javax/accessibility/AccessibleComponent.html">AccessibleComponent</A></CODE></B></DD><DD>Gets the bounds of this object in the form of a Rectangle object. The bounds specify this object's width, height, and location relative to its parent.<DD><DL><DT><B>Specified by: </B><DD><CODE><A HREF="../../javax/accessibility/AccessibleComponent.html#getBounds()">getBounds</A></CODE> in interface <CODE><A HREF="../../javax/accessibility/AccessibleComponent.html">AccessibleComponent</A></CODE></DL></DD><DD>Following copied from interface: <CODE>javax.accessibility.AccessibleComponent</CODE></DD><DD><DL><DT><B>Returns:</B><DD>A rectangle indicating this component's bounds; null if this object is not on the screen.<DT><B>See Also: </B><DD><A HREF="../../javax/accessibility/AccessibleComponent.html#contains(java.awt.Point)"><CODE>AccessibleComponent.contains(java.awt.Point)</CODE></A></DL></DD></DL><HR><A NAME="setBounds(java.awt.Rectangle)"><!-- --></A><H3>setBounds</H3><PRE>public void <B>setBounds</B>(<A HREF="../../java/awt/Rectangle.html">Rectangle</A> r)</PRE><DL><DD><B>Description copied from interface: <CODE><A HREF="../../javax/accessibility/AccessibleComponent.html">AccessibleComponent</A></CODE></B></DD><DD>Sets the bounds of this object in the form of a Rectangle object. The bounds specify this object's width, height, and location relative to its parent.<DD><DL><DT><B>Specified by: </B><DD><CODE><A HREF="../../javax/accessibility/AccessibleComponent.html#setBounds(java.awt.Rectangle)">setBounds</A></CODE> in interface <CODE><A HREF="../../javax/accessibility/AccessibleComponent.html">AccessibleComponent</A></CODE></DL></DD><DD>Following copied from interface: <CODE>javax.accessibility.AccessibleComponent</CODE></DD><DD><DL><DT><B>Parameters:</B><DD><CODE>r</CODE> - rectangle indicating this component's bounds<DT><B>See Also: </B><DD><A HREF="../../javax/accessibility/AccessibleComponent.html#getBounds()"><CODE>AccessibleComponent.getBounds()</CODE></A></DL></DD></DL><HR><A NAME="getSize()"><!-- --></A><H3>getSize</H3><PRE>public <A HREF="../../java/awt/Dimension.html">Dimension</A> <B>getSize</B>()</PRE><DL><DD><B>Description copied from interface: <CODE><A HREF="../../javax/accessibility/AccessibleComponent.html">AccessibleComponent</A></CODE></B></DD><DD>Returns the size of this object in the form of a Dimension object. The height field of the Dimension object contains this object's height, and the width field of the Dimension object contains this object's width.<DD><DL><DT><B>Specified by: </B><DD><CODE><A HREF="../../javax/accessibility/AccessibleComponent.html#getSize()">getSize</A></CODE> in interface <CODE><A HREF="../../javax/accessibility/AccessibleComponent.html">AccessibleComponent</A></CODE></DL></DD><DD>Following copied from interface: <CODE>javax.accessibility.AccessibleComponent</CODE></DD><DD><DL><DT><B>Returns:</B><DD>A Dimension object that indicates the size of this component; null if this object is not on the screen<DT><B>See Also: </B><DD><A HREF="../../javax/accessibility/AccessibleComponent.html#setSize(java.awt.Dimension)"><CODE>AccessibleComponent.setSize(java.awt.Dimension)</CODE></A></DL></DD></DL><HR><A NAME="setSize(java.awt.Dimension)"><!-- --></A><H3>setSize</H3><PRE>public void <B>setSize</B>(<A HREF="../../java/awt/Dimension.html">Dimension</A> d)</PRE><DL><DD><B>Description copied from interface: <CODE><A HREF="../../javax/accessibility/AccessibleComponent.html">AccessibleComponent</A></CODE></B></DD><DD>Resizes this object so that it has width and height.<DD><DL><DT><B>Specified by: </B><DD><CODE><A HREF="../../javax/accessibility/AccessibleComponent.html#setSize(java.awt.Dimension)">setSize</A></CODE> in interface <CODE><A HREF="../../javax/accessibility/AccessibleComponent.html">AccessibleComponent</A></CODE></DL></DD><DD>Following copied from interface: <CODE>javax.accessibility.AccessibleComponent</CODE></DD><DD><DL><DT><B>Parameters:</B><DD><CODE>d</CODE> - The dimension specifying the new size of the object.<DT><B>See Also: </B><DD><A HREF="../../javax/accessibility/AccessibleComponent.html#getSize()"><CODE>AccessibleComponent.getSize()</CODE></A></DL></DD></DL><HR><A NAME="getAccessibleAt(java.awt.Point)"><!-- --></A><H3>getAccessibleAt</H3><PRE>public <A HREF="../../javax/accessibility/Accessible.html">Accessible</A> <B>getAccessibleAt</B>(<A HREF="../../java/awt/Point.html">Point</A> p)</PRE><DL><DD><B>Description copied from interface: <CODE><A HREF="../../javax/accessibility/AccessibleComponent.html">AccessibleComponent</A></CODE></B></DD><DD>Returns the Accessible child, if one exists, contained at the local coordinate Point.<DD><DL><DT><B>Specified by: </B><DD><CODE><A HREF="../../javax/accessibility/AccessibleComponent.html#getAccessibleAt(java.awt.Point)">getAccessibleAt</A></CODE> in interface <CODE><A HREF="../../javax/accessibility/AccessibleComponent.html">AccessibleComponent</A></CODE></DL></DD><DD>Following copied from interface: <CODE>javax.accessibility.AccessibleComponent</CODE></DD><DD><DL><DT><B>Parameters:</B><DD><CODE>p</CODE> - The point relative to the coordinate system of this object.<DT><B>Returns:</B><DD>the Accessible, if it exists, at the specified location; otherwise null</DL></DD></DL><HR><A NAME="isFocusTraversable()"><!-- --></A><H3>isFocusTraversable</H3><PRE>public boolean <B>isFocusTraversable</B>()</PRE><DL><DD><B>Description copied from interface: <CODE><A HREF="../../javax/accessibility/AccessibleComponent.html">AccessibleComponent</A></CODE></B></DD><DD>Returns whether this object can accept focus or not. Objects that can accept focus will also have the AccessibleState.FOCUSABLE state set in their AccessibleStateSets.<DD><DL><DT><B>Specified by: </B><DD><CODE><A HREF="../../javax/accessibility/AccessibleComponent.html#isFocusTraversable()">isFocusTraversable</A></CODE> in interface <CODE><A HREF="../../javax/accessibility/AccessibleComponent.html">AccessibleComponent</A></CODE></DL></DD><DD>Following copied from interface: <CODE>javax.accessibility.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -