namerecord$namerange.java

来自「实现JAVA界面的代码GWT」· Java 代码 · 共 55 行

JAVA
55
字号
// Decompiled by Jad v1.5.7g. Copyright 2000 Pavel Kouznetsov.
// Jad home page: http://www.geocities.com/SiliconValley/Bridge/8617/jad.html
// Decompiler options: packimports(3) fieldsfirst ansi 
// Source File Name:   NameRecord.java

package jxl.read.biff;


// Referenced classes of package jxl.read.biff:
//            NameRecord

public class NameRange
{

    private int columnFirst;
    private int rowFirst;
    private int columnLast;
    private int rowLast;
    private int externalSheet;

    public int getFirstColumn()
    {
        return columnFirst;
    }

    public int getFirstRow()
    {
        return rowFirst;
    }

    public int getLastColumn()
    {
        return columnLast;
    }

    public int getLastRow()
    {
        return rowLast;
    }

    public int getExternalSheet()
    {
        return externalSheet;
    }

    NameRange(int s1, int c1, int r1, int c2, int r2)
    {
        columnFirst = c1;
        rowFirst = r1;
        columnLast = c2;
        rowLast = r2;
        externalSheet = s1;
    }
}

⌨️ 快捷键说明

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