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

📄 tagextensionfield.java

📁 具有不同语法高亮的编辑器实例
💻 JAVA
字号:
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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -