[Beepcore-java-commits] CVS: beepcore-java/src/org/beepcore/beep/core InputDataStream.java,1.3,1.4
Status: Beta
Brought to you by:
huston
From: Huston F. <hu...@us...> - 2002-09-07 14:59:34
|
Update of /cvsroot/beepcore-java/beepcore-java/src/org/beepcore/beep/core In directory usw-pr-cvs1:/tmp/cvs-serv32347 Modified Files: InputDataStream.java Log Message: javadoc fixes Index: InputDataStream.java =================================================================== RCS file: /cvsroot/beepcore-java/beepcore-java/src/org/beepcore/beep/core/InputDataStream.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** InputDataStream.java 15 Jan 2002 16:02:59 -0000 1.3 --- InputDataStream.java 7 Sep 2002 14:59:30 -0000 1.4 *************** *** 2,6 **** * InputDataStream.java $Revision$ $Date$ * ! * Copyright (c) 2001 Huston Franklin. All rights reserved. * * The contents of this file are subject to the Blocks Public License (the --- 2,6 ---- * InputDataStream.java $Revision$ $Date$ * ! * Copyright (c) 2001,2002 Huston Franklin. All rights reserved. * * The contents of this file are subject to the Blocks Public License (the *************** *** 114,118 **** /** ! * @todo doc */ public boolean availableSegment() { --- 114,119 ---- /** ! * Returns <code>true</code> if a <code>BufferSegment</code> is available ! * to receive. */ public boolean availableSegment() { *************** *** 121,125 **** /** ! * @todo doc */ public void close() { --- 122,127 ---- /** ! * Indicates that the application is finished receiving data from this ! * stream. If there is more data available the data will be discarded. */ public void close() { *************** *** 131,135 **** /** ! * @todo doc */ public InputDataStreamAdapter getInputStream() --- 133,137 ---- /** ! * Returns an <code>InputStream</code> for reading the data in this stream. */ public InputDataStreamAdapter getInputStream() *************** *** 143,147 **** /** ! * @todo doc */ public BufferSegment getNextSegment() { --- 145,150 ---- /** ! * Returns the next <code>BufferSegment</code> in this stream. ! * */ public BufferSegment getNextSegment() { *************** *** 163,167 **** /** * ! * @returns null if isComplete() is true. */ public BufferSegment waitForNextSegment() throws InterruptedException { --- 166,170 ---- /** * ! * @return null if isComplete() is true. */ public BufferSegment waitForNextSegment() throws InterruptedException { |