Update of /cvsroot/javaprofiler/interface/net/sourceforge/javaprofiler/jpi In directory usw-pr-cvs1:/tmp/cvs-serv31535 Modified Files: ClassType.java ProfilerInfo.java ReferenceType.java Snapshot.java ThreadInfo.java Log Message: Full qualification of classes removed where it is not necessary. Index: ClassType.java =================================================================== RCS file: /cvsroot/javaprofiler/interface/net/sourceforge/javaprofiler/jpi/ClassType.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** ClassType.java 2000/11/27 17:45:11 1.1.1.1 --- ClassType.java 2001/08/22 13:19:47 1.2 *************** *** 46,50 **** * Returns a the single non-abstract {@link Method} visible from this class * that has the given name and signature. See ! * {@link ReferenceType#methodsByName(java.lang.String, java.lang.String)} * for information on signature format. * The returned method (if non-<code>null</code>) is a component --- 46,50 ---- * Returns a the single non-abstract {@link Method} visible from this class * that has the given name and signature. See ! * {@link ReferenceType#methodsByName(String, String)} * for information on signature format. * The returned method (if non-<code>null</code>) is a component *************** *** 120,123 **** --- 120,126 ---- /* * $Log$ + * Revision 1.2 2001/08/22 13:19:47 stolis + * Full qualification of classes removed where it is not necessary. + * * Revision 1.1.1.1 2000/11/27 17:45:11 stolis * First version of the interface of our architecture. Index: ProfilerInfo.java =================================================================== RCS file: /cvsroot/javaprofiler/interface/net/sourceforge/javaprofiler/jpi/ProfilerInfo.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** ProfilerInfo.java 2000/11/27 17:44:41 1.1.1.1 --- ProfilerInfo.java 2001/08/22 13:19:47 1.2 *************** *** 89,96 **** * in the target VM, a {@link ThreadInfo} that holds information about it * is placed in the list. The returned list contains threads created through ! * <code>java.lang.Thread</code>, all native threads attached to the target * VM through JNI, and system threads created by the target VM. * <p>Thread objects that have not yet been started ! * (through <code>java.lang.Thread.start()</code>) and thread objects that * have completed their execution are not included in the returned list. * --- 89,96 ---- * in the target VM, a {@link ThreadInfo} that holds information about it * is placed in the list. The returned list contains threads created through ! * <code>Thread</code>, all native threads attached to the target * VM through JNI, and system threads created by the target VM. * <p>Thread objects that have not yet been started ! * (through <code>Thread.start()</code>) and thread objects that * have completed their execution are not included in the returned list. * *************** *** 119,122 **** --- 119,125 ---- /* * $Log$ + * Revision 1.2 2001/08/22 13:19:47 stolis + * Full qualification of classes removed where it is not necessary. + * * Revision 1.1.1.1 2000/11/27 17:44:41 stolis * First version of the interface of our architecture. Index: ReferenceType.java =================================================================== RCS file: /cvsroot/javaprofiler/interface/net/sourceforge/javaprofiler/jpi/ReferenceType.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** ReferenceType.java 2000/11/27 17:45:05 1.1.1.1 --- ReferenceType.java 2001/08/22 13:19:47 1.2 *************** *** 89,93 **** * Determines if this type was declared abstract. Return value is undefined * for arrays and for primitive classes (for example, ! * <code>java.lang.Integer.TYPE</code>). * * @return <code>true</code> if this type is abstract; <code>false</code> --- 89,93 ---- * Determines if this type was declared abstract. Return value is undefined * for arrays and for primitive classes (for example, ! * <code>Integer.TYPE</code>). * * @return <code>true</code> if this type is abstract; <code>false</code> *************** *** 98,102 **** /** * Determines if this type was declared final. For arrays and for primitive ! * classes, such as <code>java.lang.Integer.TYPE</code>, the return value * is always true. * --- 98,102 ---- /** * Determines if this type was declared final. For arrays and for primitive ! * classes, such as <code>Integer.TYPE</code>, the return value * is always true. * *************** *** 110,114 **** * declared static, so <code>false</code> is returned for any package-level * type, array type, or primitive class (for example, ! * <code>java.lang.Integer.TYPE</code>). * * @return <code>true</code> if this type is static; <code>false</code> --- 110,114 ---- * declared static, so <code>false</code> is returned for any package-level * type, array type, or primitive class (for example, ! * <code>Integer.TYPE</code>). * * @return <code>true</code> if this type is static; <code>false</code> *************** *** 148,153 **** * to determine visibility. At most one method in the list is a concrete * method and a component of ClassType; any other methods in the list are ! * abstract. Use {@link ClassType#concreteMethodByName(java.lang.String, ! * java.lang.String)} to retrieve only the matching concrete method. * * @parame name - the name of the method to find. --- 148,153 ---- * to determine visibility. At most one method in the list is a concrete * method and a component of ClassType; any other methods in the list are ! * abstract. Use {@link ClassType#concreteMethodByName(String, ! * String)} to retrieve only the matching concrete method. * * @parame name - the name of the method to find. *************** *** 164,168 **** * For primitive classes the returned name is the name of the corresponding * primitive type; for example, "int" is returned as the name of the class ! * represented by <code>java.lang.Integer.TYPE</code>. * * @return a string containing the type name. --- 164,168 ---- * For primitive classes the returned name is the name of the corresponding * primitive type; for example, "int" is returned as the name of the class ! * represented by <code>Integer.TYPE</code>. * * @return a string containing the type name. *************** *** 224,227 **** --- 224,230 ---- /* * $Log$ + * Revision 1.2 2001/08/22 13:19:47 stolis + * Full qualification of classes removed where it is not necessary. + * * Revision 1.1.1.1 2000/11/27 17:45:05 stolis * First version of the interface of our architecture. Index: Snapshot.java =================================================================== RCS file: /cvsroot/javaprofiler/interface/net/sourceforge/javaprofiler/jpi/Snapshot.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** Snapshot.java 2001/07/17 21:03:34 1.2 --- Snapshot.java 2001/08/22 13:19:47 1.3 *************** *** 95,103 **** * was made. For each running thread in the target VM, a {@link ThreadInfo} * that holds information about it is placed in the list. The returned list ! * contains threads created through <code>java.lang.Thread</code>, all native * threads attached to the target VM through JNI, and system threads created * by the target VM. * <p>Thread objects that have not yet been started ! * (through <code>java.lang.Thread.start()</code>) and thread objects that * have completed their execution are not included in the returned list. * --- 95,103 ---- * was made. For each running thread in the target VM, a {@link ThreadInfo} * that holds information about it is placed in the list. The returned list ! * contains threads created through <code>Thread</code>, all native * threads attached to the target VM through JNI, and system threads created * by the target VM. * <p>Thread objects that have not yet been started ! * (through <code>Thread.start()</code>) and thread objects that * have completed their execution are not included in the returned list. * *************** *** 152,155 **** --- 152,158 ---- /* * $Log$ + * Revision 1.3 2001/08/22 13:19:47 stolis + * Full qualification of classes removed where it is not necessary. + * * Revision 1.2 2001/07/17 21:03:34 stolis * Javadoc updated. Index: ThreadInfo.java =================================================================== RCS file: /cvsroot/javaprofiler/interface/net/sourceforge/javaprofiler/jpi/ThreadInfo.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** ThreadInfo.java 2000/11/27 17:44:52 1.1.1.1 --- ThreadInfo.java 2001/08/22 13:19:47 1.2 *************** *** 52,56 **** * Suspends this thread. The thread can be resumed through {@link #resume()}. * <p>Suspending single threads with this method has the same dangers as ! * <code>java.lang.Thread.suspend()</code>. If the suspended thread holds * a monitor needed by another running thread, deadlock is possible in * the target VM (at least until the suspended thread is resumed again). --- 52,56 ---- * Suspends this thread. The thread can be resumed through {@link #resume()}. * <p>Suspending single threads with this method has the same dangers as ! * <code>Thread.suspend()</code>. If the suspended thread holds * a monitor needed by another running thread, deadlock is possible in * the target VM (at least until the suspended thread is resumed again). *************** *** 58,62 **** * through <code>resume()</code> method mentioned above; the application * in the target VM cannot resume the suspended thread through ! * <code>java.lang.Thread.resume()</code>. */ public void suspend(); --- 58,62 ---- * through <code>resume()</code> method mentioned above; the application * in the target VM cannot resume the suspended thread through ! * <code>Thread.resume()</code>. */ public void suspend(); *************** *** 185,188 **** --- 185,191 ---- /* * $Log$ + * Revision 1.2 2001/08/22 13:19:47 stolis + * Full qualification of classes removed where it is not necessary. + * * Revision 1.1.1.1 2000/11/27 17:44:52 stolis * First version of the interface of our architecture. |