[Beepcore-java-commits] CVS: beepcore-java/src/org/beepcore/beep/core BEEPError.java,1.8,1.9 Session
Status: Beta
Brought to you by:
huston
Update of /cvsroot/beepcore-java/beepcore-java/src/org/beepcore/beep/core In directory sc8-pr-cvs1:/tmp/cvs-serv11039/src/org/beepcore/beep/core Modified Files: BEEPError.java Session.java SessionImpl.java StartChannelListener.java TuningProfile.java TuningResetException.java Log Message: fixed javadoc warnings Index: BEEPError.java =================================================================== RCS file: /cvsroot/beepcore-java/beepcore-java/src/org/beepcore/beep/core/BEEPError.java,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -r1.8 -r1.9 *** BEEPError.java 23 Apr 2003 15:23:04 -0000 1.8 --- BEEPError.java 18 Nov 2003 14:03:07 -0000 1.9 *************** *** 150,154 **** * @param code Error code. * @param diagnostic Error diagnostic. - * @param xmlLang Language of the diagnostic message. */ public static String createErrorMessage(int code, String diagnostic) --- 150,153 ---- Index: Session.java =================================================================== RCS file: /cvsroot/beepcore-java/beepcore-java/src/org/beepcore/beep/core/Session.java,v retrieving revision 1.36 retrieving revision 1.37 diff -C2 -r1.36 -r1.37 *** Session.java 10 Jun 2003 18:59:18 -0000 1.36 --- Session.java 18 Nov 2003 14:03:07 -0000 1.37 *************** *** 202,207 **** * request to start the Channel. This request can be at most * 4K in size. - * @param listener A <code>MessageListener</code> to receive MSG messages - * sent by the remote peer of this Session. * * @throws BEEPError Thrown if the remote peer is unable or refuses to --- 202,205 ---- Index: SessionImpl.java =================================================================== RCS file: /cvsroot/beepcore-java/beepcore-java/src/org/beepcore/beep/core/SessionImpl.java,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -r1.12 -r1.13 *** SessionImpl.java 8 Nov 2003 20:58:02 -0000 1.12 --- SessionImpl.java 18 Nov 2003 14:03:08 -0000 1.13 *************** *** 131,141 **** * (to prevent new channel collision) so that the initiator starts odd * channels and the listener starts channels with even numbers. ! * @param The Profile Registry summarizing the profiles this Session will ! * support ! * @param cred ! * ! * @param registry * @param firstChannel used internally in the API, an indication of the * ordinality of the channels this peer can start, odd, or even. */ protected SessionImpl(ProfileRegistry registry, int firstChannel, --- 131,142 ---- * (to prevent new channel collision) so that the initiator starts odd * channels and the listener starts channels with even numbers. ! * @param registry The Profile Registry summarizing the profiles this ! * Session will support * @param firstChannel used internally in the API, an indication of the * ordinality of the channels this peer can start, odd, or even. + * @param localCred + * @param peerCred + * @param tuning + * @param serverName */ protected SessionImpl(ProfileRegistry registry, int firstChannel, *************** *** 651,666 **** * or NUL frames. * - * @param messageType indicates whether a <code>Frame</code> is a MSG, - * RPY, ERR, ANS or NUL. - * @param channelNum Channel on which the <code>Frame</code> was sent. - * @param msgno Message number of the <code>Frame</code>. - * @param seqno Sequence number of the <code>Frame</code>. - * @param payload Payload of the <code>Frame</code>. - * @param last Indicates if this is the last <code>Frame</code> sent in a - * sequence of frames. - * * @return a <code>Frame</code> for the specified values * - * * @throws BEEPException */ --- 652,657 ---- *************** *** 732,738 **** * Method postFrame * - * * @param f - * @param number * * @throws BEEPException --- 723,727 ---- *************** *** 772,776 **** * * ! * @param BEEP frame to send. * * --- 761,765 ---- * * ! * @param f BEEP frame to send. * * *************** *** 834,842 **** * * @param channel - * @param previouslySeq * @param currentSeq ! * @param previouslyUsed ! * @param currentlyUsed ! * @param bufferSize * * @return true if the Receive Buffer Size was updated --- 823,828 ---- * * @param channel * @param currentSeq ! * @param currentAvail * * @return true if the Receive Buffer Size was updated Index: StartChannelListener.java =================================================================== RCS file: /cvsroot/beepcore-java/beepcore-java/src/org/beepcore/beep/core/StartChannelListener.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** StartChannelListener.java 8 Nov 2001 05:51:34 -0000 1.3 --- StartChannelListener.java 18 Nov 2003 14:03:08 -0000 1.4 *************** *** 41,45 **** * @param session to check other properties such as the credentials of * of the session - * @param tuning properties in effect on the session * @see SessionTuningProperties for standard properties and their values */ --- 41,44 ---- Index: TuningProfile.java =================================================================== RCS file: /cvsroot/beepcore-java/beepcore-java/src/org/beepcore/beep/core/TuningProfile.java,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -r1.11 -r1.12 *** TuningProfile.java 15 Sep 2003 15:23:30 -0000 1.11 --- TuningProfile.java 18 Nov 2003 14:03:08 -0000 1.12 *************** *** 134,143 **** * Method complete * - * - * @param channel - * @param cred - * @param registry - * @param argument - * * @throws BEEPException * --- 134,137 ---- *************** *** 222,230 **** * * - * @param session - * @param cred - * @param registry - * @param argument - * * @throws BEEPException * --- 216,219 ---- *************** *** 238,242 **** throws BEEPException { ! return ((SessionImpl)session).reset(localCred, peerCred, tuning, registry, argument); } --- 227,232 ---- throws BEEPException { ! return ((SessionImpl)session).reset(localCred, peerCred, tuning, ! registry, argument); } *************** *** 244,252 **** * Method sendProfile * - * - * @param session - * @param uri - * @param data - * @param channel * * @throws BEEPException --- 234,237 ---- Index: TuningResetException.java =================================================================== RCS file: /cvsroot/beepcore-java/beepcore-java/src/org/beepcore/beep/core/TuningResetException.java,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** TuningResetException.java 15 Sep 2003 15:23:30 -0000 1.4 --- TuningResetException.java 18 Nov 2003 14:03:08 -0000 1.5 *************** *** 1,4 **** /* ! * TuningResetException.java $Revision$ $Date$ * * Copyright (c) 2001 Invisible Worlds, Inc. All rights reserved. --- 1,4 ---- /* ! * TuningResetException.java $Revision$ $Date$ * * Copyright (c) 2001 Invisible Worlds, Inc. All rights reserved. |