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

📄 textmark.java

📁 和YACC一样
💻 JAVA
字号:
/*File:	 TextMark.javaAuthor:  zerksis d. umrigar (zdu@acm.org)Copyright (C) 1997 Zerksis D. UmrigarLast Update Time-stamp: "97/07/19 19:41:14 zdu"This code is distributed under the terms of the GNU General Public License.See the file COPYING with this distribution, or		http://www.fsf.org/copyleft/gpl.htmlTHERE IS ABSOLUTELY NO WARRANTY FOR THIS PROGRAM.*/package zdu.zydebug;import java.awt.Color;class TextMark {		//Marks within a line.  TextMark(int lo, int hi, Color color, TextMark succ) {    this.lo= lo; this.hi= hi; this.color= color; this.succ= succ;  }  int lo;		//Inclusive lower bound in string.  int hi;		//Exclusive upper bound in string.  Color color;		//Color to use in this background.  TextMark succ;	//Next mark in list.};

⌨️ 快捷键说明

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