Update of /cvsroot/javaprofiler/jpiimpl/net/sourceforge/javaprofiler/jpiimpl/data
In directory usw-pr-cvs1:/tmp/cvs-serv9007
Modified Files:
TraceFrameData.java
Log Message:
Implements Serializable (is contained in Snapshot).
Index: TraceFrameData.java
===================================================================
RCS file: /cvsroot/javaprofiler/jpiimpl/net/sourceforge/javaprofiler/jpiimpl/data/TraceFrameData.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** TraceFrameData.java 29 Sep 2001 21:01:33 -0000 1.2
--- TraceFrameData.java 20 Apr 2002 10:25:55 -0000 1.3
***************
*** 21,24 ****
--- 21,26 ----
package net.sourceforge.javaprofiler.jpiimpl.data;
+ import java.io.Serializable;
+
/**
* Frame of some trace.
***************
*** 26,30 ****
* @author Jan Stola
*/
! public class TraceFrameData {
/** Line number of this frame in the source file. */
private int line;
--- 28,32 ----
* @author Jan Stola
*/
! public class TraceFrameData implements Serializable {
/** Line number of this frame in the source file. */
private int line;
***************
*** 65,68 ****
--- 67,73 ----
/*
* $Log$
+ * Revision 1.3 2002/04/20 10:25:55 stolis
+ * Implements Serializable (is contained in Snapshot).
+ *
* Revision 1.2 2001/09/29 21:01:33 stolis
* Plural added in licenses.
|