TagFileInfo.java :  » Swing-Library » RText-1.1.0 » org » fife » ctags » Java Open Source

Java Open Source » Swing Library » RText 1.1.0 
RText 1.1.0 » org » fife » ctags » TagFileInfo.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() {
  }


}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.