nu.validator.htmlparser.impl
Class PushedLocation

java.lang.Object
  extended by nu.validator.htmlparser.impl.PushedLocation

public class PushedLocation
extends Object


Field Summary
private  int col
           
private  int colPrev
           
private  int line
           
private  int linePrev
           
private  PushedLocation next
           
private  boolean nextCharOnNewLine
           
private  String publicId
           
private  String systemId
           
 
Constructor Summary
PushedLocation(int line, int linePrev, int col, int colPrev, boolean nextCharOnNewLine, String publicId, String systemId, PushedLocation next)
           
 
Method Summary
 int getCol()
          Returns the col.
 int getColPrev()
          Returns the colPrev.
 int getLine()
          Returns the line.
 int getLinePrev()
          Returns the linePrev.
 PushedLocation getNext()
          Returns the next.
 String getPublicId()
          Returns the publicId.
 String getSystemId()
          Returns the systemId.
 boolean isNextCharOnNewLine()
          Returns the nextCharOnNewLine.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

line

private final int line

linePrev

private final int linePrev

col

private final int col

colPrev

private final int colPrev

nextCharOnNewLine

private final boolean nextCharOnNewLine

publicId

private final String publicId

systemId

private final String systemId

next

private final PushedLocation next
Constructor Detail

PushedLocation

public PushedLocation(int line,
                      int linePrev,
                      int col,
                      int colPrev,
                      boolean nextCharOnNewLine,
                      String publicId,
                      String systemId,
                      PushedLocation next)
Parameters:
line -
linePrev -
col -
colPrev -
nextCharOnNewLine -
publicId -
systemId -
next -
Method Detail

getLine

public int getLine()
Returns the line.

Returns:
the line

getLinePrev

public int getLinePrev()
Returns the linePrev.

Returns:
the linePrev

getCol

public int getCol()
Returns the col.

Returns:
the col

getColPrev

public int getColPrev()
Returns the colPrev.

Returns:
the colPrev

isNextCharOnNewLine

public boolean isNextCharOnNewLine()
Returns the nextCharOnNewLine.

Returns:
the nextCharOnNewLine

getPublicId

public String getPublicId()
Returns the publicId.

Returns:
the publicId

getSystemId

public String getSystemId()
Returns the systemId.

Returns:
the systemId

getNext

public PushedLocation getNext()
Returns the next.

Returns:
the next