patchtokenmarker.java

来自「优秀的打印控件全源代码,类似水晶表的设计器!」· Java 代码 · 共 49 行

JAVA
49
字号
/* * PatchTokenMarker.java - DIFF patch token marker * Copyright (C) 1999 Slava Pestov * * You may use and modify this package for any purpose. Redistribution is * permitted, in both source and binary form, provided that this notice * remains intact in all source distributions of this package. */package org.syntax.jedit.tokenmarker;import javax.swing.text.Segment;/** * Patch/diff token marker. * * @author Slava Pestov * @version $Id: PatchTokenMarker.java,v 1.2 2003/06/17 14:18:04 gt78 Exp $ */public class PatchTokenMarker extends TokenMarker{	public byte markTokensImpl(byte token, Segment line, int lineIndex)	{		if(line.count == 0)			return Token.NULL;		switch(line.array[line.offset])		{		case '+': case '>':			addToken(line.count,Token.KEYWORD1);			break;		case '-': case '<':			addToken(line.count,Token.KEYWORD2);			break;		case '@': case '*':			addToken(line.count,Token.KEYWORD3);			break;	        default:			addToken(line.count,Token.NULL);			break;		}		return Token.NULL;	}	public boolean supportsMultilineTokens()	{		return false;	}}

⌨️ 快捷键说明

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