📄 txtline.java
字号:
package com.ismyway.anyview;
/**
* <p>Title: AnyView</p>
*
* <p>Description: E680(I) Reader</p>
*
* <p>Copyright: Copyright (c) 2005</p>
*
* <p>Company: www.ismyway.com</p>
*
* @author ZhangJian
* @version 1.0
*/
////////////////////////////////////////
//
// 保存每一行的信息
// offest: 此行在文件中的偏移位置
// lenght: 此长的长度
//
////////////////////////////////////////
public class TxtLine {
public int offset = 0;
public int lenght = 0;
public TxtLine() {
this(0, 0);
}
public TxtLine(int offset, int lenght) {
this.offset = offset;
this.lenght = lenght;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -