⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 tablemodelevent.html

📁 API資料大全
💻 HTML
📖 第 1 页 / 共 2 页
字号:
<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Returns the last row that changed.</TD></TR><TR BGCOLOR="white" CLASS="TableRowColor"><TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"><CODE>&nbsp;int</CODE></FONT></TD><TD><CODE><B><A HREF="../../../javax/swing/event/TableModelEvent.html#getType()">getType</A></B>()</CODE><BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Returns the type of event - one of: INSERT, UPDATE and DELETE.</TD></TR></TABLE>&nbsp;<A NAME="methods_inherited_from_class_java.util.EventObject"><!-- --></A><TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" WIDTH="100%"><TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor"><TD><B>Methods inherited from class java.util.<A HREF="../../../java/util/EventObject.html">EventObject</A></B></TD></TR><TR BGCOLOR="white" CLASS="TableRowColor"><TD><CODE><A HREF="../../../java/util/EventObject.html#getSource()">getSource</A>, <A HREF="../../../java/util/EventObject.html#toString()">toString</A></CODE></TD></TR></TABLE>&nbsp;<A NAME="methods_inherited_from_class_java.lang.Object"><!-- --></A><TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" WIDTH="100%"><TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor"><TD><B>Methods inherited from class java.lang.<A HREF="../../../java/lang/Object.html">Object</A></B></TD></TR><TR BGCOLOR="white" CLASS="TableRowColor"><TD><CODE><A HREF="../../../java/lang/Object.html#clone()">clone</A>, <A HREF="../../../java/lang/Object.html#equals(java.lang.Object)">equals</A>, <A HREF="../../../java/lang/Object.html#finalize()">finalize</A>, <A HREF="../../../java/lang/Object.html#getClass()">getClass</A>, <A HREF="../../../java/lang/Object.html#hashCode()">hashCode</A>, <A HREF="../../../java/lang/Object.html#notify()">notify</A>, <A HREF="../../../java/lang/Object.html#notifyAll()">notifyAll</A>, <A HREF="../../../java/lang/Object.html#wait()">wait</A>, <A HREF="../../../java/lang/Object.html#wait(long)">wait</A>, <A HREF="../../../java/lang/Object.html#wait(long, int)">wait</A></CODE></TD></TR></TABLE>&nbsp;<P><!-- ============ FIELD DETAIL =========== --><A NAME="field_detail"><!-- --></A><TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" WIDTH="100%"><TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"><TD COLSPAN=1><FONT SIZE="+2"><B>Field Detail</B></FONT></TD></TR></TABLE><A NAME="INSERT"><!-- --></A><H3>INSERT</H3><PRE>public static final int <B>INSERT</B></PRE><DL><DD>Identifies the addtion of new rows or columns.</DL><HR><A NAME="UPDATE"><!-- --></A><H3>UPDATE</H3><PRE>public static final int <B>UPDATE</B></PRE><DL><DD>Identifies a change to existing data.</DL><HR><A NAME="DELETE"><!-- --></A><H3>DELETE</H3><PRE>public static final int <B>DELETE</B></PRE><DL><DD>Identifies the removal of rows or columns.</DL><HR><A NAME="HEADER_ROW"><!-- --></A><H3>HEADER_ROW</H3><PRE>public static final int <B>HEADER_ROW</B></PRE><DL><DD>Identifies the header row.</DL><HR><A NAME="ALL_COLUMNS"><!-- --></A><H3>ALL_COLUMNS</H3><PRE>public static final int <B>ALL_COLUMNS</B></PRE><DL><DD>Specifies all columns in a row or rows.</DL><HR><A NAME="type"><!-- --></A><H3>type</H3><PRE>protected int <B>type</B></PRE><DL></DL><HR><A NAME="firstRow"><!-- --></A><H3>firstRow</H3><PRE>protected int <B>firstRow</B></PRE><DL></DL><HR><A NAME="lastRow"><!-- --></A><H3>lastRow</H3><PRE>protected int <B>lastRow</B></PRE><DL></DL><HR><A NAME="column"><!-- --></A><H3>column</H3><PRE>protected int <B>column</B></PRE><DL></DL><!-- ========= CONSTRUCTOR DETAIL ======== --><A NAME="constructor_detail"><!-- --></A><TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" WIDTH="100%"><TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"><TD COLSPAN=1><FONT SIZE="+2"><B>Constructor Detail</B></FONT></TD></TR></TABLE><A NAME="TableModelEvent(javax.swing.table.TableModel)"><!-- --></A><H3>TableModelEvent</H3><PRE>public <B>TableModelEvent</B>(<A HREF="../../../javax/swing/table/TableModel.html">TableModel</A>&nbsp;source)</PRE><DL><DD>All row data in the table has changed, listeners should discard any state   that was based on the rows and requery the TableModel to get the new   row count and all the appropriate values.   The JTable will repaint the entire visible region on recieving   this event, querying the model for the cell values that are visble.   The structure of the table ie, the column names, types and order   have not changed.</DL><HR><A NAME="TableModelEvent(javax.swing.table.TableModel, int)"><!-- --></A><H3>TableModelEvent</H3><PRE>public <B>TableModelEvent</B>(<A HREF="../../../javax/swing/table/TableModel.html">TableModel</A>&nbsp;source,                       int&nbsp;row)</PRE><DL><DD>This row of data has been updated.   To denote the arrival of a completely new table with a different structure   use <code>HEADER_ROW</code> as the value for the <I>row</I>.   When the JTable recieves this event and its <I>autoCreateColumnsFromModel</I>   flag is set it discards any TableColumns that it had and reallocates   default ones in the order they appear in the model. This is the   same as calling <code>setModel(TableModel)</code> on the JTable.</DL><HR><A NAME="TableModelEvent(javax.swing.table.TableModel, int, int)"><!-- --></A><H3>TableModelEvent</H3><PRE>public <B>TableModelEvent</B>(<A HREF="../../../javax/swing/table/TableModel.html">TableModel</A>&nbsp;source,                       int&nbsp;firstRow,                       int&nbsp;lastRow)</PRE><DL><DD>The data in rows [<I>firstRow</I>, <I>lastRow</I>] have been updated.</DL><HR><A NAME="TableModelEvent(javax.swing.table.TableModel, int, int, int)"><!-- --></A><H3>TableModelEvent</H3><PRE>public <B>TableModelEvent</B>(<A HREF="../../../javax/swing/table/TableModel.html">TableModel</A>&nbsp;source,                       int&nbsp;firstRow,                       int&nbsp;lastRow,                       int&nbsp;column)</PRE><DL><DD>The cells in column <I>column</I> in the range   [<I>firstRow</I>, <I>lastRow</I>] have been updated.</DL><HR><A NAME="TableModelEvent(javax.swing.table.TableModel, int, int, int, int)"><!-- --></A><H3>TableModelEvent</H3><PRE>public <B>TableModelEvent</B>(<A HREF="../../../javax/swing/table/TableModel.html">TableModel</A>&nbsp;source,                       int&nbsp;firstRow,                       int&nbsp;lastRow,                       int&nbsp;column,                       int&nbsp;type)</PRE><DL><DD>The cells from (firstRow, column) to (lastRow, column) have been changed.   The <I>column</I> refers to the column index of the cell in the model's   co-ordinate system. When <I>column</I> is ALL_COLUMNS, all cells in the   specified range of rows are considered changed.   <p>  The <I>type</I> should be one of: INSERT, UPDATE and DELETE.</DL><!-- ============ METHOD DETAIL ========== --><A NAME="method_detail"><!-- --></A><TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" WIDTH="100%"><TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"><TD COLSPAN=1><FONT SIZE="+2"><B>Method Detail</B></FONT></TD></TR></TABLE><A NAME="getFirstRow()"><!-- --></A><H3>getFirstRow</H3><PRE>public int <B>getFirstRow</B>()</PRE><DL><DD>Returns the first row that changed.  HEADER_ROW means the meta data,  ie. names, types and order of the columns.</DL><HR><A NAME="getLastRow()"><!-- --></A><H3>getLastRow</H3><PRE>public int <B>getLastRow</B>()</PRE><DL><DD>Returns the last row that changed.</DL><HR><A NAME="getColumn()"><!-- --></A><H3>getColumn</H3><PRE>public int <B>getColumn</B>()</PRE><DL><DD>Returns the column for the event.  If the return  value is ALL_COLUMNS; it means every column in the specified  rows changed.</DL><HR><A NAME="getType()"><!-- --></A><H3>getType</H3><PRE>public int <B>getType</B>()</PRE><DL><DD>Returns the type of event - one of: INSERT, UPDATE and DELETE.</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/TableModelEvent.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/event/TableColumnModelEvent.html"><B>PREV CLASS</B></A>&nbsp;&nbsp;<A HREF="../../../javax/swing/event/TreeExpansionEvent.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="TableModelEvent.html" TARGET="_top"><B>NO FRAMES</B></A></FONT></TD></TR><TR><TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">  SUMMARY: &nbsp;INNER&nbsp;|&nbsp;<A HREF="#field_summary">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;<A HREF="#field_detail">FIELD</A>&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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -