From: Pavel V. <va...@us...> - 2002-09-09 16:28:59
|
Update of /cvsroot/javaprofiler/jpiimpl/net/sourceforge/javaprofiler/jpiimpl/data In directory usw-pr-cvs1:/tmp/cvs-serv24517 Modified Files: AllocThreadMethodData.java AllocThreadTraceData.java AllocTraceData.java ClassData.java CPUThreadMethodData.java CPUThreadTraceData.java CPUTraceData.java MonThreadMethodData.java MonThreadTraceData.java MonTraceData.java SnapshotImpl.java ThreadData.java Log Message: fixies in javadoc Index: AllocThreadMethodData.java =================================================================== RCS file: /cvsroot/javaprofiler/jpiimpl/net/sourceforge/javaprofiler/jpiimpl/data/AllocThreadMethodData.java,v retrieving revision 1.21 retrieving revision 1.22 diff -C2 -r1.21 -r1.22 *** AllocThreadMethodData.java 8 Sep 2002 19:01:01 -0000 1.21 --- AllocThreadMethodData.java 9 Sep 2002 16:28:52 -0000 1.22 *************** *** 169,173 **** * and thread. * ! * @return unmodifiable list of {@link AllocThreadTypeMethodRef} objects. */ public List getAllocTypeThreadMethods() { --- 169,173 ---- * and thread. * ! * @return unmodifiable list of {@link AllocTypeThreadMethodRef} objects. */ public List getAllocTypeThreadMethods() { *************** *** 201,205 **** * In this case it means that object belons to same thread and method. * ! *@returns sibling CPU object or <code>null</code> if such object does not * exist. */ --- 201,205 ---- * In this case it means that object belons to same thread and method. * ! *@return sibling CPU object or <code>null</code> if such object does not * exist. */ *************** *** 211,215 **** * In this case it means that object belons to same thread and method. * ! *@returns sibling monitors object or <code>null</code> if such object does not * exist. */ --- 211,215 ---- * In this case it means that object belons to same thread and method. * ! *@return sibling monitors object or <code>null</code> if such object does not * exist. */ *************** *** 232,235 **** --- 232,238 ---- /* * $Log$ + * Revision 1.22 2002/09/09 16:28:52 vachis + * fixies in javadoc + * * Revision 1.21 2002/09/08 19:01:01 vachis * changes in toString() Index: AllocThreadTraceData.java =================================================================== RCS file: /cvsroot/javaprofiler/jpiimpl/net/sourceforge/javaprofiler/jpiimpl/data/AllocThreadTraceData.java,v retrieving revision 1.21 retrieving revision 1.22 diff -C2 -r1.21 -r1.22 *** AllocThreadTraceData.java 8 Sep 2002 19:01:01 -0000 1.21 --- AllocThreadTraceData.java 9 Sep 2002 16:28:52 -0000 1.22 *************** *** 172,176 **** * In this case it means that object belons to same thread and corresponding trace. * ! *@returns sibling CPU object or <code>null</code> if such object does not * exist. */ --- 172,176 ---- * In this case it means that object belons to same thread and corresponding trace. * ! *@return sibling CPU object or <code>null</code> if such object does not * exist. */ *************** *** 182,186 **** * In this case it means that object belons to same thread and corresponding trace. * ! *@returns sibling monitors object or <code>null</code> if such object does not * exist. */ --- 182,186 ---- * In this case it means that object belons to same thread and corresponding trace. * ! *@return sibling monitors object or <code>null</code> if such object does not * exist. */ *************** *** 203,206 **** --- 203,209 ---- /* * $Log$ + * Revision 1.22 2002/09/09 16:28:52 vachis + * fixies in javadoc + * * Revision 1.21 2002/09/08 19:01:01 vachis * changes in toString() Index: AllocTraceData.java =================================================================== RCS file: /cvsroot/javaprofiler/jpiimpl/net/sourceforge/javaprofiler/jpiimpl/data/AllocTraceData.java,v retrieving revision 1.26 retrieving revision 1.27 diff -C2 -r1.26 -r1.27 *** AllocTraceData.java 8 Sep 2002 19:01:02 -0000 1.26 --- AllocTraceData.java 9 Sep 2002 16:28:53 -0000 1.27 *************** *** 118,122 **** * Returns frames that make up this trace. * ! * @return <code>List</code> of {@link TraceFrameRef} objects. */ public List getFrames() { --- 118,122 ---- * Returns frames that make up this trace. * ! * @return <code>List</code> of {@link FrameRef} objects. */ public List getFrames() { *************** *** 217,221 **** * In this case it means corresponding CPUTrace. * ! *@returns sibling CPU object or <code>null</code> if such object does not * exist. */ --- 217,221 ---- * In this case it means corresponding CPUTrace. * ! *@return sibling CPU object or <code>null</code> if such object does not * exist. */ *************** *** 235,239 **** * In this case it means corresponding monitors trace. * ! *@returns sibling monitors object or <code>null</code> if such object does not * exist. */ --- 235,239 ---- * In this case it means corresponding monitors trace. * ! *@return sibling monitors object or <code>null</code> if such object does not * exist. */ *************** *** 265,268 **** --- 265,271 ---- /* * $Log$ + * Revision 1.27 2002/09/09 16:28:53 vachis + * fixies in javadoc + * * Revision 1.26 2002/09/08 19:01:02 vachis * changes in toString() Index: ClassData.java =================================================================== RCS file: /cvsroot/javaprofiler/jpiimpl/net/sourceforge/javaprofiler/jpiimpl/data/ClassData.java,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -r1.15 -r1.16 *** ClassData.java 2 Sep 2002 15:25:47 -0000 1.15 --- ClassData.java 9 Sep 2002 16:28:53 -0000 1.16 *************** *** 40,44 **** /** * Static fields defined in this class. ! * List of {@link ClassFieldData} objects. */ private final List fields; --- 40,44 ---- /** * Static fields defined in this class. ! * List of {@link FieldData} objects. */ private final List fields; *************** *** 201,204 **** --- 201,207 ---- /* * $Log$ + * Revision 1.16 2002/09/09 16:28:53 vachis + * fixies in javadoc + * * Revision 1.15 2002/09/02 15:25:47 vachis * copy contrcutors for difference of snapshot Index: CPUThreadMethodData.java =================================================================== RCS file: /cvsroot/javaprofiler/jpiimpl/net/sourceforge/javaprofiler/jpiimpl/data/CPUThreadMethodData.java,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -r1.16 -r1.17 *** CPUThreadMethodData.java 8 Sep 2002 19:01:02 -0000 1.16 --- CPUThreadMethodData.java 9 Sep 2002 16:28:54 -0000 1.17 *************** *** 159,163 **** * In this case it means that object belons to same thread and method. * ! *@returns sibling alloc object or <code>null</code> if such object does not * exist. */ --- 159,163 ---- * In this case it means that object belons to same thread and method. * ! *@return sibling alloc object or <code>null</code> if such object does not * exist. */ *************** *** 169,173 **** * In this case it means that object belons to same thread and method. * ! *@returns sibling monitors object or <code>null</code> if such object does not * exist. */ --- 169,173 ---- * In this case it means that object belons to same thread and method. * ! *@return sibling monitors object or <code>null</code> if such object does not * exist. */ *************** *** 190,193 **** --- 190,196 ---- /* * $Log$ + * Revision 1.17 2002/09/09 16:28:54 vachis + * fixies in javadoc + * * Revision 1.16 2002/09/08 19:01:02 vachis * changes in toString() Index: CPUThreadTraceData.java =================================================================== RCS file: /cvsroot/javaprofiler/jpiimpl/net/sourceforge/javaprofiler/jpiimpl/data/CPUThreadTraceData.java,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -r1.12 -r1.13 *** CPUThreadTraceData.java 8 Sep 2002 19:01:02 -0000 1.12 --- CPUThreadTraceData.java 9 Sep 2002 16:28:54 -0000 1.13 *************** *** 124,128 **** * In this case it means that object belons to same thread and corresponding trace. * ! *@returns sibling alloc object or <code>null</code> if such object does not * exist. */ --- 124,128 ---- * In this case it means that object belons to same thread and corresponding trace. * ! *@return sibling alloc object or <code>null</code> if such object does not * exist. */ *************** *** 134,138 **** * In this case it means that object belons to same thread and corresponding trace. * ! *@returns sibling monitors object or <code>null</code> if such object does not * exist. */ --- 134,138 ---- * In this case it means that object belons to same thread and corresponding trace. * ! *@return sibling monitors object or <code>null</code> if such object does not * exist. */ *************** *** 149,152 **** --- 149,155 ---- /* * $Log$ + * Revision 1.13 2002/09/09 16:28:54 vachis + * fixies in javadoc + * * Revision 1.12 2002/09/08 19:01:02 vachis * changes in toString() Index: CPUTraceData.java =================================================================== RCS file: /cvsroot/javaprofiler/jpiimpl/net/sourceforge/javaprofiler/jpiimpl/data/CPUTraceData.java,v retrieving revision 1.20 retrieving revision 1.21 diff -C2 -r1.20 -r1.21 *** CPUTraceData.java 8 Sep 2002 19:01:02 -0000 1.20 --- CPUTraceData.java 9 Sep 2002 16:28:54 -0000 1.21 *************** *** 176,180 **** * In this case it means corresponding AllocTrace. * ! *@returns sibling alloc object or <code>null</code> if such object does not * exist. */ --- 176,180 ---- * In this case it means corresponding AllocTrace. * ! *@return sibling alloc object or <code>null</code> if such object does not * exist. */ *************** *** 194,198 **** * In this case it means corresponding monitors trace. * ! *@returns sibling monitors object or <code>null</code> if such object does not * exist. */ --- 194,198 ---- * In this case it means corresponding monitors trace. * ! *@return sibling monitors object or <code>null</code> if such object does not * exist. */ *************** *** 224,227 **** --- 224,230 ---- /* * $Log$ + * Revision 1.21 2002/09/09 16:28:54 vachis + * fixies in javadoc + * * Revision 1.20 2002/09/08 19:01:02 vachis * changes in toString() Index: MonThreadMethodData.java =================================================================== RCS file: /cvsroot/javaprofiler/jpiimpl/net/sourceforge/javaprofiler/jpiimpl/data/MonThreadMethodData.java,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -r1.13 -r1.14 *** MonThreadMethodData.java 8 Sep 2002 19:01:02 -0000 1.13 --- MonThreadMethodData.java 9 Sep 2002 16:28:54 -0000 1.14 *************** *** 160,164 **** * In this case it means that object belons to same thread and method. * ! *@returns sibling alloc object or <code>null</code> if such object does not * exist. */ --- 160,164 ---- * In this case it means that object belons to same thread and method. * ! *@return sibling alloc object or <code>null</code> if such object does not * exist. */ *************** *** 170,174 **** * In this case it means that object belons to same thread and method. * ! *@returns sibling CPU object or <code>null</code> if such object does not * exist. */ --- 170,174 ---- * In this case it means that object belons to same thread and method. * ! *@return sibling CPU object or <code>null</code> if such object does not * exist. */ *************** *** 191,194 **** --- 191,197 ---- /* * $Log$ + * Revision 1.14 2002/09/09 16:28:54 vachis + * fixies in javadoc + * * Revision 1.13 2002/09/08 19:01:02 vachis * changes in toString() Index: MonThreadTraceData.java =================================================================== RCS file: /cvsroot/javaprofiler/jpiimpl/net/sourceforge/javaprofiler/jpiimpl/data/MonThreadTraceData.java,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -r1.10 -r1.11 *** MonThreadTraceData.java 8 Sep 2002 19:01:02 -0000 1.10 --- MonThreadTraceData.java 9 Sep 2002 16:28:54 -0000 1.11 *************** *** 127,131 **** * In this case it means that object belons to same thread and corresponding trace. * ! *@returns sibling alloc object or <code>null</code> if such object does not * exist. */ --- 127,131 ---- * In this case it means that object belons to same thread and corresponding trace. * ! *@return sibling alloc object or <code>null</code> if such object does not * exist. */ *************** *** 137,141 **** * In this case it means that object belons to same thread and corresponding trace. * ! *@returns sibling CPU object or <code>null</code> if such object does not * exist. */ --- 137,141 ---- * In this case it means that object belons to same thread and corresponding trace. * ! *@return sibling CPU object or <code>null</code> if such object does not * exist. */ *************** *** 151,154 **** --- 151,157 ---- /* * $Log$ + * Revision 1.11 2002/09/09 16:28:54 vachis + * fixies in javadoc + * * Revision 1.10 2002/09/08 19:01:02 vachis * changes in toString() Index: MonTraceData.java =================================================================== RCS file: /cvsroot/javaprofiler/jpiimpl/net/sourceforge/javaprofiler/jpiimpl/data/MonTraceData.java,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -r1.18 -r1.19 *** MonTraceData.java 8 Sep 2002 19:01:02 -0000 1.18 --- MonTraceData.java 9 Sep 2002 16:28:54 -0000 1.19 *************** *** 173,177 **** * In this case it means corresponding AllocTrace. * ! *@returns sibling alloc object or <code>null</code> if such object does not * exist. */ --- 173,177 ---- * In this case it means corresponding AllocTrace. * ! *@return sibling alloc object or <code>null</code> if such object does not * exist. */ *************** *** 191,195 **** * In this case it means corresponding CPUTrace. * ! *@returns sibling CPU object or <code>null</code> if such object does not * exist. */ --- 191,195 ---- * In this case it means corresponding CPUTrace. * ! *@return sibling CPU object or <code>null</code> if such object does not * exist. */ *************** *** 222,225 **** --- 222,228 ---- /* * $Log$ + * Revision 1.19 2002/09/09 16:28:54 vachis + * fixies in javadoc + * * Revision 1.18 2002/09/08 19:01:02 vachis * changes in toString() Index: SnapshotImpl.java =================================================================== RCS file: /cvsroot/javaprofiler/jpiimpl/net/sourceforge/javaprofiler/jpiimpl/data/SnapshotImpl.java,v retrieving revision 1.35 retrieving revision 1.36 diff -C2 -r1.35 -r1.36 *** SnapshotImpl.java 8 Sep 2002 14:38:27 -0000 1.35 --- SnapshotImpl.java 9 Sep 2002 16:28:54 -0000 1.36 *************** *** 187,191 **** /** ! * Creates difference snapshot, same as {@link #diffenceTo }. * * @param conf determines the types of object that will be included in this snapshot --- 187,191 ---- /** ! * Creates difference snapshot, same as {@link #differenceTo }. * * @param conf determines the types of object that will be included in this snapshot *************** *** 324,328 **** /** Returns unmodifiable list of objects with garbage collector information. * ! *@return unmodifiable <code>List</code> of {@link GCSRef} objects. */ public List getGCRuns() { --- 324,328 ---- /** Returns unmodifiable list of objects with garbage collector information. * ! *@return unmodifiable <code>List</code> of {@link GCRunRef} objects. */ public List getGCRuns() { *************** *** 1584,1587 **** --- 1584,1589 ---- } + //FIXME: + //in diffSnapshot, AllocTypeMethods is more than AllocTypeTraces, is it correct? //TODO: *************** *** 1594,1597 **** --- 1596,1602 ---- /* * $Log$ + * Revision 1.36 2002/09/09 16:28:54 vachis + * fixies in javadoc + * * Revision 1.35 2002/09/08 14:38:27 vachis * fixies Index: ThreadData.java =================================================================== RCS file: /cvsroot/javaprofiler/jpiimpl/net/sourceforge/javaprofiler/jpiimpl/data/ThreadData.java,v retrieving revision 1.25 retrieving revision 1.26 diff -C2 -r1.25 -r1.26 *** ThreadData.java 6 Sep 2002 18:06:01 -0000 1.25 --- ThreadData.java 9 Sep 2002 16:28:54 -0000 1.26 *************** *** 355,359 **** * Returns unmodifiable list of traces created in this thread. (allocation data) * ! * @return unmodifiable list of {@link AllocThreadTracedRef} objects. */ public List getAllocThreadTraces() { --- 355,359 ---- * Returns unmodifiable list of traces created in this thread. (allocation data) * ! * @return unmodifiable list of {@link AllocThreadTraceRef} objects. */ public List getAllocThreadTraces() { *************** *** 500,504 **** * Returns unmodifiable list of traces created in this thread. (monitors data) * ! * @return unmodifiable list of {@link MonThreadTRaceRef} objects. */ public List getMonThreadTraces() { --- 500,504 ---- * Returns unmodifiable list of traces created in this thread. (monitors data) * ! * @return unmodifiable list of {@link MonThreadTraceRef} objects. */ public List getMonThreadTraces() { *************** *** 556,559 **** --- 556,562 ---- /* * $Log$ + * Revision 1.26 2002/09/09 16:28:54 vachis + * fixies in javadoc + * * Revision 1.25 2002/09/06 18:06:01 vachis * added constructor |