org.opensolaris.opengrok.analysis
Class Definitions.Tag

java.lang.Object
  extended by org.opensolaris.opengrok.analysis.Definitions.Tag
All Implemented Interfaces:
java.io.Serializable
Enclosing class:
Definitions

public static class Definitions.Tag
extends java.lang.Object
implements java.io.Serializable

Class that represents a single tag.

See Also:
Serialized Form

Field Summary
 int line
          Line number of the tag.
 java.lang.String symbol
          The symbol used in the definition.
 java.lang.String text
          The full line on which the definition occurs.
 java.lang.String type
          The type of the tag.
 
Constructor Summary
protected Definitions.Tag(int line, java.lang.String symbol, java.lang.String type, java.lang.String text)
           
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

line

public final int line
Line number of the tag.


symbol

public final java.lang.String symbol
The symbol used in the definition.


type

public final java.lang.String type
The type of the tag.


text

public final java.lang.String text
The full line on which the definition occurs.

Constructor Detail

Definitions.Tag

protected Definitions.Tag(int line,
                          java.lang.String symbol,
                          java.lang.String type,
                          java.lang.String text)