From: Pavel V. <va...@us...> - 2002-06-11 07:08:44
|
Update of /cvsroot/javaprofiler/jpiimpl/net/sourceforge/javaprofiler/jpiimpl/data In directory usw-pr-cvs1:/tmp/cvs-serv3306 Modified Files: SnapshotImpl.java Log Message: GCData renamed Index: SnapshotImpl.java =================================================================== RCS file: /cvsroot/javaprofiler/jpiimpl/net/sourceforge/javaprofiler/jpiimpl/data/SnapshotImpl.java,v retrieving revision 1.23 retrieving revision 1.24 diff -C2 -r1.23 -r1.24 *** SnapshotImpl.java 30 May 2002 22:43:05 -0000 1.23 --- SnapshotImpl.java 11 Jun 2002 07:08:40 -0000 1.24 *************** *** 33,37 **** * Implementation of Snapshot (VirtualMachineImage). * ! * @see net.sourceforge.javaprofiler.api.VirtualMachineImageRef * @author Pavel Vacha */ --- 33,37 ---- * Implementation of Snapshot (VirtualMachineImage). * ! * @see net.sourceforge.javaprofiler.jpi.VirtualMachineImageRef * @author Pavel Vacha */ *************** *** 48,52 **** private final List types = new ArrayList(); private final List arenas = new ArrayList(); ! private final List gcs = new ArrayList(); private final List allocTraces = new ArrayList(); private final List cpuTraces = new ArrayList(); --- 48,52 ---- private final List types = new ArrayList(); private final List arenas = new ArrayList(); ! private final List gcRuns = new ArrayList(); private final List allocTraces = new ArrayList(); private final List cpuTraces = new ArrayList(); *************** *** 62,66 **** private final List roTypes = Collections.unmodifiableList( types ); private final List roArenas = Collections.unmodifiableList( arenas ); ! private final List roGcs = Collections.unmodifiableList( gcs ); private final List roAllocTraces = Collections.unmodifiableList( allocTraces ); private final List roCpuTraces = Collections.unmodifiableList( cpuTraces ); --- 62,66 ---- private final List roTypes = Collections.unmodifiableList( types ); private final List roArenas = Collections.unmodifiableList( arenas ); ! private final List roGCRuns = Collections.unmodifiableList( gcRuns ); private final List roAllocTraces = Collections.unmodifiableList( allocTraces ); private final List roCpuTraces = Collections.unmodifiableList( cpuTraces ); *************** *** 304,309 **** *@return unmodifiable <code>List</code> of {@link GCSRef} objects. */ ! public List getGcs() { ! return roGcs; } --- 304,309 ---- *@return unmodifiable <code>List</code> of {@link GCSRef} objects. */ ! public List getGCRuns() { ! return roGCRuns; } *************** *** 519,523 **** } if ( conf.withGC ) { ! extract( null, gcs, IProf.GCS, IProf.NO_OPTIONAL_ARG, iprof ); } actLst2 = null; --- 519,523 ---- } if ( conf.withGC ) { ! extract( null, gcRuns, IProf.GCS, IProf.NO_OPTIONAL_ARG, iprof ); } actLst2 = null; *************** *** 754,758 **** case IProf.GCS: { ! return new GCData( sid ); } //// --- 754,758 ---- case IProf.GCS: { ! return new GCRunData( sid ); } //// *************** *** 1137,1140 **** --- 1137,1143 ---- /* * $Log$ + * Revision 1.24 2002/06/11 07:08:40 vachis + * GCData renamed + * * Revision 1.23 2002/05/30 22:43:05 vachis * interface changed to jpi |