defaulttablecellrenderer.html
来自「API資料大全」· HTML 代码 · 共 689 行 · 第 1/5 页
HTML
689 行
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Frameset//EN""http://www.w3.org/TR/REC-html40/frameset.dtd"><!--NewPage--><HTML><HEAD><!-- Generated by javadoc on Thu Apr 27 23:41:46 PDT 2000 --><TITLE>Java 2 Platform SE v1.3: Class DefaultTableCellRenderer</TITLE><LINK REL ="stylesheet" TYPE="text/css" HREF="../../../stylesheet.css" TITLE="Style"></HEAD><BODY BGCOLOR="white"><!-- ========== START OF NAVBAR ========== --><A NAME="navbar_top"><!-- --></A><TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0"><TR><TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"><A NAME="navbar_top_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> </TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/DefaultTableCellRenderer.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A> </TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD> </TR></TABLE></TD><TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM><b>Java<sup><font size=-2>TM</font></sup> 2 Platform<br>Std. Ed. v1.3</b></EM></TD></TR><TR><TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../javax/swing/table/AbstractTableModel.html"><B>PREV CLASS</B></A> <A HREF="../../../javax/swing/table/DefaultTableCellRenderer.UIResource.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> <A HREF="DefaultTableCellRenderer.html" TARGET="_top"><B>NO FRAMES</B></A></FONT></TD></TR><TR><TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> SUMMARY: <A HREF="#inner_class_summary">INNER</A> | <A HREF="#field_summary">FIELD</A> | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD><TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">DETAIL: <A HREF="#field_detail">FIELD</A> | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD></TR></TABLE><!-- =========== END OF NAVBAR =========== --><HR><!-- ======== START OF CLASS DATA ======== --><H2><FONT SIZE="-1">javax.swing.table</FONT><BR>Class DefaultTableCellRenderer</H2><PRE><A HREF="../../../java/lang/Object.html">java.lang.Object</A> | +--<A HREF="../../../java/awt/Component.html">java.awt.Component</A> | +--<A HREF="../../../java/awt/Container.html">java.awt.Container</A> | +--<A HREF="../../../javax/swing/JComponent.html">javax.swing.JComponent</A> | +--<A HREF="../../../javax/swing/JLabel.html">javax.swing.JLabel</A> | +--<B>javax.swing.table.DefaultTableCellRenderer</B></PRE><DL><DT><B>All Implemented Interfaces:</B> <DD><A HREF="../../../javax/accessibility/Accessible.html">Accessible</A>, <A HREF="../../../java/awt/image/ImageObserver.html">ImageObserver</A>, <A HREF="../../../java/awt/MenuContainer.html">MenuContainer</A>, <A HREF="../../../java/io/Serializable.html">Serializable</A>, <A HREF="../../../javax/swing/SwingConstants.html">SwingConstants</A>, <A HREF="../../../javax/swing/table/TableCellRenderer.html">TableCellRenderer</A></DD></DL><DL><DT><B>Direct Known Subclasses:</B> <DD><A HREF="../../../javax/swing/table/DefaultTableCellRenderer.UIResource.html">DefaultTableCellRenderer.UIResource</A></DD></DL><HR><DL><DT>public class <B>DefaultTableCellRenderer</B><DT>extends <A HREF="../../../javax/swing/JLabel.html">JLabel</A><DT>implements <A HREF="../../../javax/swing/table/TableCellRenderer.html">TableCellRenderer</A>, <A HREF="../../../java/io/Serializable.html">Serializable</A></DL><P>The standard class for rendering (displaying) individual cells in a <code>JTable</code>. <p> <strong><a name="override">Implementation Note:</a></strong> This class inherits from <code>JLabel</code>, a standard component class. However <code>JTable</code> employs a unique mechanism for rendering its cells and therefore requires some slightly modified behavior from its cell renderer. The table class defines a single cell renderer and uses it as a as a rubber-stamp for rendering all cells in the table; it renders the first cell, changes the contents of that cell renderer, shifts the origin to the new location, re-draws it, and so on. The standard <code>JLabel</code> component was not designed to be used this way and we want to avoid triggering a <code>revalidate</code> each time the cell is drawn. This would greatly decrease performance because the <code>revalidate</code> message would be passed up the hierarchy of the container to determine whether any other components would be affected. So this class overrides the <code>validate</code>, <code>revalidate</code>, <code>repaint</code>, and <code>firePropertyChange</code> methods to be no-ops. If you write your own renderer, please keep this performance consideration in mind. <p> <strong>Warning:</strong> Serialized objects of this class will not be compatible with future Swing releases. The current serialization support is appropriate for short term storage or RMI between applications running the same version of Swing. A future release of Swing will provide support for long term persistence.<P><DL><DT><B>See Also: </B><DD><A HREF="../../../javax/swing/JTable.html"><CODE>JTable</CODE></A>, <A HREF="../../../serialized-form.html#javax.swing.table.DefaultTableCellRenderer">Serialized Form</A></DL><HR><P><!-- ======== INNER CLASS SUMMARY ======== --><A NAME="inner_class_summary"><!-- --></A><TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" WIDTH="100%"><TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"><TD COLSPAN=2><FONT SIZE="+2"><B>Inner Class Summary</B></FONT></TD></TR><TR BGCOLOR="white" CLASS="TableRowColor"><TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"><CODE>static class</CODE></FONT></TD><TD><CODE><B><A HREF="../../../javax/swing/table/DefaultTableCellRenderer.UIResource.html">DefaultTableCellRenderer.UIResource</A></B></CODE><BR> A subclass of <code>DefaultTableCellRenderer</code> that
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?