package com.sun.javafx.css.parser;
public final class Token {
public final static int EOF = -1;
public final static int INVALID = 0;
public final static int SKIP = 1;
public final static Token EOF_TOKEN = new Token(EOF, "EOF");
public final static Token INVALID_TOKEN = new Token(INVALID, "INVALID");
public final static Token SKIP_TOKEN = new Token(SKIP, "SKIP");
public Token(int type, String text, int line, int offset) {
this.type = type;
this.text = text;
this.line = line;
this.offset = offset;
}
public Token(int type, String text) {
this(type, text, -1, -1);
}
Token(int type) {
this(type, null);
}
private Token() {
this(0, "INVALID");
}
public String getText() {
return text;
}
public int getType() {
return type;
}
public int getLine() {
return line;
}
void setLine(int line) {
this.line = line;
}
public int getOffset() {
return offset;
}
void setOffset(int offset) {
this.offset = offset;
}
@Override public String toString() {
final StringBuilder buf = new StringBuilder();
buf.append('[').append(line).append(',').append(offset).append(']')
.append(',').append(text).append(",<").append(type).append('>');
return buf.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj) return true;
if (obj == null ||
getClass() != obj.getClass()) {
return false;
}
final Token other = (Token) obj;
if (this.type != other.type) {
return false;
}
if ((this.text == null) ? (other.text != null) : !this.text.equals(other.text)) {
return false;
}
return true;
}
@Override
public int hashCode() {
int hash = 7;
hash = 67 * hash + this.type;
hash = 67 * hash + (this.text != null ? this.text.hashCode() : 0);
return hash;
}
private final String text;
private int offset;
private int line;
private final int type;
}