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

📄 tcabstracttype.java

📁 Office格式转换代码
💻 JAVA
字号:
/* ==================================================================== * The Apache Software License, Version 1.1 * * Copyright (c) 2003 The Apache Software Foundation.  All rights * reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright *    notice, this list of conditions and the following disclaimer. * * 2. Redistributions 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. * * 3. The end-user documentation included with the redistribution, *    if any, must include the following acknowledgment: *       "This product includes software developed by the *        Apache Software Foundation (http://www.apache.org/)." *    Alternately, this acknowledgment may appear in the software itself, *    if and wherever such third-party acknowledgments normally appear. * * 4. The names "Apache" and "Apache Software Foundation" and *    "Apache POI" must not be used to endorse or promote products *    derived from this software without prior written permission. For *    written permission, please contact apache@apache.org. * * 5. Products derived from this software may not be called "Apache", *    "Apache POI", nor may "Apache" appear in their name, without *    prior written permission of the Apache Software Foundation. * * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED.  IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * ==================================================================== * * This software consists of voluntary contributions made by many * individuals on behalf of the Apache Software Foundation.  For more * information on the Apache Software Foundation, please see * <http://www.apache.org/>. */package org.apache.poi.hdf.model.hdftypes.definitions;import org.apache.poi.util.BitField;import org.apache.poi.util.LittleEndian;import org.apache.poi.util.StringUtil;import org.apache.poi.util.HexDump;import org.apache.poi.hdf.model.hdftypes.HDFType;/** * Table Cell Descriptor. * NOTE: This source is automatically generated please do not modify this file.  Either subclass or *       remove the record in src/records/definitions. * @author S. Ryan Ackley */public abstract class TCAbstractType    implements HDFType{    private  short field_1_rgf;        private BitField  fFirstMerged = new BitField(0x0001);        private BitField  fMerged = new BitField(0x0002);        private BitField  fVertical = new BitField(0x0004);        private BitField  fBackward = new BitField(0x0008);        private BitField  fRotateFont = new BitField(0x0010);        private BitField  fVertMerge = new BitField(0x0020);        private BitField  fVertRestart = new BitField(0x0040);        private BitField  vertAlign = new BitField(0x0180);    private  short field_2_unused;    private  short[] field_3_brcTop;    private  short[] field_4_brcLeft;    private  short[] field_5_brcBottom;    private  short[] field_6_brcRight;    public TCAbstractType()    {    }    /**     * Size of record (exluding 4 byte header)     */    public int getSize()    {        return 4 + 2 + 2 + 4 + 4 + 4 + 4;    }    /**     * Get the rgf field for the TC record.     */    public short getRgf()    {        return field_1_rgf;    }    /**     * Set the rgf field for the TC record.     */    public void setRgf(short field_1_rgf)    {        this.field_1_rgf = field_1_rgf;    }    /**     * Get the unused field for the TC record.     */    public short getUnused()    {        return field_2_unused;    }    /**     * Set the unused field for the TC record.     */    public void setUnused(short field_2_unused)    {        this.field_2_unused = field_2_unused;    }    /**     * Get the brcTop field for the TC record.     */    public short[] getBrcTop()    {        return field_3_brcTop;    }    /**     * Set the brcTop field for the TC record.     */    public void setBrcTop(short[] field_3_brcTop)    {        this.field_3_brcTop = field_3_brcTop;    }    /**     * Get the brcLeft field for the TC record.     */    public short[] getBrcLeft()    {        return field_4_brcLeft;    }    /**     * Set the brcLeft field for the TC record.     */    public void setBrcLeft(short[] field_4_brcLeft)    {        this.field_4_brcLeft = field_4_brcLeft;    }    /**     * Get the brcBottom field for the TC record.     */    public short[] getBrcBottom()    {        return field_5_brcBottom;    }    /**     * Set the brcBottom field for the TC record.     */    public void setBrcBottom(short[] field_5_brcBottom)    {        this.field_5_brcBottom = field_5_brcBottom;    }    /**     * Get the brcRight field for the TC record.     */    public short[] getBrcRight()    {        return field_6_brcRight;    }    /**     * Set the brcRight field for the TC record.     */    public void setBrcRight(short[] field_6_brcRight)    {        this.field_6_brcRight = field_6_brcRight;    }    /**     * Sets the fFirstMerged field value.     *      */    public void setFFirstMerged(boolean value)    {        field_1_rgf = (short)fFirstMerged.setBoolean(field_1_rgf, value);            }    /**     *      * @return  the fFirstMerged field value.     */    public boolean isFFirstMerged()    {        return fFirstMerged.isSet(field_1_rgf);            }    /**     * Sets the fMerged field value.     *      */    public void setFMerged(boolean value)    {        field_1_rgf = (short)fMerged.setBoolean(field_1_rgf, value);            }    /**     *      * @return  the fMerged field value.     */    public boolean isFMerged()    {        return fMerged.isSet(field_1_rgf);            }    /**     * Sets the fVertical field value.     *      */    public void setFVertical(boolean value)    {        field_1_rgf = (short)fVertical.setBoolean(field_1_rgf, value);            }    /**     *      * @return  the fVertical field value.     */    public boolean isFVertical()    {        return fVertical.isSet(field_1_rgf);            }    /**     * Sets the fBackward field value.     *      */    public void setFBackward(boolean value)    {        field_1_rgf = (short)fBackward.setBoolean(field_1_rgf, value);            }    /**     *      * @return  the fBackward field value.     */    public boolean isFBackward()    {        return fBackward.isSet(field_1_rgf);            }    /**     * Sets the fRotateFont field value.     *      */    public void setFRotateFont(boolean value)    {        field_1_rgf = (short)fRotateFont.setBoolean(field_1_rgf, value);            }    /**     *      * @return  the fRotateFont field value.     */    public boolean isFRotateFont()    {        return fRotateFont.isSet(field_1_rgf);            }    /**     * Sets the fVertMerge field value.     *      */    public void setFVertMerge(boolean value)    {        field_1_rgf = (short)fVertMerge.setBoolean(field_1_rgf, value);            }    /**     *      * @return  the fVertMerge field value.     */    public boolean isFVertMerge()    {        return fVertMerge.isSet(field_1_rgf);            }    /**     * Sets the fVertRestart field value.     *      */    public void setFVertRestart(boolean value)    {        field_1_rgf = (short)fVertRestart.setBoolean(field_1_rgf, value);            }    /**     *      * @return  the fVertRestart field value.     */    public boolean isFVertRestart()    {        return fVertRestart.isSet(field_1_rgf);            }    /**     * Sets the vertAlign field value.     *      */    public void setVertAlign(byte value)    {        field_1_rgf = (short)vertAlign.setValue(field_1_rgf, value);            }    /**     *      * @return  the vertAlign field value.     */    public byte getVertAlign()    {        return ( byte )vertAlign.getValue(field_1_rgf);            }}  // END OF CLASS

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -