tagextensionfield.java

来自「具有不同语法高亮的编辑器实例」· Java 代码 · 共 32 行

JAVA
32
字号
package org.fife.ctags;


/**
 * This class contains information about an extension field for a tag.
 * These exist at the end of the tag in the form "key:value".  This particular
 * class is public domain.
 *
 * @author Robert Futrell
 * @version 0.01
 */
public class TagExtensionField {

	public String key;		/* the key of the extension field */
	public String value;	/* the value of the extension field (may be an empty string) */


/*****************************************************************************/


	/**
	 * Creates a new <code>TagExtensionField</code>.
	 */
	public TagExtensionField(String key, String value) {
		this.key = key;
		this.value = value;
	}


/*****************************************************************************/

}

⌨️ 快捷键说明

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