具有不同语法高亮的编辑器实例

源代码在线查看: tagfileinfo.java

软件大小: 4021 K
上传用户: johni
关键词: 编辑器
下载地址: 免注册下载 普通下载 VIP

相关代码

				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 TagFileInfo.
					 */
					public TagFileInfo() {
					}
				
				
				/*****************************************************************************/
				
				}
							

相关资源