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

📄 tagfileinfo.java

📁 具有不同语法高亮的编辑器实例
💻 JAVA
字号:
package org.fife.ctags;


/**
 * This class contains information about a tag found in a ctag file.  This
 * particular class is public domain.
 *
 * @author Robert Futrell
 * @version 0.01
 */
public class TagFileInfo {

	public int format; /* format of tag file (1 = original, 2 = extended) */
	public int sort; /* how is the tag file sorted? */

	/* information about the program which created this tag file */
	public String author;
	public String name;
	public String url;
	public String version;


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


	/**
	 * Creates a new <code>TagFileInfo</code>.
	 */
	public TagFileInfo() {
	}


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

}

⌨️ 快捷键说明

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