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

📄 zcellid.java

📁 用Java写的报表.功能如下: 0.内建网络打印,网络预览功能! 1.文件操作。包括url 指定的文件。 2.全功能打印支持。包括打印预览。 3.Undo 和 redo。 4.合并单元格。 5.Cel
💻 JAVA
字号:
/*
 * put your module comment here
 * formatted with JxBeauty (c) johann.langhofer@nextra.at
 */
//Source file: F:\\JEZCell\\EZCell\\src\\ezcell\\ZCellID.java


package  ezcell;

import  java.io.*;


/**
 * <p>Title: </p>
 * <p>Description: </p>
 * <p>Copyright: Copyright (c) 2001</p>
 * <p>Company: </p>
 * @author unascribed
 * @version 1.0
 */
public class ZCellID
        implements Serializable, Cloneable {
    int row;
    int col;

    /**
     @roseuid 3BBC4E5D02EA
     */
    public ZCellID (int row, int col) {
        this.row = row;
        this.col = col;
    }

    /**
     @roseuid 3BBC4E5D02F5
     */
    private void readObject (ObjectInputStream ois) throws ClassNotFoundException, IOException {
        ois.defaultReadObject();
    }

    /**
     @roseuid 3BBC4E5D02F7
     */
    private void writeObject (ObjectOutputStream oos) throws IOException {
        oos.defaultWriteObject();
    }

    public Object clone () {
        Object obj = null;
        try {
            obj = super.clone();
        } catch (Exception e) {}
        return  obj;
    }
    public boolean equal(ZCellID cid)
    {
      return row == cid.row && col == cid.col;
    }
}



⌨️ 快捷键说明

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