(int type, StringBuffer value)
| 78 | } |
| 79 | |
| 80 | private Token |
| 81 | set(int type, StringBuffer value) { |
| 82 | if (type < 0) |
| 83 | throw new IllegalArgumentException(); |
| 84 | this.type = type; |
| 85 | this.value = value == null ? null : value.toString(); |
| 86 | return this; |
| 87 | } |
| 88 | |
| 89 | /** |
| 90 | * Converts the token to a string containing a representation useful |