亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? jtable.java

?? linux下建立JAVA虛擬機的源碼KAFFE
?? JAVA
?? 第 1 頁 / 共 5 頁
字號:
/* JTable.java --    Copyright (C) 2002, 2004, 2005, 2006  Free Software Foundation, Inc.This file is part of GNU Classpath.GNU Classpath is free software; you can redistribute it and/or modifyit under the terms of the GNU General Public License as published bythe Free Software Foundation; either version 2, or (at your option)any later version.GNU Classpath is distributed in the hope that it will be useful, butWITHOUT ANY WARRANTY; without even the implied warranty ofMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNUGeneral Public License for more details.You should have received a copy of the GNU General Public Licensealong with GNU Classpath; see the file COPYING.  If not, write to theFree Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA02110-1301 USA.Linking this library statically or dynamically with other modules ismaking a combined work based on this library.  Thus, the terms andconditions of the GNU General Public License cover the wholecombination.As a special exception, the copyright holders of this library give youpermission to link this library with independent modules to produce anexecutable, regardless of the license terms of these independentmodules, and to copy and distribute the resulting executable underterms of your choice, provided that you also meet, for each linkedindependent module, the terms and conditions of the license of thatmodule.  An independent module is a module which is not derived fromor based on this library.  If you modify this library, you may extendthis exception to your version of the library, but you are notobligated to do so.  If you do not wish to do so, delete thisexception statement from your version. */package javax.swing;import java.awt.Color;import java.awt.Component;import java.awt.Cursor;import java.awt.Dimension;import java.awt.Font;import java.awt.FontMetrics;import java.awt.Point;import java.awt.Rectangle;import java.awt.event.FocusListener;import java.beans.PropertyChangeEvent;import java.beans.PropertyChangeListener;import java.text.DateFormat;import java.text.NumberFormat;import java.util.Date;import java.util.EventObject;import java.util.Hashtable;import java.util.Locale;import java.util.Vector;import javax.accessibility.Accessible;import javax.accessibility.AccessibleComponent;import javax.accessibility.AccessibleContext;import javax.accessibility.AccessibleExtendedTable;import javax.accessibility.AccessibleRole;import javax.accessibility.AccessibleSelection;import javax.accessibility.AccessibleStateSet;import javax.accessibility.AccessibleTable;import javax.accessibility.AccessibleTableModelChange;import javax.swing.event.CellEditorListener;import javax.swing.event.ChangeEvent;import javax.swing.event.ListSelectionEvent;import javax.swing.event.ListSelectionListener;import javax.swing.event.TableColumnModelEvent;import javax.swing.event.TableColumnModelListener;import javax.swing.event.TableModelEvent;import javax.swing.event.TableModelListener;import javax.swing.plaf.TableUI;import javax.swing.table.DefaultTableCellRenderer;import javax.swing.table.DefaultTableColumnModel;import javax.swing.table.DefaultTableModel;import javax.swing.table.JTableHeader;import javax.swing.table.TableCellEditor;import javax.swing.table.TableCellRenderer;import javax.swing.table.TableColumn;import javax.swing.table.TableColumnModel;import javax.swing.table.TableModel;/** * The table component, displaying information, organized in rows and columns. * The table can be placed in the scroll bar and have the optional header * that is always visible. Cell values may be editable after double clicking * on the cell. Cell columns may have various data types, that are  * displayed and edited by the different renderers and editors. It is possible * to set different column width. The columns are also resizeable by  * dragging the column boundary in the header. */public class JTable  extends JComponent  implements TableModelListener, Scrollable, TableColumnModelListener,             ListSelectionListener, CellEditorListener, Accessible{  /**   * Provides accessibility support for <code>JTable</code>.   *   * @author Roman Kennke (kennke@aicas.com)   */  protected class AccessibleJTable    extends AccessibleJComponent    implements AccessibleSelection, ListSelectionListener, TableModelListener,    TableColumnModelListener, CellEditorListener, PropertyChangeListener,    AccessibleExtendedTable  {    /**     * Provides accessibility support for table cells.     *     * @author Roman Kennke (kennke@aicas.com)     */    protected class AccessibleJTableCell      extends AccessibleContext      implements Accessible, AccessibleComponent    {      /**       * The table of this cell.       */      private JTable table;      /**       * The row index of this cell.       */      private int row;      /**       * The column index of this cell.       */      private int column;      /**       * The index of this cell inside the AccessibleJTable parent.       */      private int index;      /**       * Creates a new <code>AccessibleJTableCell</code>.       *       * @param t the table       * @param r the row       * @param c the column       * @param i the index of this cell inside the accessible table parent       */      public AccessibleJTableCell(JTable t, int r, int c, int i)      {        table = t;        row = r;        column = c;        index = i;      }      /**       * Returns the accessible row for the table cell.       *       * @return the accessible row for the table cell       */      public AccessibleRole getAccessibleRole()      {        // TODO: What is the role of the table cell?        return AccessibleRole.UNKNOWN;      }      /**       * Returns the accessible state set of this accessible table cell.       *       * @return the accessible state set of this accessible table cell       */      public AccessibleStateSet getAccessibleStateSet()      {        // TODO: What state shoiuld be returned here?        return new AccessibleStateSet();      }      /**       * Returns the index of this cell in the parent object.       *       * @return the index of this cell in the parent object       */      public int getAccessibleIndexInParent()      {        return index;      }      /**       * Returns the number of children of this object. Table cells cannot have       * children, so we return <code>0</code> here.       *       * @return <code>0</code>       */      public int getAccessibleChildrenCount()      {        return 0;      }      /**       * Returns the accessible child at index <code>i</code>. Table cells       * don't have children, so we return <code>null</code> here.       *       * @return <code>null</code>       */      public Accessible getAccessibleChild(int i)      {        return null;      }      /**       * Returns the locale setting for this accessible table cell.       *       * @return the locale setting for this accessible table cell       */      public Locale getLocale()      {        // TODO: For now, we return english here. This must be fixed as soon        // as we have a localized Swing.        return Locale.ENGLISH;      }      /**       * Returns the accessible context of this table cell. Since accessible       * table cells are their own accessible context, we return       * <code>this</code>.       *       * @return the accessible context of this table cell       */      public AccessibleContext getAccessibleContext()      {        return this;      }      /**       * Returns the background color of this cell.       *       * @return the background color of this cell       */      public Color getBackground()      {        return table.getBackground();      }      /**       * Sets the background of the cell. Since table cells cannot have       * individual background colors, this method does nothing. Set the       * background directly on the table instead.       *        * @param color not used       */      public void setBackground(Color color)      {        // This method does nothing. See API comments.      }      /**       * Returns the foreground color of the table cell.       *       * @return the foreground color of the table cell       */      public Color getForeground()      {        return table.getForeground();      }      /**       * Sets the foreground of the cell. Since table cells cannot have       * individual foreground colors, this method does nothing. Set the       * foreground directly on the table instead.       *        * @param color not used       */      public void setForeground(Color color)      {        // This method does nothing. See API comments.      }      /**       * Returns the cursor for this table cell.       *       * @return the cursor for this table cell       */      public Cursor getCursor()      {        return table.getCursor();      }      /**       * Sets the cursor of the cell. Since table cells cannot have       * individual cursors, this method does nothing. Set the       * cursor directly on the table instead.       *        * @param cursor not used       */      public void setCursor(Cursor cursor)      {        // This method does nothing. See API comments.      }      /**       * Returns the font of the table cell.       *       * @return the font of the table cell       */      public Font getFont()      {        return table.getFont();      }      /**       * Sets the font of the cell. Since table cells cannot have       * individual fonts, this method does nothing. Set the       * font directly on the table instead.       *        * @param font not used       */      public void setFont(Font font)      {        // This method does nothing. See API comments.      }      /**       * Returns the font metrics for a specified font.       *       * @param font the font for which we return the metrics       *       * @return the font metrics for a specified font       */      public FontMetrics getFontMetrics(Font font)      {        return table.getFontMetrics(font);      }      /**       * Returns <code>true</code> if this table cell is enabled,       * <code>false</code> otherwise.       *       * @return <code>true</code> if this table cell is enabled,       *         <code>false</code> otherwise       */      public boolean isEnabled()      {        return table.isEnabled();      }      /**       * Table cells cannot be disabled or enabled individually, so this method       * does nothing. Set the enabled flag on the table itself.       *       * @param b not used here       */      public void setEnabled(boolean b)      {        // This method does nothing. See API comments.      }      /**       * Returns <code>true</code> if this cell is visible, <code>false</code>       * otherwise.       *       * @return <code>true</code> if this cell is visible, <code>false</code>       *         otherwise       */      public boolean isVisible()      {        return table.isVisible();      }      /**       * The visibility cannot be set on individual table cells, so this method       * does nothing. Set the visibility on the table itself.       *       * @param b not used       */      public void setVisible(boolean b)      {        // This method does nothing. See API comments.      }      /**       * Returns <code>true</code> if this table cell is currently showing on       * screen.       *       * @return <code>true</code> if this table cell is currently showing on       *         screen       */      public boolean isShowing()      {        return table.isShowing();      }      /**       * Returns <code>true</code> if this table cell contains the location       * at <code>point</code>, <code>false</code> otherwise.       * <code>point</code> is interpreted as relative to the coordinate system       * of the table cell.       *       * @return <code>true</code> if this table cell contains the location       *         at <code>point</code>, <code>false</code> otherwise       */      public boolean contains(Point point)      {        Rectangle cellRect = table.getCellRect(row, column, true);        cellRect.x = 0;        cellRect.y = 0;        return cellRect.contains(point);      }      /**       * Returns the screen location of the table cell.       *       * @return the screen location of the table cell       */      public Point getLocationOnScreen()      {        Point tableLoc = table.getLocationOnScreen();        Rectangle cellRect = table.getCellRect(row, column, true);        tableLoc.x += cellRect.x;        tableLoc.y += cellRect.y;        return tableLoc;      }      /**       * Returns the location of this cell relative to the table's bounds.       *       * @return the location of this cell relative to the table's bounds       */      public Point getLocation()      {        Rectangle cellRect = table.getCellRect(row, column, true);        return new Point(cellRect.x, cellRect.y);      }      /**       * The location of the table cells cannot be manipulated directly, so       * this method does nothing.       *       * @param point not used       */      public void setLocation(Point point)      {

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
精品在线亚洲视频| 国产在线观看免费一区| 久久久不卡影院| 在线观看区一区二| 国产精品一区三区| 日韩精品亚洲专区| 亚洲视频每日更新| 久久久久国产精品麻豆ai换脸| 在线观看91视频| 成人v精品蜜桃久久一区| 免费欧美日韩国产三级电影| 亚洲免费观看高清在线观看| 久久久久国产精品厨房| 欧美日韩一本到| 色哟哟在线观看一区二区三区| 国产一区在线精品| 午夜激情一区二区三区| 亚洲欧洲制服丝袜| 欧美极品美女视频| 欧美精品一区在线观看| 欧美日韩精品三区| 91免费版pro下载短视频| 成人免费不卡视频| 国产一区二区毛片| 免费在线视频一区| 婷婷中文字幕综合| 一个色综合av| 一区二区三区中文字幕电影| 成人欧美一区二区三区小说| 国产色产综合色产在线视频| 亚洲精品在线观看网站| 欧美一区二区黄色| 欧美日韩精品高清| 欧美在线观看你懂的| 日本韩国欧美在线| 精品国产免费视频| 91精品国产色综合久久不卡电影| 欧美午夜精品久久久久久超碰| 91久久久免费一区二区| 一本色道久久综合精品竹菊| 91免费看`日韩一区二区| aaa亚洲精品一二三区| 99精品视频在线播放观看| aaa亚洲精品| 91免费国产在线| 欧美怡红院视频| 在线观看国产一区二区| 欧美午夜精品电影| 欧美猛男gaygay网站| 欧美精品久久99| 日韩欧美在线观看一区二区三区| 日韩午夜精品电影| 欧美大片在线观看| 26uuuu精品一区二区| 26uuu国产一区二区三区| 亚洲精品一区在线观看| 国产午夜精品久久久久久免费视| 久久久精品国产免大香伊| 亚洲国产精品成人综合色在线婷婷| 日本一区二区三区dvd视频在线| 中文天堂在线一区| 亚洲人成网站色在线观看| 一二三四区精品视频| 日韩国产精品久久| 久久99精品久久久久久国产越南| 国产精品亚洲午夜一区二区三区| av男人天堂一区| 在线观看免费亚洲| 欧美一卡二卡三卡| 国产亚洲一区二区三区在线观看| 亚洲欧美综合色| 亚洲成人在线免费| 精品一区二区成人精品| 9i看片成人免费高清| 精品视频全国免费看| 久久综合99re88久久爱| 亚洲日本韩国一区| 奇米影视一区二区三区小说| 国产福利精品一区| 色成年激情久久综合| 欧美一区二区三区不卡| 国产精品国产a| 日本中文一区二区三区| 从欧美一区二区三区| 欧美视频中文字幕| 国产欧美一区二区三区鸳鸯浴| 亚洲综合激情网| 国产一区久久久| 欧美日韩国产不卡| 亚洲国产精品传媒在线观看| 婷婷六月综合网| 不卡的av中国片| 日韩三级.com| 中文字幕在线免费不卡| 美女国产一区二区三区| 91一区在线观看| 精品国精品国产尤物美女| 亚洲激情校园春色| 国产精品一区专区| 7777精品久久久大香线蕉| 亚洲欧洲色图综合| 国产综合色产在线精品| 精品婷婷伊人一区三区三| 久久青草欧美一区二区三区| 三级久久三级久久久| 91美女片黄在线观看91美女| 国产情人综合久久777777| 日韩电影在线观看一区| 欧美亚洲一区三区| 国产精品灌醉下药二区| 国产精品资源网| 日韩三级在线观看| 午夜精品久久久久久| 色伊人久久综合中文字幕| 国产日韩一级二级三级| 麻豆精品一二三| 欧美精品色一区二区三区| 亚洲三级免费观看| 成人福利视频网站| 久久午夜色播影院免费高清| 人人爽香蕉精品| 欧美日韩中文字幕一区二区| 夜夜揉揉日日人人青青一国产精品 | 国产一区二区h| 日韩欧美黄色影院| 日韩av高清在线观看| 欧美日韩小视频| 亚洲国产日日夜夜| 欧洲在线/亚洲| 亚洲永久免费av| 91久久精品网| 樱桃国产成人精品视频| 91麻豆免费观看| 亚洲免费av高清| 色婷婷久久99综合精品jk白丝| 中文字幕一区av| 91热门视频在线观看| 国产欧美视频一区二区| 国产大片一区二区| 国产亚洲成年网址在线观看| 国产超碰在线一区| 国产欧美日韩综合精品一区二区 | 九九在线精品视频| 欧美v亚洲v综合ⅴ国产v| 精品一区二区在线播放| 精品av久久707| 国产福利一区二区三区视频在线 | 欧美精品三级日韩久久| 日韩国产在线观看一区| 欧美一区二区三区在线观看 | 欧美视频在线观看一区二区| 亚洲成人一区二区在线观看| 欧美一区二区三区性视频| 美女视频黄 久久| 久久久精品免费网站| 成人一二三区视频| 亚洲欧美激情视频在线观看一区二区三区| 色久综合一二码| 性感美女久久精品| 日韩欧美激情四射| 国产成人自拍网| 自拍偷在线精品自拍偷无码专区| 在线免费av一区| 琪琪久久久久日韩精品| 久久久欧美精品sm网站| 91色.com| 美女一区二区三区在线观看| 久久只精品国产| 91偷拍与自偷拍精品| 亚洲mv在线观看| 久久久久久电影| 欧美中文字幕一区二区三区亚洲 | 麻豆成人久久精品二区三区红| wwww国产精品欧美| kk眼镜猥琐国模调教系列一区二区 | 国产在线播精品第三| 国产精品传媒入口麻豆| 欧美久久久久久蜜桃| 成人夜色视频网站在线观看| 一区二区欧美精品| 欧美tickling网站挠脚心| 97久久超碰精品国产| 日本成人在线看| 国产精品色哟哟网站| 欧美日韩在线观看一区二区 | 色综合欧美在线视频区| 蜜桃视频一区二区三区| 国产精品久久看| 欧美一区二区三区免费| caoporm超碰国产精品| 欧美aaaaa成人免费观看视频| 成人免费在线观看入口| 日韩三级视频在线观看| 91麻豆国产福利在线观看| 精品在线一区二区| 亚洲国产你懂的| 中文字幕一区三区| 日韩美女主播在线视频一区二区三区| 91啪亚洲精品| 丰满少妇久久久久久久|