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

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

?? blankrecord.java

?? java 報表 to office文檔: 本包由java語言開發
?? JAVA
字號:
/* ====================================================================   Copyright 2002-2004   Apache Software Foundation   Licensed under the Apache License, Version 2.0 (the "License");   you may not use this file except in compliance with the License.   You may obtain a copy of the License at       http://www.apache.org/licenses/LICENSE-2.0   Unless required by applicable law or agreed to in writing, software   distributed under the License is distributed on an "AS IS" BASIS,   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.   See the License for the specific language governing permissions and   limitations under the License.==================================================================== */        /* * BlankRecord.java * * Created on December 10, 2001, 12:07 PM */package org.apache.poi.hssf.record;import org.apache.poi.util.LittleEndian;/** * Title:        Blank cell record <P> * Description:  Represents a column in a row with no value but with styling.<P> * REFERENCE:  PG 287 Microsoft Excel 97 Developer's Kit (ISBN: 1-57231-498-2)<P> * @author Andrew C. Oliver (acoliver at apache dot org) * @author Jason Height (jheight at chariot dot net dot au) * @version 2.0-pre */public class BlankRecord    extends Record    implements CellValueRecordInterface, Comparable{    public final static short sid = 0x201;    //private short             field_1_row;    private int             field_1_row;    private short             field_2_col;    private short             field_3_xf;    /** Creates a new instance of BlankRecord */    public BlankRecord()    {    }    /**     * Constructs a BlankRecord and sets its fields appropriately     *     * @param id     id must be 0x201 or an exception will be throw upon validation     * @param size  the size of the data area of the record     * @param data  data of the record (should not contain sid/len)     */    public BlankRecord(short id, short size, byte [] data)    {        super(id, size, data);    }    /**     * Constructs a BlankRecord and sets its fields appropriately     *     * @param id     id must be 0x201 or an exception will be throw upon validation     * @param size  the size of the data area of the record     * @param data  data of the record (should not contain sid/len)     * @param offset of the record's data     */    public BlankRecord(short id, short size, byte [] data, int offset)    {        super(id, size, data, offset);    }    protected void fillFields(byte [] data, short size, int offset)    {        //field_1_row = LittleEndian.getShort(data, 0 + offset);        field_1_row = LittleEndian.getUShort(data, 0 + offset);        field_2_col = LittleEndian.getShort(data, 2 + offset);        field_3_xf  = LittleEndian.getShort(data, 4 + offset);    }    /**     * called by constructor, should throw runtime exception in the event of a     * record passed with a differing ID.     *     * @param id alleged id for this record     */    protected void validateSid(short id)    {        if (id != sid)        {            throw new RecordFormatException("NOT A BLANKRECORD!");        }    }    /**     * set the row this cell occurs on     * @param row the row this cell occurs within     */    //public void setRow(short row)    public void setRow(int row)    {        field_1_row = row;    }    /**     * get the row this cell occurs on     *     * @return the row     */    //public short getRow()    public int getRow()    {        return field_1_row;    }    /**     * get the column this cell defines within the row     *     * @return the column     */    public short getColumn()    {        return field_2_col;    }    /**     * set the index of the extended format record to style this cell with     *     * @param xf - the 0-based index of the extended format     * @see org.apache.poi.hssf.record.ExtendedFormatRecord     */    public void setXFIndex(short xf)    {        field_3_xf = xf;    }    /**     * get the index of the extended format record to style this cell with     *     * @return extended format index     */    public short getXFIndex()    {        return field_3_xf;    }    /**     * set the column this cell defines within the row     *     * @param col the column this cell defines     */    public void setColumn(short col)    {        field_2_col = col;    }    public boolean isBefore(CellValueRecordInterface i)    {        if (this.getRow() > i.getRow())        {            return false;        }        if ((this.getRow() == i.getRow())                && (this.getColumn() > i.getColumn()))        {            return false;        }        if ((this.getRow() == i.getRow())                && (this.getColumn() == i.getColumn()))        {            return false;        }        return true;    }    public boolean isAfter(CellValueRecordInterface i)    {        if (this.getRow() < i.getRow())        {            return false;        }        if ((this.getRow() == i.getRow())                && (this.getColumn() < i.getColumn()))        {            return false;        }        if ((this.getRow() == i.getRow())                && (this.getColumn() == i.getColumn()))        {            return false;        }        return true;    }    public boolean isEqual(CellValueRecordInterface i)    {        return ((this.getRow() == i.getRow())                && (this.getColumn() == i.getColumn()));    }    public boolean isInValueSection()    {        return true;    }    public boolean isValue()    {        return true;    }    /**     * return the non static version of the id for this record.     */    public short getSid()    {        return BlankRecord.sid;    }    public String toString()    {        StringBuffer buffer = new StringBuffer();        buffer.append("[BLANK]\n");        buffer.append("row       = ").append(Integer.toHexString(getRow()))            .append("\n");        buffer.append("col       = ").append(Integer.toHexString(getColumn()))            .append("\n");        buffer.append("xf        = ")            .append(Integer.toHexString(getXFIndex())).append("\n");        buffer.append("[/BLANK]\n");        return buffer.toString();    }    /**     * called by the class that is responsible for writing this sucker.     * Subclasses should implement this so that their data is passed back in a     * byte array.     *     * @return byte array containing instance data     */    public int serialize(int offset, byte [] data)    {        LittleEndian.putShort(data, 0 + offset, sid);        LittleEndian.putShort(data, 2 + offset, ( short ) 6);        //LittleEndian.putShort(data, 4 + offset, getRow());        LittleEndian.putShort(data, 4 + offset, ( short ) getRow());        LittleEndian.putShort(data, 6 + offset, getColumn());        LittleEndian.putShort(data, 8 + offset, getXFIndex());        return getRecordSize();    }    public int getRecordSize()    {        return 10;    }    public int compareTo(Object obj)    {        CellValueRecordInterface loc = ( CellValueRecordInterface ) obj;        if ((this.getRow() == loc.getRow())                && (this.getColumn() == loc.getColumn()))        {            return 0;        }        if (this.getRow() < loc.getRow())        {            return -1;        }        if (this.getRow() > loc.getRow())        {            return 1;        }        if (this.getColumn() < loc.getColumn())        {            return -1;        }        if (this.getColumn() > loc.getColumn())        {            return 1;        }        return -1;    }    public boolean equals(Object obj)    {        if (!(obj instanceof CellValueRecordInterface))        {            return false;        }        CellValueRecordInterface loc = ( CellValueRecordInterface ) obj;        if ((this.getRow() == loc.getRow())                && (this.getColumn() == loc.getColumn()))        {            return true;        }        return false;    }    public Object clone() {      BlankRecord rec = new BlankRecord();      rec.field_1_row = field_1_row;      rec.field_2_col = field_2_col;      rec.field_3_xf = field_3_xf;      return rec;    }}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
久久国产精品72免费观看| 日韩福利电影在线| 不卡电影一区二区三区| 久久久www成人免费毛片麻豆| 99re8在线精品视频免费播放| 奇米影视一区二区三区小说| 一区二区三区在线影院| 国产精品护士白丝一区av| 色8久久人人97超碰香蕉987| 久久激情综合网| 午夜久久电影网| 一区二区三区欧美亚洲| 欧美激情自拍偷拍| 欧美videossexotv100| 美女视频免费一区| 午夜精品久久久久久久久| 一区在线观看免费| 欧美一区二区三区影视| 欧美日韩亚洲高清一区二区| 91一区二区在线| 久久国产精品免费| 中文字幕一区二区三区不卡| 久久精品欧美一区二区三区麻豆| 日韩一区二区影院| 欧美精品日韩一本| 国产精品888| 色88888久久久久久影院按摩| 成人av在线播放网站| 91香蕉视频污| 国产成人精品免费| 欧美日韩三级一区| a级高清视频欧美日韩| 成人激情小说乱人伦| 国产一区二区三区高清播放| 国产成人一区在线| 成人国产精品免费网站| 中文字幕av一区二区三区高| 成人18视频在线播放| 成人app网站| 色8久久精品久久久久久蜜| 欧美无乱码久久久免费午夜一区| 欧美三级欧美一级| 欧美最猛性xxxxx直播| 欧美色网站导航| 欧美一区欧美二区| 在线观看国产一区二区| 国产成人综合精品三级| 国产成人亚洲综合a∨猫咪| 成人av资源在线| 91国产免费观看| 91亚洲精品久久久蜜桃| 欧美日韩中文精品| 精品电影一区二区三区| 国产精品电影一区二区| 久久青草欧美一区二区三区| 国产精品二区一区二区aⅴ污介绍| 日韩伦理电影网| 免费成人在线视频观看| 国产乱码精品一区二区三区av | 蜜臀av一区二区在线免费观看| 久久99精品久久久| 91美女精品福利| 欧美一级艳片视频免费观看| 国产欧美日韩久久| 久久久久久毛片| 激情综合色综合久久| 成人丝袜高跟foot| 欧美日韩卡一卡二| 欧美极品xxx| 亚洲国产精品久久久久婷婷884 | 欧美伊人久久久久久久久影院| 日本午夜一区二区| 欧美日韩视频第一区| 欧美一区二区三区男人的天堂| 欧美国产在线观看| 欧美日韩大陆一区二区| 国产精品香蕉一区二区三区| 欧美视频三区在线播放| 亚洲人成在线播放网站岛国| 精品第一国产综合精品aⅴ| 亚洲免费观看在线视频| 亚洲私人黄色宅男| 欧美大胆一级视频| 国产欧美一区二区三区网站| 欧美三日本三级三级在线播放| 成人av片在线观看| 精品国产乱码久久久久久久久| 亚洲精品五月天| 福利一区福利二区| 国产乱码精品一品二品| 一区二区三区欧美视频| 国产精品午夜在线观看| 国产乱色国产精品免费视频| 日韩精品一级中文字幕精品视频免费观看 | 亚洲妇熟xx妇色黄| 日韩欧美色综合| 久久久777精品电影网影网| 日韩 欧美一区二区三区| 国产91精品精华液一区二区三区| 日本一区二区视频在线观看| 国产综合色产在线精品| 日本中文在线一区| 日韩三级视频在线看| 成人综合婷婷国产精品久久| 精品一区二区久久| 蜜桃av一区二区在线观看| 国产一区视频在线看| 午夜精品一区二区三区免费视频 | 久久99精品久久久久久| 色天天综合色天天久久| 97久久久精品综合88久久| 国产视频亚洲色图| 成人av先锋影音| 91精品国产aⅴ一区二区| 成人免费av资源| 欧美色图免费看| 91视频免费看| 91亚洲精品久久久蜜桃| 色婷婷av一区二区三区大白胸| 久久综合中文字幕| 国产成+人+日韩+欧美+亚洲| 毛片av一区二区| 国产高清不卡二三区| 亚洲人成亚洲人成在线观看图片| 国产亚洲精品7777| 国产精品一二三四区| 国产ts人妖一区二区| 亚洲三级免费观看| 五月天激情综合| 国产精品一卡二卡| 亚洲精品久久嫩草网站秘色| 不卡的av网站| 91精品国产高清一区二区三区蜜臀| 精品视频在线免费看| 麻豆国产精品官网| 国产精品久久一级| 99re热这里只有精品视频| 99视频在线精品| 国产精品对白交换视频 | 欧美精品一区二区在线播放| 韩国欧美一区二区| 亚洲欧美另类图片小说| 久久综合五月天婷婷伊人| 在线精品视频一区二区三四| 亚洲狠狠爱一区二区三区| 一区二区三区久久| 日韩一区二区在线播放| caoporm超碰国产精品| 日韩欧美国产一区二区在线播放| 亚洲成人第一页| 91精品国产aⅴ一区二区| 92精品国产成人观看免费| 91精品欧美久久久久久动漫| 免费观看一级特黄欧美大片| 亚洲欧美在线观看| 欧美日韩你懂的| 亚洲一级二级三级在线免费观看| 91一区二区在线观看| 国产精一区二区三区| 精品久久人人做人人爱| 五月综合激情婷婷六月色窝| 日韩视频免费观看高清完整版 | 99麻豆久久久国产精品免费| 亚洲黄色免费电影| 国产精品一区二区x88av| 久久综合精品国产一区二区三区| 日本二三区不卡| 欧美成人女星排行榜| 日韩毛片视频在线看| 欧美mv日韩mv国产| 91久久精品一区二区三区| 日韩久久一区二区| 欧美精品丝袜中出| 欧美在线观看视频在线| 91蜜桃在线免费视频| 欧美mv和日韩mv的网站| 国产精品一级在线| 国产精品1024久久| 免费成人av在线播放| 色婷婷综合久久久中文一区二区| 色爱区综合激月婷婷| 色就色 综合激情| 国产成人av福利| 蜜乳av一区二区三区| 理论电影国产精品| 国产69精品一区二区亚洲孕妇| 国产成人欧美日韩在线电影| 欧美精品v国产精品v日韩精品| 国产亚洲欧美日韩在线一区| 亚洲男人的天堂在线观看| 看国产成人h片视频| 欧美自拍偷拍午夜视频| 精品少妇一区二区三区免费观看| 成人免费在线视频| 国产精品羞羞答答xxdd| 91精品国产综合久久久蜜臀粉嫩| 亚洲视频电影在线| 成人午夜av影视| 久久美女艺术照精彩视频福利播放 | 婷婷成人激情在线网|