Changeset 11392
- Timestamp:
- 11/16/08 21:41:25 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/j/src/org/armedbear/lisp/FileStream.java
r11391 r11392 120 120 } 121 121 122 @Override 122 123 public LispObject typeOf() 123 124 { … … 125 126 } 126 127 128 @Override 127 129 public LispObject classOf() 128 130 { … … 130 132 } 131 133 134 @Override 132 135 public LispObject typep(LispObject typeSpecifier) throws ConditionThrowable 133 136 { … … 144 147 } 145 148 149 @Override 146 150 public LispObject listen() throws ConditionThrowable 147 151 { … … 159 163 } 160 164 165 @Override 161 166 public LispObject fileLength() throws ConditionThrowable 162 167 { … … 186 191 } 187 192 193 @Override 188 194 public LispObject readLine(boolean eofError, LispObject eofValue) 189 195 throws ConditionThrowable … … 214 220 215 221 // Returns -1 at end of file. 222 @Override 216 223 protected int _readChar() throws ConditionThrowable 217 224 { … … 253 260 } 254 261 262 @Override 255 263 protected void _unreadChar(int n) throws ConditionThrowable 256 264 { … … 300 308 } 301 309 310 @Override 302 311 protected boolean _charReady() throws ConditionThrowable 303 312 { … … 305 314 } 306 315 316 @Override 307 317 public void _writeChar(char c) throws ConditionThrowable 308 318 { … … 318 328 } 319 329 330 @Override 320 331 public void _writeChars(char[] chars, int start, int end) 321 332 throws ConditionThrowable … … 346 357 } 347 358 359 @Override 348 360 public void _writeString(String s) throws ConditionThrowable 349 361 { … … 374 386 } 375 387 388 @Override 376 389 public void _writeLine(String s) throws ConditionThrowable 377 390 { … … 384 397 385 398 // Reads an 8-bit byte. 399 @Override 386 400 public int _readByte() throws ConditionThrowable 387 401 { … … 402 416 403 417 // Writes an 8-bit byte. 418 @Override 404 419 public void _writeByte(int n) throws ConditionThrowable 405 420 { … … 419 434 } 420 435 436 @Override 421 437 public void _finishOutput() throws ConditionThrowable 422 438 { … … 425 441 } 426 442 443 @Override 427 444 public void _clearInput() throws ConditionThrowable 428 445 { … … 439 456 } 440 457 458 @Override 441 459 protected long _getFilePosition() throws ConditionThrowable 442 460 { … … 458 476 } 459 477 478 @Override 460 479 protected boolean _setFilePosition(LispObject arg) throws ConditionThrowable 461 480 { … … 482 501 } 483 502 503 @Override 484 504 public void _close() throws ConditionThrowable 485 505 { … … 550 570 } 551 571 572 @Override 552 573 public String writeToString() throws ConditionThrowable 553 574 { … … 560 581 "pathname namestring element-type direction if-exists") 561 582 { 583 @Override 562 584 public LispObject execute(LispObject first, LispObject second, 563 585 LispObject third, LispObject fourth,
Note: See TracChangeset
for help on using the changeset viewer.