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

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

?? tablesorter.java

?? 出租車管理系統,為本人畢業設計. 還請大家多多指教了
?? JAVA
字號:
package car;/* * @(#)TableSorter.java	1.14 04/07/26 * * Copyright (c) 2004 Sun Microsystems, Inc. All Rights Reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * -Redistribution of source code must retain the above copyright notice, this *  list of conditions and the following disclaimer. * * -Redistribution in binary form must reproduce the above copyright notice, *  this list of conditions and the following disclaimer in the documentation *  and/or other materials provided with the distribution. * * Neither the name of Sun Microsystems, Inc. or the names of contributors may * be used to endorse or promote products derived from this software without * specific prior written permission. * * This software is provided "AS IS," without a warranty of any kind. ALL * EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES, INCLUDING * ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE * OR NON-INFRINGEMENT, ARE HEREBY EXCLUDED. SUN MIDROSYSTEMS, INC. ("SUN") * AND ITS LICENSORS SHALL NOT BE LIABLE FOR ANY DAMAGES SUFFERED BY LICENSEE * AS A RESULT OF USING, MODIFYING OR DISTRIBUTING THIS SOFTWARE OR ITS * DERIVATIVES. IN NO EVENT WILL SUN OR ITS LICENSORS BE LIABLE FOR ANY LOST * REVENUE, PROFIT OR DATA, OR FOR DIRECT, INDIRECT, SPECIAL, CONSEQUENTIAL, * INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED AND REGARDLESS OF THE THEORY * OF LIABILITY, ARISING OUT OF THE USE OF OR INABILITY TO USE THIS SOFTWARE, * EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. * * You acknowledge that this software is not designed, licensed or intended * for use in the design, construction, operation or maintenance of any * nuclear facility. *//* * @(#)TableSorter.java	1.14 04/07/26 *//** * A sorter for TableModels. The sorter has a model (conforming to TableModel) * and itself implements TableModel. TableSorter does not store or copy * the data in the TableModel, instead it maintains an array of * integers which it keeps the same size as the number of rows in its * model. When the model changes it notifies the sorter that something * has changed eg. "rowsAdded" so that its internal array of integers * can be reallocated. As requests are made of the sorter (like * getValueAt(row, col) it redirects them to its model via the mapping * array. That way the TableSorter appears to hold another copy of the table * with the rows in a different order. The sorting algorthm used is stable * which means that it does not move around rows when its comparison * function returns 0 to denote that they are equivalent. * * @version 1.14 07/26/04 * @author Philip Milne */import java.util.*;import javax.swing.table.TableModel;import javax.swing.event.TableModelEvent;// Imports for picking up mouse events from the JTable.import java.awt.event.MouseAdapter;import java.awt.event.MouseEvent;import java.awt.event.InputEvent;import javax.swing.JTable;import javax.swing.table.JTableHeader;import javax.swing.table.TableColumn;import javax.swing.table.TableColumnModel;public class TableSorter extends TableMap{    int             indexes[];    Vector          sortingColumns = new Vector();    boolean         ascending = true;    int compares;    public TableSorter()    {        indexes = new int[0]; // For consistency.    }    public TableSorter(TableModel model)    {        setModel(model);    }    public void setModel(TableModel model) {        super.setModel(model);        reallocateIndexes();    }    public int compareRowsByColumn(int row1, int row2, int column)    {        Class type = model.getColumnClass(column);        TableModel data = model;        // Check for nulls        Object o1 = data.getValueAt(row1, column);        Object o2 = data.getValueAt(row2, column);        // If both values are null return 0        if (o1 == null && o2 == null) {            return 0;        }        else if (o1 == null) { // Define null less than everything.            return -1;        }        else if (o2 == null) {            return 1;        }/* We copy all returned values from the getValue call in casean optimised model is reusing one object to return many values.The Number subclasses in the JDK are immutable and so will not be used inthis way but other subclasses of Number might want to do this to savespace and avoid unnecessary heap allocation.*/        if (type.getSuperclass() == java.lang.Number.class)            {                Number n1 = (Number)data.getValueAt(row1, column);                double d1 = n1.doubleValue();                Number n2 = (Number)data.getValueAt(row2, column);                double d2 = n2.doubleValue();                if (d1 < d2)                    return -1;                else if (d1 > d2)                    return 1;                else                    return 0;            }        else if (type == java.util.Date.class)            {                Date d1 = (Date)data.getValueAt(row1, column);                long n1 = d1.getTime();                Date d2 = (Date)data.getValueAt(row2, column);                long n2 = d2.getTime();                if (n1 < n2)                    return -1;                else if (n1 > n2)                    return 1;                else return 0;            }        else if (type == String.class)            {                String s1 = (String)data.getValueAt(row1, column);                String s2    = (String)data.getValueAt(row2, column);                int result = s1.compareTo(s2);                if (result < 0)                    return -1;                else if (result > 0)                    return 1;                else return 0;            }        else if (type == Boolean.class)            {                Boolean bool1 = (Boolean)data.getValueAt(row1, column);                boolean b1 = bool1.booleanValue();                Boolean bool2 = (Boolean)data.getValueAt(row2, column);                boolean b2 = bool2.booleanValue();                if (b1 == b2)                    return 0;                else if (b1) // Define false < true                    return 1;                else                    return -1;            }        else            {                Object v1 = data.getValueAt(row1, column);                String s1 = v1.toString();                Object v2 = data.getValueAt(row2, column);                String s2 = v2.toString();                int result = s1.compareTo(s2);                if (result < 0)                    return -1;                else if (result > 0)                    return 1;                else return 0;            }    }    public int compare(int row1, int row2)    {        compares++;        for(int level = 0; level < sortingColumns.size(); level++)            {                Integer column = (Integer)sortingColumns.elementAt(level);                int result = compareRowsByColumn(row1, row2, column.intValue());                if (result != 0)                    return ascending ? result : -result;            }        return 0;    }    public void  reallocateIndexes()    {        int rowCount = model.getRowCount();        // Set up a new array of indexes with the right number of elements        // for the new data model.        indexes = new int[rowCount];        // Initialise with the identity mapping.        for(int row = 0; row < rowCount; row++)            indexes[row] = row;    }    public void tableChanged(TableModelEvent e)    {	System.out.println("Sorter: tableChanged");        reallocateIndexes();        super.tableChanged(e);    }    public void checkModel()    {        if (indexes.length != model.getRowCount()) {            System.err.println("Sorter not informed of a change in model.");        }    }    public void  sort(Object sender)    {        checkModel();        compares = 0;        // n2sort();        // qsort(0, indexes.length-1);        shuttlesort((int[])indexes.clone(), indexes, 0, indexes.length);        System.out.println("Compares: "+compares);    }    public void n2sort() {        for(int i = 0; i < getRowCount(); i++) {            for(int j = i+1; j < getRowCount(); j++) {                if (compare(indexes[i], indexes[j]) == -1) {                    swap(i, j);                }            }        }    }    // This is a home-grown implementation which we have not had time    // to research - it may perform poorly in some circumstances. It    // requires twice the space of an in-place algorithm and makes    // NlogN assigments shuttling the values between the two    // arrays. The number of compares appears to vary between N-1 and    // NlogN depending on the initial order but the main reason for    // using it here is that, unlike qsort, it is stable.    public void shuttlesort(int from[], int to[], int low, int high) {        if (high - low < 2) {            return;        }        int middle = (low + high)/2;        shuttlesort(to, from, low, middle);        shuttlesort(to, from, middle, high);        int p = low;        int q = middle;        /* This is an optional short-cut; at each recursive call,        check to see if the elements in this subset are already        ordered.  If so, no further comparisons are needed; the        sub-array can just be copied.  The array must be copied rather        than assigned otherwise sister calls in the recursion might        get out of sinc.  When the number of elements is three they        are partitioned so that the first set, [low, mid), has one        element and and the second, [mid, high), has two. We skip the        optimisation when the number of elements is three or less as        the first compare in the normal merge will produce the same        sequence of steps. This optimisation seems to be worthwhile        for partially ordered lists but some analysis is needed to        find out how the performance drops to Nlog(N) as the initial        order diminishes - it may drop very quickly.  */        if (high - low >= 4 && compare(from[middle-1], from[middle]) <= 0) {            for (int i = low; i < high; i++) {                to[i] = from[i];            }            return;        }        // A normal merge.        for(int i = low; i < high; i++) {            if (q >= high || (p < middle && compare(from[p], from[q]) <= 0)) {                to[i] = from[p++];            }            else {                to[i] = from[q++];            }        }    }    public void swap(int i, int j) {        int tmp = indexes[i];        indexes[i] = indexes[j];        indexes[j] = tmp;    }    // The mapping only affects the contents of the data rows.    // Pass all requests to these rows through the mapping array: "indexes".    public Object getValueAt(int aRow, int aColumn)    {        checkModel();        return model.getValueAt(indexes[aRow], aColumn);    }    public void setValueAt(Object aValue, int aRow, int aColumn)    {        checkModel();        model.setValueAt(aValue, indexes[aRow], aColumn);    }    public void sortByColumn(int column) {        sortByColumn(column, true);    }    public void sortByColumn(int column, boolean ascending) {        this.ascending = ascending;        sortingColumns.removeAllElements();        sortingColumns.addElement(new Integer(column));        sort(this);        super.tableChanged(new TableModelEvent(this));    }    // There is no-where else to put this.    // Add a mouse listener to the Table to trigger a table sort    // when a column heading is clicked in the JTable.    public void addMouseListenerToHeaderInTable(JTable table) {        final TableSorter sorter = this;        final JTable tableView = table;        tableView.setColumnSelectionAllowed(false);        MouseAdapter listMouseListener = new MouseAdapter() {            public void mouseClicked(MouseEvent e) {                TableColumnModel columnModel = tableView.getColumnModel();                int viewColumn = columnModel.getColumnIndexAtX(e.getX());                int column = tableView.convertColumnIndexToModel(viewColumn);                if(e.getClickCount() == 1 && column != -1) {                    System.out.println("Sorting ...");                    int shiftPressed = e.getModifiers()&InputEvent.SHIFT_MASK;                    boolean ascending = (shiftPressed == 0);                    sorter.sortByColumn(column, ascending);                }             }         };        JTableHeader th = tableView.getTableHeader();        th.addMouseListener(listMouseListener);    }}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美吻胸吃奶大尺度电影| 亚洲成人动漫在线观看| 成人综合在线视频| 中文字幕第一区第二区| www.激情成人| 一区二区三区在线免费播放 | 免费一级片91| 2024国产精品| av色综合久久天堂av综合| 一区二区三区日韩精品| 91麻豆精品国产自产在线| 久久精品久久99精品久久| 国产亚洲欧美日韩在线一区| 91论坛在线播放| 亚洲成人av在线电影| 久久久噜噜噜久久人人看| 成人在线综合网| 亚洲一区国产视频| 精品1区2区在线观看| 99国产精品久久久久久久久久| 亚洲一区二区欧美激情| 欧美成人精品3d动漫h| fc2成人免费人成在线观看播放| 亚洲国产美女搞黄色| 久久影院午夜论| 在线观看免费亚洲| 国产精品一区专区| 亚洲国产一二三| 国产日韩欧美麻豆| 欧美日韩国产一二三| av亚洲精华国产精华精| 日韩电影在线一区二区| 中文字幕高清不卡| 91精品国产一区二区三区香蕉| 成人精品免费网站| 免费观看在线综合| 自拍偷拍国产精品| 久久奇米777| 欧美日韩你懂的| 国产91精品精华液一区二区三区 | 中文字幕不卡在线观看| 欧美精品v日韩精品v韩国精品v| 成人污污视频在线观看| 免费观看在线综合| 亚洲一区二区影院| 国产精品成人一区二区三区夜夜夜 | 亚洲激情校园春色| 中文字幕乱码亚洲精品一区| 日韩精品一区二区三区四区视频| 在线观看亚洲成人| 91香蕉视频黄| 国产成人免费视频精品含羞草妖精 | 欧美乱妇20p| 色综合中文字幕国产 | 欧美三级一区二区| 99久久精品国产一区二区三区| 精品一区二区在线观看| 偷拍自拍另类欧美| 亚洲自拍偷拍网站| 亚洲精品欧美综合四区| 1区2区3区欧美| 国产精品区一区二区三| 精品国产乱码久久久久久免费| 欧美日韩国产小视频| 日韩欧美国产小视频| 91成人在线精品| 91网站在线播放| 99久久精品国产精品久久| 成人综合婷婷国产精品久久| 国产一区二区三区免费观看| 久久国产人妖系列| 麻豆精品久久久| 久久疯狂做爰流白浆xx| 美女视频免费一区| 国产一区在线视频| 国产九色精品成人porny | 国产.欧美.日韩| 国产激情一区二区三区| 国产一区999| 国产麻豆成人精品| 岛国一区二区三区| bt欧美亚洲午夜电影天堂| 99久久婷婷国产综合精品| 99精品视频一区二区三区| 99国产一区二区三精品乱码| 91在线你懂得| 欧美在线你懂的| 在线观看91av| 日韩一区二区免费高清| 久久精品亚洲国产奇米99| 欧美极品少妇xxxxⅹ高跟鞋| 中文字幕一区免费在线观看| 亚洲欧美日韩中文字幕一区二区三区 | 成人爱爱电影网址| 色爱区综合激月婷婷| 欧美日韩国产区一| 26uuu亚洲综合色欧美| 中文一区二区完整视频在线观看| √…a在线天堂一区| 亚洲在线免费播放| 另类小说色综合网站| 国产成人久久精品77777最新版本 国产成人鲁色资源国产91色综 | 欧美日韩中文精品| 日韩一级完整毛片| 国产欧美日韩在线| 伊人夜夜躁av伊人久久| 日本午夜精品视频在线观看 | 日日欢夜夜爽一区| 国模无码大尺度一区二区三区| 高清国产一区二区三区| 在线观看日韩一区| 久久久激情视频| 亚洲一区二区三区小说| 国产精品自拍网站| 在线一区二区三区四区| 精品成人佐山爱一区二区| 亚洲视频小说图片| 狠狠色综合色综合网络| 91片黄在线观看| 精品欧美一区二区久久| 亚洲欧美激情插| 国产精品456| 欧美电影一区二区三区| 日韩一区有码在线| 裸体一区二区三区| 91麻豆swag| 国产女人18毛片水真多成人如厕| 亚洲一区在线观看免费观看电影高清| 精一区二区三区| 欧美丝袜丝交足nylons图片| 国产日韩精品一区| 蜜臀久久久久久久| 日韩丝袜情趣美女图片| 亚洲视频一二三区| 国产精品99精品久久免费| 91精品国产福利在线观看| 成人免费在线观看入口| 国产乱码精品一区二区三区五月婷 | 天天色天天爱天天射综合| 成人免费观看视频| 26uuu亚洲| 热久久久久久久| 在线观看国产精品网站| 中文字幕一区三区| 国产91色综合久久免费分享| 久久综合久久综合久久| 蜜桃精品在线观看| 91超碰这里只有精品国产| 亚洲精品国久久99热| 成人激情小说网站| 中文字幕高清一区| 国产成人免费视频网站| 久久久蜜桃精品| 精品系列免费在线观看| 日韩欧美成人激情| 日本女优在线视频一区二区| 欧美精品一二三区| 天天av天天翘天天综合网色鬼国产 | 制服丝袜亚洲色图| 亚洲香肠在线观看| 欧美在线不卡视频| 亚洲综合小说图片| 91精品1区2区| 一区二区三区小说| 色国产精品一区在线观看| 亚洲免费观看高清完整版在线观看| 成人一区二区三区| 亚洲欧洲成人精品av97| 99re这里只有精品首页| 亚洲视频精选在线| 在线视频中文字幕一区二区| 亚洲一二三四区不卡| 欧美视频在线一区二区三区| 亚洲成在人线在线播放| 欧美裸体一区二区三区| 日韩精品一级中文字幕精品视频免费观看 | 国产欧美日韩综合精品一区二区| 国产乱码精品一区二区三区av | 精品欧美乱码久久久久久| 韩国毛片一区二区三区| 国产欧美日韩在线| 91网站视频在线观看| 亚洲无人区一区| 日韩欧美区一区二| 国产乱码精品一区二区三区av | 亚洲图片欧美综合| 欧美丰满少妇xxxxx高潮对白| 蜜臀91精品一区二区三区| 久久综合九色综合欧美亚洲| 成人免费毛片嘿嘿连载视频| 自拍偷拍亚洲欧美日韩| 91精品久久久久久久91蜜桃| 激情欧美一区二区| 中文字幕亚洲一区二区va在线| 一本到不卡免费一区二区| 日本vs亚洲vs韩国一区三区 | 99久精品国产| 日韩高清在线一区| 国产日韩欧美一区二区三区综合| 一本在线高清不卡dvd|