|
From: Pavel V. <va...@us...> - 2002-09-12 19:47:43
|
Update of /cvsroot/javaprofiler/jpiimpl/net/sourceforge/javaprofiler/jpiimpl/commun
In directory usw-pr-cvs1:/tmp/cvs-serv5927
Modified Files:
Buffer.java Commun.java CommunSetup.java CommunSetupShMem.java
CommunSetupSocket.java CommunShMem.java CommunSocket.java
IProf.java IProfException.java
Log Message:
fixes javadoc, malformed links
by michal
Index: Buffer.java
===================================================================
RCS file: /cvsroot/javaprofiler/jpiimpl/net/sourceforge/javaprofiler/jpiimpl/commun/Buffer.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -r1.4 -r1.5
*** Buffer.java 11 Mar 2002 19:10:48 -0000 1.4
--- Buffer.java 12 Sep 2002 19:47:39 -0000 1.5
***************
*** 140,153 ****
** @return this Buffer object
**
! ** @see getInt(), getLong(), getString() */
public Buffer putInt( int c) {
if( _size+4 > _bufSize) {
!
_buf = copyBuffer( new byte[_bufSize+RESERVED], _buf, _size);
_bufSize += RESERVED;
}
!
_size += 4;
--- 140,153 ----
** @return this Buffer object
**
! ** @see #getInt( int) #getLong() #getString() */
public Buffer putInt( int c) {
if( _size+4 > _bufSize) {
!
_buf = copyBuffer( new byte[_bufSize+RESERVED], _buf, _size);
_bufSize += RESERVED;
}
!
_size += 4;
***************
*** 157,161 ****
c >>= 8;
}
!
return this;
}
--- 157,161 ----
c >>= 8;
}
!
return this;
}
***************
*** 168,173 ****
** @return grabbed integer
**
! ** @see putInt(), getLong(), getString() */
!
public int getInt( int offset) {
--- 168,173 ----
** @return grabbed integer
**
! ** @see #putInt( int) #getLong() #getString() */
!
public int getInt( int offset) {
***************
*** 191,196 ****
** @return grabbed long integer
**
! ** @see putInt(), getInt(), getString() */
!
public long getLong( int offset) {
--- 191,196 ----
** @return grabbed long integer
**
! ** @see #putInt( int) #getInt() #getString() */
!
public long getLong( int offset) {
***************
*** 209,214 ****
** @return grabbed string
**
! ** @see putInt(), getInt(), getLong() */
!
public String getString( int offset) {
--- 209,214 ----
** @return grabbed string
**
! ** @see #putInt( int) #getInt() #getLong() */
!
public String getString( int offset) {
Index: Commun.java
===================================================================
RCS file: /cvsroot/javaprofiler/jpiimpl/net/sourceforge/javaprofiler/jpiimpl/commun/Commun.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** Commun.java 21 Nov 2001 22:05:55 -0000 1.2
--- Commun.java 12 Sep 2002 19:47:40 -0000 1.3
***************
*** 39,43 ****
** interface implementation.
**
! ** @see CommunSocket, CommunShMem
**
** @author Marek Przeczek */
--- 39,44 ----
** interface implementation.
**
! ** @see CommunSocket
! ** @see CommunShMem
**
** @author Marek Przeczek */
***************
*** 61,66 ****
** @return reference to this Commun object
**
! ** @see write() */
!
public Commun read( Buffer b);
--- 62,67 ----
** @return reference to this Commun object
**
! ** @see #write( Buffer) */
!
public Commun read( Buffer b);
***************
*** 72,76 ****
** @return reference to this Commun object
**
! ** @see read() */
public Commun write( Buffer b);
--- 73,77 ----
** @return reference to this Commun object
**
! ** @see #read( Buffer) */
public Commun write( Buffer b);
***************
*** 86,90 ****
/** Stop communication. Is stops communication and closes
** communication channel. */
!
public void stopCommun();
};
--- 87,91 ----
/** Stop communication. Is stops communication and closes
** communication channel. */
!
public void stopCommun();
};
Index: CommunSetup.java
===================================================================
RCS file: /cvsroot/javaprofiler/jpiimpl/net/sourceforge/javaprofiler/jpiimpl/commun/CommunSetup.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** CommunSetup.java 21 Nov 2001 22:05:55 -0000 1.2
--- CommunSetup.java 12 Sep 2002 19:47:40 -0000 1.3
***************
*** 38,42 ****
** from this abstract class.
**
! ** @see CommunSetupSocket, CommunSetupShMem
**
** @author Marek Przeczek */
--- 38,43 ----
** from this abstract class.
**
! ** @see CommunSetupSocket
! ** @see CommunSetupShMem
**
** @author Marek Przeczek */
Index: CommunSetupShMem.java
===================================================================
RCS file: /cvsroot/javaprofiler/jpiimpl/net/sourceforge/javaprofiler/jpiimpl/commun/CommunSetupShMem.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** CommunSetupShMem.java 21 Nov 2001 22:05:55 -0000 1.2
--- CommunSetupShMem.java 12 Sep 2002 19:47:40 -0000 1.3
***************
*** 38,42 ****
** for shared memory communication.
**
! ** @see CommunSetup, CommunSetupSocket
**
** @author Marek Przeczek */
--- 38,42 ----
** for shared memory communication.
**
! ** @see CommunSetup CommunSetupSocket
**
** @author Marek Przeczek */
Index: CommunSetupSocket.java
===================================================================
RCS file: /cvsroot/javaprofiler/jpiimpl/net/sourceforge/javaprofiler/jpiimpl/commun/CommunSetupSocket.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -r1.3 -r1.4
*** CommunSetupSocket.java 9 Dec 2001 16:50:42 -0000 1.3
--- CommunSetupSocket.java 12 Sep 2002 19:47:40 -0000 1.4
***************
*** 38,42 ****
** for socket communication.
**
! ** @see CommunSetup, CommunSetupShMem */
public class CommunSetupSocket extends CommunSetup {
--- 38,43 ----
** for socket communication.
**
! ** @see CommunSetup
! ** @see CommunSetupShMem */
public class CommunSetupSocket extends CommunSetup {
Index: CommunShMem.java
===================================================================
RCS file: /cvsroot/javaprofiler/jpiimpl/net/sourceforge/javaprofiler/jpiimpl/commun/CommunShMem.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -r1.3 -r1.4
*** CommunShMem.java 26 Jan 2002 10:25:39 -0000 1.3
--- CommunShMem.java 12 Sep 2002 19:47:40 -0000 1.4
***************
*** 42,46 ****
** memory, JNI is used.
**
! ** @see CommunSocket, Commun
**
** @author Marek Przeczek */
--- 42,47 ----
** memory, JNI is used.
**
! ** @see CommunSocket
! ** @see Commun
**
** @author Marek Przeczek */
***************
*** 57,62 ****
** @param shmemId shared memory identifier (3 characters long only)
** @param shmemSize shared memory size
! **
! ** @see construct() */
public CommunShMem( String shmemId, int shmemSize) { construct( shmemId, shmemSize);}
--- 58,62 ----
** @param shmemId shared memory identifier (3 characters long only)
** @param shmemSize shared memory size
! **/
public CommunShMem( String shmemId, int shmemSize) { construct( shmemId, shmemSize);}
***************
*** 91,95 ****
** @return reference to this Commun object
**
! ** @see write() */
public native Commun read( Buffer b);
--- 91,95 ----
** @return reference to this Commun object
**
! ** @see #write( Buffer) */
public native Commun read( Buffer b);
***************
*** 102,106 ****
** @return reference to this Commun object
**
! ** @see write() */
public native Commun write( Buffer b);
--- 102,106 ----
** @return reference to this Commun object
**
! ** @see #read( Buffer) */
public native Commun write( Buffer b);
***************
*** 116,120 ****
/** Stop shared memory communication. It stops communication,
** locks/unlocks semaphores and leaves them in consistent state. */
!
public native void stopCommun();
--- 116,120 ----
/** Stop shared memory communication. It stops communication,
** locks/unlocks semaphores and leaves them in consistent state. */
!
public native void stopCommun();
Index: CommunSocket.java
===================================================================
RCS file: /cvsroot/javaprofiler/jpiimpl/net/sourceforge/javaprofiler/jpiimpl/commun/CommunSocket.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -r1.4 -r1.5
*** CommunSocket.java 6 Mar 2002 17:59:34 -0000 1.4
--- CommunSocket.java 12 Sep 2002 19:47:40 -0000 1.5
***************
*** 43,47 ****
** communication interface.This class stands a server or client out.
**
! ** @see CommunShMem, Commun
**
** @author Marek Przeczek */
--- 43,47 ----
** communication interface.This class stands a server or client out.
**
! ** @see CommunShMem Commun
**
** @author Marek Przeczek */
***************
*** 136,140 ****
** @return reference to this Commun object
**
! ** @see write() */
public Commun read( Buffer b) {
--- 136,140 ----
** @return reference to this Commun object
**
! ** @see #write( Buffer) */
public Commun read( Buffer b) {
***************
*** 186,190 ****
** @return reference to this Commun object
**
! ** @see read() */
public Commun write( Buffer b) {
--- 186,190 ----
** @return reference to this Commun object
**
! ** @see #read( Buffer) */
public Commun write( Buffer b) {
Index: IProf.java
===================================================================
RCS file: /cvsroot/javaprofiler/jpiimpl/net/sourceforge/javaprofiler/jpiimpl/commun/IProf.java,v
retrieving revision 1.20
retrieving revision 1.21
diff -C2 -r1.20 -r1.21
*** IProf.java 30 Jul 2002 20:45:48 -0000 1.20
--- IProf.java 12 Sep 2002 19:47:40 -0000 1.21
***************
*** 39,43 ****
/* PLEASE DO NOT FORGET TO INCREASE 'INTERFACE_VERSION_NUMBER'
! * CONSTANT OF THIS CLASS WHEN YOU DO SOME ANY CHANGES IN THE INTERFACE. */
/** Communication interface class. This class implements
--- 39,43 ----
/* PLEASE DO NOT FORGET TO INCREASE 'INTERFACE_VERSION_NUMBER'
! * CONSTANT OF THIS CLASS WHEN YOU DO ANY CHANGES IN THE INTERFACE. */
[...965 lines suppressed...]
--- 2520,2524 ----
_buf.clear();
}
!
_dataBuf = null;
}
***************
*** 2579,2584 ****
**
** @return an iterator of objects of #sCallTree class
! **
! ** @see getCallTree(), getCallTreeThruIterator(), sCallTree */
public synchronized
--- 2535,2539 ----
**
** @return an iterator of objects of #sCallTree class
! **/
public synchronized
Index: IProfException.java
===================================================================
RCS file: /cvsroot/javaprofiler/jpiimpl/net/sourceforge/javaprofiler/jpiimpl/commun/IProfException.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -r1.3 -r1.4
*** IProfException.java 3 Dec 2001 15:49:56 -0000 1.3
--- IProfException.java 12 Sep 2002 19:47:40 -0000 1.4
***************
*** 39,46 ****
** exceptions belonging to IProf class.
**
! ** @see BAD_COMMAND_Exception, BAD_DATA_TYPE_Exception,
! ** BAD_INFO_ID_Exception, BAD_INFO_TYPE_Exception,
! ** BAD_OBJ_ID_Exception, COMMUN_Exception, UNKNOWN_Exception,
! ** UNAVAILABLE_Exception
**
** @author Marek Przeczek */
--- 39,50 ----
** exceptions belonging to IProf class.
**
! ** @see BAD_COMMAND_Exception
! ** @see BAD_DATA_TYPE_Exception
! ** @see BAD_INFO_ID_Exception
! ** @see BAD_INFO_TYPE_Exception
! ** @see BAD_OBJ_ID_Exception
! ** @see COMMUN_Exception
! ** @see UNKNOWN_Exception
! ** @see UNAVAILABLE_Exception
**
** @author Marek Przeczek */
|