|
From: Lukas P. <pe...@us...> - 2002-09-03 17:47:08
|
Update of /cvsroot/javaprofiler/jpiimpl/net/sourceforge/javaprofiler/jpiimpl/data
In directory usw-pr-cvs1:/tmp/cvs-serv14534
Modified Files:
TypeData.java
Log Message:
name of type changed
Index: TypeData.java
===================================================================
RCS file: /cvsroot/javaprofiler/jpiimpl/net/sourceforge/javaprofiler/jpiimpl/data/TypeData.java,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -r1.6 -r1.7
*** TypeData.java 2 Sep 2002 15:25:47 -0000 1.6
--- TypeData.java 3 Sep 2002 17:47:05 -0000 1.7
***************
*** 82,110 ****
break;
case IProf.JVMPI_CLASS:
! name = "[" + componentClass.getName();
break;
case IProf.JVMPI_BOOLEAN:
! name = "[Z";
break;
case IProf.JVMPI_BYTE:
! name = "[B";
break;
case IProf.JVMPI_CHAR:
! name = "[C";
break;
case IProf.JVMPI_SHORT:
! name = "[S";
break;
case IProf.JVMPI_INT:
! name = "[I";
break;
case IProf.JVMPI_LONG:
! name = "[J";
break;
case IProf.JVMPI_FLOAT:
! name = "[F";
break;
case IProf.JVMPI_DOUBLE:
! name = "[D";
break;
default:
--- 82,110 ----
break;
case IProf.JVMPI_CLASS:
! name = componentClass.getName() + "[]";
break;
case IProf.JVMPI_BOOLEAN:
! name = "boolean[]"; //[Z
break;
case IProf.JVMPI_BYTE:
! name = "byte[]"; //[B
break;
case IProf.JVMPI_CHAR:
! name = "char[]"; //[C
break;
case IProf.JVMPI_SHORT:
! name = "short[]"; //[S
break;
case IProf.JVMPI_INT:
! name = "int[]"; //[I
break;
case IProf.JVMPI_LONG:
! name = "long[]";//[J
break;
case IProf.JVMPI_FLOAT:
! name = "float[]"; //[F
break;
case IProf.JVMPI_DOUBLE:
! name = "double[]"; //[D
break;
default:
***************
*** 313,316 ****
--- 313,319 ----
/*
* $Log$
+ * Revision 1.7 2002/09/03 17:47:05 petrul
+ * name of type changed
+ *
* Revision 1.6 2002/09/02 15:25:47 vachis
* copy contrcutors for difference of snapshot
|