You can subscribe to this list here.
2001 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(73) |
Sep
(92) |
Oct
(9) |
Nov
(80) |
Dec
(60) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2002 |
Jan
(92) |
Feb
(52) |
Mar
(71) |
Apr
(64) |
May
(53) |
Jun
(10) |
Jul
(111) |
Aug
(93) |
Sep
(134) |
Oct
|
Nov
|
Dec
|
From: Jan S. <st...@us...> - 2001-10-14 21:52:31
|
Update of /cvsroot/javaprofiler/interface/net/sourceforge/javaprofiler/jpi In directory usw-pr-cvs1:/tmp/cvs-serv22217 Added Files: VMDisconnectedException.java Log Message: Exception thrown when connection to the target VM is lost. --- NEW FILE: VMDisconnectedException.java --- /* * Sun Public License Notice * * The contents of this file are subject to the Sun Public License Version * 1.0 (the "License"). You may not use this file except in compliance with * the License. A copy of the License is available at http://www.sun.com/ * * The Original Code is the Java Profiler module. * The Initial Developers of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. * Portions created by Pavel Vacha are Copyright (C) 2000-2001. All Rights Reserved. * Portions created by Michal Pise are Copyright (C) 2000-2001. All Rights Reserved. * Portions created by Petr Luner are Copyright (C) 2000-2001. All Rights Reserved. * Portions created by Lukas Petru are Copyright (C) 2000-2001. All Rights Reserved. * Portions created by Marek Przeczek are Copyright (C) 2000-2001. All Rights Reserved. * * Contributors: Jan Stola, Pavel Vacha, Michal Pise, Petr Luner, * Lukas Petru and Marek Przeczek. */ package net.sourceforge.javaprofiler.jpi; /** * Unchecked exception thrown to indicate that the requested operation cannot * be completed because there is no longer a connection to the target VM. * * @author Jan Stola */ public class VMDisconnectedException extends RuntimeException { /** * Creates new VMDisconnectedException. */ public VMDisconnectedException() { super(); } /** * Creates new VMDisconnectedException. * * @param msg message describing the occured problem. */ public VMDisconnectedException(String msg) { super(msg); } } /* * $Log: VMDisconnectedException.java,v $ * Revision 1.1 2001/10/14 21:52:28 stolis * Exception thrown when connection to the target VM is lost. * */ |
From: Jan S. <st...@us...> - 2001-10-14 21:50:44
|
Update of /cvsroot/javaprofiler/interface/net/sourceforge/javaprofiler/jpi/connect In directory usw-pr-cvs1:/tmp/cvs-serv21802 Modified Files: ConnectingException.java Log Message: Added constructor with String parameter. Index: ConnectingException.java =================================================================== RCS file: /cvsroot/javaprofiler/interface/net/sourceforge/javaprofiler/jpi/connect/ConnectingException.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** ConnectingException.java 2001/09/29 20:55:06 1.2 --- ConnectingException.java 2001/10/14 21:50:41 1.3 *************** *** 24,34 **** * Thrown to indicate an exception during connecting to a VM. * ! * @author Michal Pise */ public class ConnectingException extends Exception { } /* * $Log$ * Revision 1.2 2001/09/29 20:55:06 stolis * Plural added in licenses. --- 24,47 ---- * Thrown to indicate an exception during connecting to a VM. * ! * @author Michal Pise, Jan Stola */ public class ConnectingException extends Exception { + + /** + * Creates new <code>ConnectingException</code>. + * + * @param msg message describing encountered problem. + */ + public ConnectingException(String msg) { + super(msg); + } + } /* * $Log$ + * Revision 1.3 2001/10/14 21:50:41 stolis + * Added constructor with String parameter. + * * Revision 1.2 2001/09/29 20:55:06 stolis * Plural added in licenses. |
From: Jan S. <st...@us...> - 2001-10-14 21:49:18
|
Update of /cvsroot/javaprofiler/interface/net/sourceforge/javaprofiler/jpi/connect In directory usw-pr-cvs1:/tmp/cvs-serv21314 Modified Files: Transport.java Log Message: Added method label(). Index: Transport.java =================================================================== RCS file: /cvsroot/javaprofiler/interface/net/sourceforge/javaprofiler/jpi/connect/Transport.java,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** Transport.java 2001/09/29 20:55:06 1.4 --- Transport.java 2001/10/14 21:49:14 1.5 *************** *** 37,40 **** --- 37,47 ---- */ public String name(); + + /** + * Returns short human-readable description of this transport. + * + * @return short human-readable description of this transport. + */ + public String label(); } *************** *** 42,45 **** --- 49,55 ---- /* * $Log$ + * Revision 1.5 2001/10/14 21:49:14 stolis + * Added method label(). + * * Revision 1.4 2001/09/29 20:55:06 stolis * Plural added in licenses. |
From: Pavel V. <va...@us...> - 2001-10-12 12:34:58
|
Update of /cvsroot/javaprofiler/library/src2 In directory usw-pr-cvs1:/tmp/cvs-serv15292 Modified Files: IProf.java Log Message: tiny bug Index: IProf.java =================================================================== RCS file: /cvsroot/javaprofiler/library/src2/IProf.java,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -r1.9 -r1.10 *** IProf.java 2001/09/23 16:50:15 1.9 --- IProf.java 2001/10/12 12:34:55 1.10 *************** *** 583,587 **** for( int i = 0; i < num; i++) { ! info.frames[i].lineno = _buf.getInt( pos); pos += 4; --- 583,587 ---- for( int i = 0; i < num; i++) { ! info.frames[i] = new sTraceFrameInfo(); info.frames[i].lineno = _buf.getInt( pos); pos += 4; |
Update of /cvsroot/javaprofiler/jpiimpl/net/sourceforge/javaprofiler/jpiimpl/data In directory usw-pr-cvs1:/tmp/cvs-serv17926/net/sourceforge/javaprofiler/jpiimpl/data Modified Files: AllocAbstractStatThreadClassData.java AllocArenaData.java AllocClassData.java AllocClassMethodData.java AllocClassTraceData.java AllocGlobalRefData.java AllocInstanceData.java AllocStatData.java AllocStatIDObjectData.java AllocThreadClassData.java AllocThreadClassMethodData.java AllocThreadClassTraceData.java AllocThreadMethodData.java AllocThreadTraceData.java AllocTraceData.java CPUStatData.java CPUStatIDObjectData.java CPUThreadMethodData.java CPUThreadTraceData.java CPUTraceData.java ClassData.java ClassFieldData.java GCData.java IDObjectData.java MethodData.java ThreadData.java ThreadGroupData.java TraceData.java TraceFrameData.java Log Message: Plural added in licenses. Index: AllocAbstractStatThreadClassData.java =================================================================== RCS file: /cvsroot/javaprofiler/jpiimpl/net/sourceforge/javaprofiler/jpiimpl/data/AllocAbstractStatThreadClassData.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** AllocAbstractStatThreadClassData.java 2001/07/18 22:20:39 1.2 --- AllocAbstractStatThreadClassData.java 2001/09/29 21:01:33 1.3 *************** *** 7,11 **** * * The Original Code is the Java Profiler module. ! * The Initial Developer of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. --- 7,11 ---- * * The Original Code is the Java Profiler module. ! * The Initial Developers of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. *************** *** 41,44 **** --- 41,47 ---- /* * $Log$ + * Revision 1.3 2001/09/29 21:01:33 stolis + * Plural added in licenses. + * * Revision 1.2 2001/07/18 22:20:39 stolis * Mirrors for CPU profiling added; Index: AllocArenaData.java =================================================================== RCS file: /cvsroot/javaprofiler/jpiimpl/net/sourceforge/javaprofiler/jpiimpl/data/AllocArenaData.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** AllocArenaData.java 2001/07/11 22:27:26 1.1.1.1 --- AllocArenaData.java 2001/09/29 21:01:33 1.2 *************** *** 7,11 **** * * The Original Code is the Java Profiler module. ! * The Initial Developer of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. --- 7,11 ---- * * The Original Code is the Java Profiler module. ! * The Initial Developers of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. *************** *** 116,119 **** --- 116,122 ---- /* * $Log$ + * Revision 1.2 2001/09/29 21:01:33 stolis + * Plural added in licenses. + * * Revision 1.1.1.1 2001/07/11 22:27:26 stolis * no message Index: AllocClassData.java =================================================================== RCS file: /cvsroot/javaprofiler/jpiimpl/net/sourceforge/javaprofiler/jpiimpl/data/AllocClassData.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** AllocClassData.java 2001/07/19 21:59:22 1.3 --- AllocClassData.java 2001/09/29 21:01:33 1.4 *************** *** 7,11 **** * * The Original Code is the Java Profiler module. ! * The Initial Developer of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. --- 7,11 ---- * * The Original Code is the Java Profiler module. ! * The Initial Developers of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. *************** *** 144,147 **** --- 144,150 ---- /* * $Log$ + * Revision 1.4 2001/09/29 21:01:33 stolis + * Plural added in licenses. + * * Revision 1.3 2001/07/19 21:59:22 stolis * Keys of maps changed. Index: AllocClassMethodData.java =================================================================== RCS file: /cvsroot/javaprofiler/jpiimpl/net/sourceforge/javaprofiler/jpiimpl/data/AllocClassMethodData.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** AllocClassMethodData.java 2001/07/19 21:59:22 1.3 --- AllocClassMethodData.java 2001/09/29 21:01:33 1.4 *************** *** 7,11 **** * * The Original Code is the Java Profiler module. ! * The Initial Developer of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. --- 7,11 ---- * * The Original Code is the Java Profiler module. ! * The Initial Developers of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. *************** *** 148,151 **** --- 148,154 ---- /* * $Log$ + * Revision 1.4 2001/09/29 21:01:33 stolis + * Plural added in licenses. + * * Revision 1.3 2001/07/19 21:59:22 stolis * Keys of maps changed. Index: AllocClassTraceData.java =================================================================== RCS file: /cvsroot/javaprofiler/jpiimpl/net/sourceforge/javaprofiler/jpiimpl/data/AllocClassTraceData.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** AllocClassTraceData.java 2001/07/19 21:59:22 1.3 --- AllocClassTraceData.java 2001/09/29 21:01:33 1.4 *************** *** 7,11 **** * * The Original Code is the Java Profiler module. ! * The Initial Developer of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. --- 7,11 ---- * * The Original Code is the Java Profiler module. ! * The Initial Developers of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. *************** *** 109,112 **** --- 109,115 ---- /* * $Log$ + * Revision 1.4 2001/09/29 21:01:33 stolis + * Plural added in licenses. + * * Revision 1.3 2001/07/19 21:59:22 stolis * Keys of maps changed. Index: AllocGlobalRefData.java =================================================================== RCS file: /cvsroot/javaprofiler/jpiimpl/net/sourceforge/javaprofiler/jpiimpl/data/AllocGlobalRefData.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** AllocGlobalRefData.java 2001/07/11 22:27:37 1.1.1.1 --- AllocGlobalRefData.java 2001/09/29 21:01:33 1.2 *************** *** 7,11 **** * * The Original Code is the Java Profiler module. ! * The Initial Developer of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. --- 7,11 ---- * * The Original Code is the Java Profiler module. ! * The Initial Developers of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. *************** *** 65,68 **** --- 65,71 ---- /* * $Log$ + * Revision 1.2 2001/09/29 21:01:33 stolis + * Plural added in licenses. + * * Revision 1.1.1.1 2001/07/11 22:27:37 stolis * no message Index: AllocInstanceData.java =================================================================== RCS file: /cvsroot/javaprofiler/jpiimpl/net/sourceforge/javaprofiler/jpiimpl/data/AllocInstanceData.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** AllocInstanceData.java 2001/07/19 21:59:22 1.3 --- AllocInstanceData.java 2001/09/29 21:01:33 1.4 *************** *** 7,11 **** * * The Original Code is the Java Profiler module. ! * The Initial Developer of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. --- 7,11 ---- * * The Original Code is the Java Profiler module. ! * The Initial Developers of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. *************** *** 92,95 **** --- 92,98 ---- /* * $Log$ + * Revision 1.4 2001/09/29 21:01:33 stolis + * Plural added in licenses. + * * Revision 1.3 2001/07/19 21:59:22 stolis * Keys of maps changed. Index: AllocStatData.java =================================================================== RCS file: /cvsroot/javaprofiler/jpiimpl/net/sourceforge/javaprofiler/jpiimpl/data/AllocStatData.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** AllocStatData.java 2001/07/18 22:20:39 1.2 --- AllocStatData.java 2001/09/29 21:01:33 1.3 *************** *** 7,11 **** * * The Original Code is the Java Profiler module. ! * The Initial Developer of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. --- 7,11 ---- * * The Original Code is the Java Profiler module. ! * The Initial Developers of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. *************** *** 75,78 **** --- 75,81 ---- /* * $Log$ + * Revision 1.3 2001/09/29 21:01:33 stolis + * Plural added in licenses. + * * Revision 1.2 2001/07/18 22:20:39 stolis * Mirrors for CPU profiling added; Index: AllocStatIDObjectData.java =================================================================== RCS file: /cvsroot/javaprofiler/jpiimpl/net/sourceforge/javaprofiler/jpiimpl/data/AllocStatIDObjectData.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** AllocStatIDObjectData.java 2001/07/18 22:20:39 1.1 --- AllocStatIDObjectData.java 2001/09/29 21:01:33 1.2 *************** *** 7,11 **** * * The Original Code is the Java Profiler module. ! * The Initial Developer of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. --- 7,11 ---- * * The Original Code is the Java Profiler module. ! * The Initial Developers of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. *************** *** 108,111 **** --- 108,114 ---- /* * $Log$ + * Revision 1.2 2001/09/29 21:01:33 stolis + * Plural added in licenses. + * * Revision 1.1 2001/07/18 22:20:39 stolis * Mirrors for CPU profiling added; Index: AllocThreadClassData.java =================================================================== RCS file: /cvsroot/javaprofiler/jpiimpl/net/sourceforge/javaprofiler/jpiimpl/data/AllocThreadClassData.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** AllocThreadClassData.java 2001/07/19 21:59:22 1.3 --- AllocThreadClassData.java 2001/09/29 21:01:33 1.4 *************** *** 7,11 **** * * The Original Code is the Java Profiler module. ! * The Initial Developer of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. --- 7,11 ---- * * The Original Code is the Java Profiler module. ! * The Initial Developers of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. *************** *** 109,112 **** --- 109,115 ---- /* * $Log$ + * Revision 1.4 2001/09/29 21:01:33 stolis + * Plural added in licenses. + * * Revision 1.3 2001/07/19 21:59:22 stolis * Keys of maps changed. Index: AllocThreadClassMethodData.java =================================================================== RCS file: /cvsroot/javaprofiler/jpiimpl/net/sourceforge/javaprofiler/jpiimpl/data/AllocThreadClassMethodData.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** AllocThreadClassMethodData.java 2001/07/19 21:59:22 1.3 --- AllocThreadClassMethodData.java 2001/09/29 21:01:33 1.4 *************** *** 7,11 **** * * The Original Code is the Java Profiler module. ! * The Initial Developer of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. --- 7,11 ---- * * The Original Code is the Java Profiler module. ! * The Initial Developers of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. *************** *** 124,127 **** --- 124,130 ---- /* * $Log$ + * Revision 1.4 2001/09/29 21:01:33 stolis + * Plural added in licenses. + * * Revision 1.3 2001/07/19 21:59:22 stolis * Keys of maps changed. Index: AllocThreadClassTraceData.java =================================================================== RCS file: /cvsroot/javaprofiler/jpiimpl/net/sourceforge/javaprofiler/jpiimpl/data/AllocThreadClassTraceData.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** AllocThreadClassTraceData.java 2001/07/11 22:27:48 1.1.1.1 --- AllocThreadClassTraceData.java 2001/09/29 21:01:33 1.2 *************** *** 7,11 **** * * The Original Code is the Java Profiler module. ! * The Initial Developer of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. --- 7,11 ---- * * The Original Code is the Java Profiler module. ! * The Initial Developers of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. *************** *** 82,85 **** --- 82,88 ---- /* * $Log$ + * Revision 1.2 2001/09/29 21:01:33 stolis + * Plural added in licenses. + * * Revision 1.1.1.1 2001/07/11 22:27:48 stolis * no message Index: AllocThreadMethodData.java =================================================================== RCS file: /cvsroot/javaprofiler/jpiimpl/net/sourceforge/javaprofiler/jpiimpl/data/AllocThreadMethodData.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** AllocThreadMethodData.java 2001/07/19 21:59:22 1.3 --- AllocThreadMethodData.java 2001/09/29 21:01:33 1.4 *************** *** 7,11 **** * * The Original Code is the Java Profiler module. ! * The Initial Developer of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. --- 7,11 ---- * * The Original Code is the Java Profiler module. ! * The Initial Developers of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. *************** *** 142,145 **** --- 142,148 ---- /* * $Log$ + * Revision 1.4 2001/09/29 21:01:33 stolis + * Plural added in licenses. + * * Revision 1.3 2001/07/19 21:59:22 stolis * Keys of maps changed. Index: AllocThreadTraceData.java =================================================================== RCS file: /cvsroot/javaprofiler/jpiimpl/net/sourceforge/javaprofiler/jpiimpl/data/AllocThreadTraceData.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** AllocThreadTraceData.java 2001/07/19 21:59:22 1.3 --- AllocThreadTraceData.java 2001/09/29 21:01:33 1.4 *************** *** 7,11 **** * * The Original Code is the Java Profiler module. ! * The Initial Developer of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. --- 7,11 ---- * * The Original Code is the Java Profiler module. ! * The Initial Developers of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. *************** *** 109,112 **** --- 109,115 ---- /* * $Log$ + * Revision 1.4 2001/09/29 21:01:33 stolis + * Plural added in licenses. + * * Revision 1.3 2001/07/19 21:59:22 stolis * Keys of maps changed. Index: AllocTraceData.java =================================================================== RCS file: /cvsroot/javaprofiler/jpiimpl/net/sourceforge/javaprofiler/jpiimpl/data/AllocTraceData.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** AllocTraceData.java 2001/07/19 21:59:22 1.3 --- AllocTraceData.java 2001/09/29 21:01:33 1.4 *************** *** 7,11 **** * * The Original Code is the Java Profiler module. ! * The Initial Developer of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. --- 7,11 ---- * * The Original Code is the Java Profiler module. ! * The Initial Developers of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. *************** *** 109,112 **** --- 109,115 ---- /* * $Log$ + * Revision 1.4 2001/09/29 21:01:33 stolis + * Plural added in licenses. + * * Revision 1.3 2001/07/19 21:59:22 stolis * Keys of maps changed. Index: CPUStatData.java =================================================================== RCS file: /cvsroot/javaprofiler/jpiimpl/net/sourceforge/javaprofiler/jpiimpl/data/CPUStatData.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** CPUStatData.java 2001/07/18 22:20:39 1.1 --- CPUStatData.java 2001/09/29 21:01:33 1.2 *************** *** 7,11 **** * * The Original Code is the Java Profiler module. ! * The Initial Developer of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. --- 7,11 ---- * * The Original Code is the Java Profiler module. ! * The Initial Developers of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. *************** *** 55,58 **** --- 55,61 ---- /* * $Log$ + * Revision 1.2 2001/09/29 21:01:33 stolis + * Plural added in licenses. + * * Revision 1.1 2001/07/18 22:20:39 stolis * Mirrors for CPU profiling added; Index: CPUStatIDObjectData.java =================================================================== RCS file: /cvsroot/javaprofiler/jpiimpl/net/sourceforge/javaprofiler/jpiimpl/data/CPUStatIDObjectData.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** CPUStatIDObjectData.java 2001/07/18 22:20:39 1.1 --- CPUStatIDObjectData.java 2001/09/29 21:01:33 1.2 *************** *** 7,11 **** * * The Original Code is the Java Profiler module. ! * The Initial Developer of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. --- 7,11 ---- * * The Original Code is the Java Profiler module. ! * The Initial Developers of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. *************** *** 75,78 **** --- 75,81 ---- /* * $Log$ + * Revision 1.2 2001/09/29 21:01:33 stolis + * Plural added in licenses. + * * Revision 1.1 2001/07/18 22:20:39 stolis * Mirrors for CPU profiling added; Index: CPUThreadMethodData.java =================================================================== RCS file: /cvsroot/javaprofiler/jpiimpl/net/sourceforge/javaprofiler/jpiimpl/data/CPUThreadMethodData.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** CPUThreadMethodData.java 2001/07/19 21:59:22 1.2 --- CPUThreadMethodData.java 2001/09/29 21:01:33 1.3 *************** *** 7,11 **** * * The Original Code is the Java Profiler module. ! * The Initial Developer of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. --- 7,11 ---- * * The Original Code is the Java Profiler module. ! * The Initial Developers of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. *************** *** 104,107 **** --- 104,110 ---- /* * $Log$ + * Revision 1.3 2001/09/29 21:01:33 stolis + * Plural added in licenses. + * * Revision 1.2 2001/07/19 21:59:22 stolis * Keys of maps changed. Index: CPUThreadTraceData.java =================================================================== RCS file: /cvsroot/javaprofiler/jpiimpl/net/sourceforge/javaprofiler/jpiimpl/data/CPUThreadTraceData.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** CPUThreadTraceData.java 2001/07/18 22:20:39 1.1 --- CPUThreadTraceData.java 2001/09/29 21:01:33 1.2 *************** *** 7,11 **** * * The Original Code is the Java Profiler module. ! * The Initial Developer of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. --- 7,11 ---- * * The Original Code is the Java Profiler module. ! * The Initial Developers of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. *************** *** 68,71 **** --- 68,74 ---- /* * $Log$ + * Revision 1.2 2001/09/29 21:01:33 stolis + * Plural added in licenses. + * * Revision 1.1 2001/07/18 22:20:39 stolis * Mirrors for CPU profiling added; Index: CPUTraceData.java =================================================================== RCS file: /cvsroot/javaprofiler/jpiimpl/net/sourceforge/javaprofiler/jpiimpl/data/CPUTraceData.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** CPUTraceData.java 2001/07/19 21:59:22 1.2 --- CPUTraceData.java 2001/09/29 21:01:33 1.3 *************** *** 7,11 **** * * The Original Code is the Java Profiler module. ! * The Initial Developer of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. --- 7,11 ---- * * The Original Code is the Java Profiler module. ! * The Initial Developers of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. *************** *** 108,111 **** --- 108,114 ---- /* * $Log$ + * Revision 1.3 2001/09/29 21:01:33 stolis + * Plural added in licenses. + * * Revision 1.2 2001/07/19 21:59:22 stolis * Keys of maps changed. Index: ClassData.java =================================================================== RCS file: /cvsroot/javaprofiler/jpiimpl/net/sourceforge/javaprofiler/jpiimpl/data/ClassData.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** ClassData.java 2001/07/18 22:20:39 1.2 --- ClassData.java 2001/09/29 21:01:33 1.3 *************** *** 7,11 **** * * The Original Code is the Java Profiler module. ! * The Initial Developer of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. --- 7,11 ---- * * The Original Code is the Java Profiler module. ! * The Initial Developers of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. *************** *** 195,198 **** --- 195,201 ---- /* * $Log$ + * Revision 1.3 2001/09/29 21:01:33 stolis + * Plural added in licenses. + * * Revision 1.2 2001/07/18 22:20:39 stolis * Mirrors for CPU profiling added; Index: ClassFieldData.java =================================================================== RCS file: /cvsroot/javaprofiler/jpiimpl/net/sourceforge/javaprofiler/jpiimpl/data/ClassFieldData.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** ClassFieldData.java 2001/07/11 22:27:58 1.1.1.1 --- ClassFieldData.java 2001/09/29 21:01:33 1.2 *************** *** 7,11 **** * * The Original Code is the Java Profiler module. ! * The Initial Developer of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. --- 7,11 ---- * * The Original Code is the Java Profiler module. ! * The Initial Developers of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. *************** *** 67,70 **** --- 67,73 ---- /* * $Log$ + * Revision 1.2 2001/09/29 21:01:33 stolis + * Plural added in licenses. + * * Revision 1.1.1.1 2001/07/11 22:27:58 stolis * no message Index: GCData.java =================================================================== RCS file: /cvsroot/javaprofiler/jpiimpl/net/sourceforge/javaprofiler/jpiimpl/data/GCData.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** GCData.java 2001/07/11 22:27:58 1.1.1.1 --- GCData.java 2001/09/29 21:01:33 1.2 *************** *** 7,11 **** * * The Original Code is the Java Profiler module. ! * The Initial Developer of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. --- 7,11 ---- * * The Original Code is the Java Profiler module. ! * The Initial Developers of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. *************** *** 107,110 **** --- 107,113 ---- /* * $Log$ + * Revision 1.2 2001/09/29 21:01:33 stolis + * Plural added in licenses. + * * Revision 1.1.1.1 2001/07/11 22:27:58 stolis * no message Index: IDObjectData.java =================================================================== RCS file: /cvsroot/javaprofiler/jpiimpl/net/sourceforge/javaprofiler/jpiimpl/data/IDObjectData.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** IDObjectData.java 2001/07/11 22:27:58 1.1.1.1 --- IDObjectData.java 2001/09/29 21:01:33 1.2 *************** *** 7,11 **** * * The Original Code is the Java Profiler module. ! * The Initial Developer of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. --- 7,11 ---- * * The Original Code is the Java Profiler module. ! * The Initial Developers of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. *************** *** 52,55 **** --- 52,58 ---- /* * $Log$ + * Revision 1.2 2001/09/29 21:01:33 stolis + * Plural added in licenses. + * * Revision 1.1.1.1 2001/07/11 22:27:58 stolis * no message Index: MethodData.java =================================================================== RCS file: /cvsroot/javaprofiler/jpiimpl/net/sourceforge/javaprofiler/jpiimpl/data/MethodData.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** MethodData.java 2001/07/19 21:59:22 1.3 --- MethodData.java 2001/09/29 21:01:33 1.4 *************** *** 7,11 **** * * The Original Code is the Java Profiler module. ! * The Initial Developer of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. --- 7,11 ---- * * The Original Code is the Java Profiler module. ! * The Initial Developers of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. *************** *** 357,360 **** --- 357,363 ---- /* * $Log$ + * Revision 1.4 2001/09/29 21:01:33 stolis + * Plural added in licenses. + * * Revision 1.3 2001/07/19 21:59:22 stolis * Keys of maps changed. Index: ThreadData.java =================================================================== RCS file: /cvsroot/javaprofiler/jpiimpl/net/sourceforge/javaprofiler/jpiimpl/data/ThreadData.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** ThreadData.java 2001/07/19 21:59:22 1.3 --- ThreadData.java 2001/09/29 21:01:33 1.4 *************** *** 7,11 **** * * The Original Code is the Java Profiler module. ! * The Initial Developer of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. --- 7,11 ---- * * The Original Code is the Java Profiler module. ! * The Initial Developers of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. *************** *** 236,239 **** --- 236,242 ---- /* * $Log$ + * Revision 1.4 2001/09/29 21:01:33 stolis + * Plural added in licenses. + * * Revision 1.3 2001/07/19 21:59:22 stolis * Keys of maps changed. Index: ThreadGroupData.java =================================================================== RCS file: /cvsroot/javaprofiler/jpiimpl/net/sourceforge/javaprofiler/jpiimpl/data/ThreadGroupData.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** ThreadGroupData.java 2001/07/11 22:28:06 1.1.1.1 --- ThreadGroupData.java 2001/09/29 21:01:33 1.2 *************** *** 7,11 **** * * The Original Code is the Java Profiler module. ! * The Initial Developer of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. --- 7,11 ---- * * The Original Code is the Java Profiler module. ! * The Initial Developers of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. *************** *** 88,91 **** --- 88,94 ---- /* * $Log$ + * Revision 1.2 2001/09/29 21:01:33 stolis + * Plural added in licenses. + * * Revision 1.1.1.1 2001/07/11 22:28:06 stolis * no message Index: TraceData.java =================================================================== RCS file: /cvsroot/javaprofiler/jpiimpl/net/sourceforge/javaprofiler/jpiimpl/data/TraceData.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** TraceData.java 2001/07/19 21:59:22 1.2 --- TraceData.java 2001/09/29 21:01:33 1.3 *************** *** 7,11 **** * * The Original Code is the Java Profiler module. ! * The Initial Developer of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. --- 7,11 ---- * * The Original Code is the Java Profiler module. ! * The Initial Developers of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. *************** *** 41,44 **** --- 41,47 ---- /* * $Log$ + * Revision 1.3 2001/09/29 21:01:33 stolis + * Plural added in licenses. + * * Revision 1.2 2001/07/19 21:59:22 stolis * Keys of maps changed. Index: TraceFrameData.java =================================================================== RCS file: /cvsroot/javaprofiler/jpiimpl/net/sourceforge/javaprofiler/jpiimpl/data/TraceFrameData.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** TraceFrameData.java 2001/07/11 22:28:10 1.1.1.1 --- TraceFrameData.java 2001/09/29 21:01:33 1.2 *************** *** 7,11 **** * * The Original Code is the Java Profiler module. ! * The Initial Developer of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. --- 7,11 ---- * * The Original Code is the Java Profiler module. ! * The Initial Developers of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. *************** *** 65,68 **** --- 65,71 ---- /* * $Log$ + * Revision 1.2 2001/09/29 21:01:33 stolis + * Plural added in licenses. + * * Revision 1.1.1.1 2001/07/11 22:28:10 stolis * no message |
Update of /cvsroot/javaprofiler/jpiimpl/net/sourceforge/javaprofiler/jpiimpl/connect In directory usw-pr-cvs1:/tmp/cvs-serv17926/net/sourceforge/javaprofiler/jpiimpl/connect Modified Files: ArgumentImpl.java BooleanArgumentImpl.java IntegerArgumentImpl.java LaunchConnector.java SelectedArgumentImpl.java ShmemAttachConnector.java ShmemLaunchConnector.java ShmemListenConnector.java ShmemTransport.java SocketAttachConnector.java SocketLaunchConnector.java SocketListenConnector.java SocketTransport.java StringArgumentImpl.java Log Message: Plural added in licenses. Index: ArgumentImpl.java =================================================================== RCS file: /cvsroot/javaprofiler/jpiimpl/net/sourceforge/javaprofiler/jpiimpl/connect/ArgumentImpl.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** ArgumentImpl.java 2001/08/22 13:35:31 1.1 --- ArgumentImpl.java 2001/09/29 21:01:33 1.2 *************** *** 7,11 **** * * The Original Code is the Java Profiler module. ! * The Initial Developer of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. --- 7,11 ---- * * The Original Code is the Java Profiler module. ! * The Initial Developers of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. *************** *** 133,136 **** --- 133,139 ---- /* * $Log$ + * Revision 1.2 2001/09/29 21:01:33 stolis + * Plural added in licenses. + * * Revision 1.1 2001/08/22 13:35:31 stolis * First version of Connectors. Index: BooleanArgumentImpl.java =================================================================== RCS file: /cvsroot/javaprofiler/jpiimpl/net/sourceforge/javaprofiler/jpiimpl/connect/BooleanArgumentImpl.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** BooleanArgumentImpl.java 2001/08/22 13:35:31 1.1 --- BooleanArgumentImpl.java 2001/09/29 21:01:33 1.2 *************** *** 7,11 **** * * The Original Code is the Java Profiler module. ! * The Initial Developer of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. --- 7,11 ---- * * The Original Code is the Java Profiler module. ! * The Initial Developers of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. *************** *** 76,79 **** --- 76,82 ---- /* * $Log$ + * Revision 1.2 2001/09/29 21:01:33 stolis + * Plural added in licenses. + * * Revision 1.1 2001/08/22 13:35:31 stolis * First version of Connectors. Index: IntegerArgumentImpl.java =================================================================== RCS file: /cvsroot/javaprofiler/jpiimpl/net/sourceforge/javaprofiler/jpiimpl/connect/IntegerArgumentImpl.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** IntegerArgumentImpl.java 2001/08/22 13:35:31 1.1 --- IntegerArgumentImpl.java 2001/09/29 21:01:33 1.2 *************** *** 7,11 **** * * The Original Code is the Java Profiler module. ! * The Initial Developer of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. --- 7,11 ---- * * The Original Code is the Java Profiler module. ! * The Initial Developers of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. *************** *** 125,128 **** --- 125,131 ---- /* * $Log$ + * Revision 1.2 2001/09/29 21:01:33 stolis + * Plural added in licenses. + * * Revision 1.1 2001/08/22 13:35:31 stolis * First version of Connectors. Index: LaunchConnector.java =================================================================== RCS file: /cvsroot/javaprofiler/jpiimpl/net/sourceforge/javaprofiler/jpiimpl/connect/LaunchConnector.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** LaunchConnector.java 2001/08/22 13:35:31 1.1 --- LaunchConnector.java 2001/09/29 21:01:33 1.2 *************** *** 7,11 **** * * The Original Code is the Java Profiler module. ! * The Initial Developer of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. --- 7,11 ---- * * The Original Code is the Java Profiler module. ! * The Initial Developers of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. *************** *** 119,122 **** --- 119,125 ---- /* * $Log$ + * Revision 1.2 2001/09/29 21:01:33 stolis + * Plural added in licenses. + * * Revision 1.1 2001/08/22 13:35:31 stolis * First version of Connectors. Index: SelectedArgumentImpl.java =================================================================== RCS file: /cvsroot/javaprofiler/jpiimpl/net/sourceforge/javaprofiler/jpiimpl/connect/SelectedArgumentImpl.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** SelectedArgumentImpl.java 2001/08/22 13:35:31 1.1 --- SelectedArgumentImpl.java 2001/09/29 21:01:33 1.2 *************** *** 7,11 **** * * The Original Code is the Java Profiler module. ! * The Initial Developer of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. --- 7,11 ---- * * The Original Code is the Java Profiler module. ! * The Initial Developers of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. *************** *** 71,74 **** --- 71,77 ---- /* * $Log$ + * Revision 1.2 2001/09/29 21:01:33 stolis + * Plural added in licenses. + * * Revision 1.1 2001/08/22 13:35:31 stolis * First version of Connectors. Index: ShmemAttachConnector.java =================================================================== RCS file: /cvsroot/javaprofiler/jpiimpl/net/sourceforge/javaprofiler/jpiimpl/connect/ShmemAttachConnector.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** ShmemAttachConnector.java 2001/08/22 13:35:31 1.1 --- ShmemAttachConnector.java 2001/09/29 21:01:33 1.2 *************** *** 7,11 **** * * The Original Code is the Java Profiler module. ! * The Initial Developer of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. --- 7,11 ---- * * The Original Code is the Java Profiler module. ! * The Initial Developers of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. *************** *** 126,129 **** --- 126,132 ---- /* * $Log$ + * Revision 1.2 2001/09/29 21:01:33 stolis + * Plural added in licenses. + * * Revision 1.1 2001/08/22 13:35:31 stolis * First version of Connectors. Index: ShmemLaunchConnector.java =================================================================== RCS file: /cvsroot/javaprofiler/jpiimpl/net/sourceforge/javaprofiler/jpiimpl/connect/ShmemLaunchConnector.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** ShmemLaunchConnector.java 2001/08/22 13:35:31 1.1 --- ShmemLaunchConnector.java 2001/09/29 21:01:33 1.2 *************** *** 7,11 **** * * The Original Code is the Java Profiler module. ! * The Initial Developer of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. --- 7,11 ---- * * The Original Code is the Java Profiler module. ! * The Initial Developers of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. *************** *** 107,110 **** --- 107,113 ---- /* * $Log$ + * Revision 1.2 2001/09/29 21:01:33 stolis + * Plural added in licenses. + * * Revision 1.1 2001/08/22 13:35:31 stolis * First version of Connectors. Index: ShmemListenConnector.java =================================================================== RCS file: /cvsroot/javaprofiler/jpiimpl/net/sourceforge/javaprofiler/jpiimpl/connect/ShmemListenConnector.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** ShmemListenConnector.java 2001/08/22 13:35:31 1.1 --- ShmemListenConnector.java 2001/09/29 21:01:33 1.2 *************** *** 7,11 **** * * The Original Code is the Java Profiler module. ! * The Initial Developer of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. --- 7,11 ---- * * The Original Code is the Java Profiler module. ! * The Initial Developers of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. *************** *** 126,129 **** --- 126,132 ---- /* * $Log$ + * Revision 1.2 2001/09/29 21:01:33 stolis + * Plural added in licenses. + * * Revision 1.1 2001/08/22 13:35:31 stolis * First version of Connectors. Index: ShmemTransport.java =================================================================== RCS file: /cvsroot/javaprofiler/jpiimpl/net/sourceforge/javaprofiler/jpiimpl/connect/ShmemTransport.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** ShmemTransport.java 2001/08/22 13:35:31 1.1 --- ShmemTransport.java 2001/09/29 21:01:33 1.2 *************** *** 7,11 **** * * The Original Code is the Java Profiler module. ! * The Initial Developer of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. --- 7,11 ---- * * The Original Code is the Java Profiler module. ! * The Initial Developers of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. *************** *** 76,79 **** --- 76,82 ---- /* * $Log$ + * Revision 1.2 2001/09/29 21:01:33 stolis + * Plural added in licenses. + * * Revision 1.1 2001/08/22 13:35:31 stolis * First version of Connectors. Index: SocketAttachConnector.java =================================================================== RCS file: /cvsroot/javaprofiler/jpiimpl/net/sourceforge/javaprofiler/jpiimpl/connect/SocketAttachConnector.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** SocketAttachConnector.java 2001/08/22 13:35:31 1.1 --- SocketAttachConnector.java 2001/09/29 21:01:33 1.2 *************** *** 7,11 **** * * The Original Code is the Java Profiler module. ! * The Initial Developer of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. --- 7,11 ---- * * The Original Code is the Java Profiler module. ! * The Initial Developers of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. *************** *** 136,139 **** --- 136,142 ---- /* * $Log$ + * Revision 1.2 2001/09/29 21:01:33 stolis + * Plural added in licenses. + * * Revision 1.1 2001/08/22 13:35:31 stolis * First version of Connectors. Index: SocketLaunchConnector.java =================================================================== RCS file: /cvsroot/javaprofiler/jpiimpl/net/sourceforge/javaprofiler/jpiimpl/connect/SocketLaunchConnector.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** SocketLaunchConnector.java 2001/08/22 13:35:31 1.1 --- SocketLaunchConnector.java 2001/09/29 21:01:33 1.2 *************** *** 7,11 **** * * The Original Code is the Java Profiler module. ! * The Initial Developer of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. --- 7,11 ---- * * The Original Code is the Java Profiler module. ! * The Initial Developers of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. *************** *** 106,109 **** --- 106,112 ---- /* * $Log$ + * Revision 1.2 2001/09/29 21:01:33 stolis + * Plural added in licenses. + * * Revision 1.1 2001/08/22 13:35:31 stolis * First version of Connectors. Index: SocketListenConnector.java =================================================================== RCS file: /cvsroot/javaprofiler/jpiimpl/net/sourceforge/javaprofiler/jpiimpl/connect/SocketListenConnector.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** SocketListenConnector.java 2001/08/22 13:35:31 1.1 --- SocketListenConnector.java 2001/09/29 21:01:33 1.2 *************** *** 7,11 **** * * The Original Code is the Java Profiler module. ! * The Initial Developer of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. --- 7,11 ---- * * The Original Code is the Java Profiler module. ! * The Initial Developers of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. *************** *** 125,128 **** --- 125,131 ---- /* * $Log$ + * Revision 1.2 2001/09/29 21:01:33 stolis + * Plural added in licenses. + * * Revision 1.1 2001/08/22 13:35:31 stolis * First version of Connectors. Index: SocketTransport.java =================================================================== RCS file: /cvsroot/javaprofiler/jpiimpl/net/sourceforge/javaprofiler/jpiimpl/connect/SocketTransport.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** SocketTransport.java 2001/08/22 13:35:31 1.1 --- SocketTransport.java 2001/09/29 21:01:33 1.2 *************** *** 7,11 **** * * The Original Code is the Java Profiler module. ! * The Initial Developer of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. --- 7,11 ---- * * The Original Code is the Java Profiler module. ! * The Initial Developers of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. *************** *** 68,71 **** --- 68,74 ---- /* * $Log$ + * Revision 1.2 2001/09/29 21:01:33 stolis + * Plural added in licenses. + * * Revision 1.1 2001/08/22 13:35:31 stolis * First version of Connectors. Index: StringArgumentImpl.java =================================================================== RCS file: /cvsroot/javaprofiler/jpiimpl/net/sourceforge/javaprofiler/jpiimpl/connect/StringArgumentImpl.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** StringArgumentImpl.java 2001/08/22 13:35:31 1.1 --- StringArgumentImpl.java 2001/09/29 21:01:33 1.2 *************** *** 7,11 **** * * The Original Code is the Java Profiler module. ! * The Initial Developer of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. --- 7,11 ---- * * The Original Code is the Java Profiler module. ! * The Initial Developers of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. *************** *** 48,51 **** --- 48,54 ---- /* * $Log$ + * Revision 1.2 2001/09/29 21:01:33 stolis + * Plural added in licenses. + * * Revision 1.1 2001/08/22 13:35:31 stolis * First version of Connectors. |
From: Jan S. <st...@us...> - 2001-09-29 21:01:36
|
Update of /cvsroot/javaprofiler/jpiimpl/net/sourceforge/javaprofiler/jpiimpl In directory usw-pr-cvs1:/tmp/cvs-serv17926/net/sourceforge/javaprofiler/jpiimpl Modified Files: VirtualMachineManagerImpl.java Log Message: Plural added in licenses. Index: VirtualMachineManagerImpl.java =================================================================== RCS file: /cvsroot/javaprofiler/jpiimpl/net/sourceforge/javaprofiler/jpiimpl/VirtualMachineManagerImpl.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** VirtualMachineManagerImpl.java 2001/08/22 13:24:59 1.1 --- VirtualMachineManagerImpl.java 2001/09/29 21:01:33 1.2 *************** *** 7,11 **** * * The Original Code is the Java Profiler module. ! * The Initial Developer of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. --- 7,11 ---- * * The Original Code is the Java Profiler module. ! * The Initial Developers of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. *************** *** 97,100 **** --- 97,103 ---- /* * $Log$ + * Revision 1.2 2001/09/29 21:01:33 stolis + * Plural added in licenses. + * * Revision 1.1 2001/08/22 13:24:59 stolis * First version of implementation of VirtualMachineManager. |
Update of /cvsroot/javaprofiler/interface/net/sourceforge/javaprofiler/jpi/event In directory usw-pr-cvs1:/tmp/cvs-serv16326/net/sourceforge/javaprofiler/jpi/event Modified Files: ArenaDeleteEvent.java ArenaNewEvent.java CallFrame.java CallTrace.java ClassLoadEvent.java ClassLoadHookEvent.java ClassUnload.java CompiledMethodLoadEvent.java CompiledMethodUnloadEvent.java DataDumpRequestEvent.java DataResetRequestEvent.java Event.java EventQueue.java Field.java GCFinishEvent.java GCStartEvent.java HeapDumpEvent.java InstructionStartEvent.java JNIGlobalRefAllocEvent.java JNIGlobalRefFreeEvent.java JNIWeakGlobalRefAllocEvent.java JNIWeakGlobalRefFreeEvent.java JVMInitDoneEvent.java JVMShutDownEvent.java LineNo.java Method.java MethodEntry2Event.java MethodEntryEvent.java MethodExitEvent.java MonitorContendedEnterEvent.java MonitorContendedEnteredEvent.java MonitorContendedExitEvent.java MonitorDumpEvent.java MonitorWaitEvent.java MonitorWaitedEvent.java ObjectAllocEvent.java ObjectDumpEvent.java ObjectFreeEvent.java ObjectMoveEvent.java RawMonitorContendedEnterEvent.java RawMonitorContendedEnteredEvent.java RawMonitorContendedExitEvent.java ThreadEndEvent.java ThreadStartEvent.java Log Message: Plural added in licenses. Index: ArenaDeleteEvent.java =================================================================== RCS file: /cvsroot/javaprofiler/interface/net/sourceforge/javaprofiler/jpi/event/ArenaDeleteEvent.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** ArenaDeleteEvent.java 2001/07/17 21:03:39 1.2 --- ArenaDeleteEvent.java 2001/09/29 20:55:06 1.3 *************** *** 7,11 **** * * The Original Code is the Java Profiler module. ! * The Initial Developer of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. --- 7,11 ---- * * The Original Code is the Java Profiler module. ! * The Initial Developers of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. *************** *** 49,52 **** --- 49,55 ---- /* * $Log$ + * Revision 1.3 2001/09/29 20:55:06 stolis + * Plural added in licenses. + * * Revision 1.2 2001/07/17 21:03:39 stolis * Javadoc updated. Index: ArenaNewEvent.java =================================================================== RCS file: /cvsroot/javaprofiler/interface/net/sourceforge/javaprofiler/jpi/event/ArenaNewEvent.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** ArenaNewEvent.java 2000/11/27 17:45:39 1.1.1.1 --- ArenaNewEvent.java 2001/09/29 20:55:06 1.2 *************** *** 7,11 **** * * The Original Code is the Java Profiler module. ! * The Initial Developer of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. --- 7,11 ---- * * The Original Code is the Java Profiler module. ! * The Initial Developers of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. *************** *** 47,50 **** --- 47,53 ---- /* * $Log$ + * Revision 1.2 2001/09/29 20:55:06 stolis + * Plural added in licenses. + * * Revision 1.1.1.1 2000/11/27 17:45:39 stolis * First version of the interface of our architecture. Index: CallFrame.java =================================================================== RCS file: /cvsroot/javaprofiler/interface/net/sourceforge/javaprofiler/jpi/event/CallFrame.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** CallFrame.java 2000/11/27 17:45:39 1.1.1.1 --- CallFrame.java 2001/09/29 20:55:06 1.2 *************** *** 7,11 **** * * The Original Code is the Java Profiler module. ! * The Initial Developer of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. --- 7,11 ---- * * The Original Code is the Java Profiler module. ! * The Initial Developers of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. *************** *** 46,49 **** --- 46,52 ---- /* * $Log$ + * Revision 1.2 2001/09/29 20:55:06 stolis + * Plural added in licenses. + * * Revision 1.1.1.1 2000/11/27 17:45:39 stolis * First version of the interface of our architecture. Index: CallTrace.java =================================================================== RCS file: /cvsroot/javaprofiler/interface/net/sourceforge/javaprofiler/jpi/event/CallTrace.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** CallTrace.java 2000/11/27 17:45:39 1.1.1.1 --- CallTrace.java 2001/09/29 20:55:06 1.2 *************** *** 7,11 **** * * The Original Code is the Java Profiler module. ! * The Initial Developer of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. --- 7,11 ---- * * The Original Code is the Java Profiler module. ! * The Initial Developers of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. *************** *** 49,52 **** --- 49,55 ---- /* * $Log$ + * Revision 1.2 2001/09/29 20:55:06 stolis + * Plural added in licenses. + * * Revision 1.1.1.1 2000/11/27 17:45:39 stolis * First version of the interface of our architecture. Index: ClassLoadEvent.java =================================================================== RCS file: /cvsroot/javaprofiler/interface/net/sourceforge/javaprofiler/jpi/event/ClassLoadEvent.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** ClassLoadEvent.java 2000/11/27 17:45:42 1.1.1.1 --- ClassLoadEvent.java 2001/09/29 20:55:06 1.2 *************** *** 7,11 **** * * The Original Code is the Java Profiler module. ! * The Initial Developer of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. --- 7,11 ---- * * The Original Code is the Java Profiler module. ! * The Initial Developers of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. *************** *** 113,116 **** --- 113,119 ---- /* * $Log$ + * Revision 1.2 2001/09/29 20:55:06 stolis + * Plural added in licenses. + * * Revision 1.1.1.1 2000/11/27 17:45:42 stolis * First version of the interface of our architecture. Index: ClassLoadHookEvent.java =================================================================== RCS file: /cvsroot/javaprofiler/interface/net/sourceforge/javaprofiler/jpi/event/ClassLoadHookEvent.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** ClassLoadHookEvent.java 2000/11/27 17:45:47 1.1.1.1 --- ClassLoadHookEvent.java 2001/09/29 20:55:06 1.2 *************** *** 7,11 **** * * The Original Code is the Java Profiler module. ! * The Initial Developer of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. --- 7,11 ---- * * The Original Code is the Java Profiler module. ! * The Initial Developers of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. *************** *** 34,37 **** --- 34,40 ---- /* * $Log$ + * Revision 1.2 2001/09/29 20:55:06 stolis + * Plural added in licenses. + * * Revision 1.1.1.1 2000/11/27 17:45:47 stolis * First version of the interface of our architecture. Index: ClassUnload.java =================================================================== RCS file: /cvsroot/javaprofiler/interface/net/sourceforge/javaprofiler/jpi/event/ClassUnload.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** ClassUnload.java 2000/11/27 17:45:53 1.1.1.1 --- ClassUnload.java 2001/09/29 20:55:06 1.2 *************** *** 7,11 **** * * The Original Code is the Java Profiler module. ! * The Initial Developer of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. --- 7,11 ---- * * The Original Code is the Java Profiler module. ! * The Initial Developers of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. *************** *** 34,37 **** --- 34,40 ---- /* * $Log$ + * Revision 1.2 2001/09/29 20:55:06 stolis + * Plural added in licenses. + * * Revision 1.1.1.1 2000/11/27 17:45:53 stolis * First version of the interface of our architecture. Index: CompiledMethodLoadEvent.java =================================================================== RCS file: /cvsroot/javaprofiler/interface/net/sourceforge/javaprofiler/jpi/event/CompiledMethodLoadEvent.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** CompiledMethodLoadEvent.java 2000/11/27 17:46:10 1.1.1.1 --- CompiledMethodLoadEvent.java 2001/09/29 20:55:06 1.2 *************** *** 7,11 **** * * The Original Code is the Java Profiler module. ! * The Initial Developer of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. --- 7,11 ---- * * The Original Code is the Java Profiler module. ! * The Initial Developers of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. *************** *** 34,37 **** --- 34,40 ---- /* * $Log$ + * Revision 1.2 2001/09/29 20:55:06 stolis + * Plural added in licenses. + * * Revision 1.1.1.1 2000/11/27 17:46:10 stolis * First version of the interface of our architecture. Index: CompiledMethodUnloadEvent.java =================================================================== RCS file: /cvsroot/javaprofiler/interface/net/sourceforge/javaprofiler/jpi/event/CompiledMethodUnloadEvent.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** CompiledMethodUnloadEvent.java 2000/11/27 17:46:10 1.1.1.1 --- CompiledMethodUnloadEvent.java 2001/09/29 20:55:06 1.2 *************** *** 7,11 **** * * The Original Code is the Java Profiler module. ! * The Initial Developer of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. --- 7,11 ---- * * The Original Code is the Java Profiler module. ! * The Initial Developers of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. *************** *** 34,37 **** --- 34,40 ---- /* * $Log$ + * Revision 1.2 2001/09/29 20:55:06 stolis + * Plural added in licenses. + * * Revision 1.1.1.1 2000/11/27 17:46:10 stolis * First version of the interface of our architecture. Index: DataDumpRequestEvent.java =================================================================== RCS file: /cvsroot/javaprofiler/interface/net/sourceforge/javaprofiler/jpi/event/DataDumpRequestEvent.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** DataDumpRequestEvent.java 2000/11/27 17:45:53 1.1.1.1 --- DataDumpRequestEvent.java 2001/09/29 20:55:06 1.2 *************** *** 7,11 **** * * The Original Code is the Java Profiler module. ! * The Initial Developer of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. --- 7,11 ---- * * The Original Code is the Java Profiler module. ! * The Initial Developers of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. *************** *** 34,37 **** --- 34,40 ---- /* * $Log$ + * Revision 1.2 2001/09/29 20:55:06 stolis + * Plural added in licenses. + * * Revision 1.1.1.1 2000/11/27 17:45:53 stolis * First version of the interface of our architecture. Index: DataResetRequestEvent.java =================================================================== RCS file: /cvsroot/javaprofiler/interface/net/sourceforge/javaprofiler/jpi/event/DataResetRequestEvent.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** DataResetRequestEvent.java 2000/11/27 17:45:53 1.1.1.1 --- DataResetRequestEvent.java 2001/09/29 20:55:06 1.2 *************** *** 7,11 **** * * The Original Code is the Java Profiler module. ! * The Initial Developer of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. --- 7,11 ---- * * The Original Code is the Java Profiler module. ! * The Initial Developers of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. *************** *** 34,37 **** --- 34,40 ---- /* * $Log$ + * Revision 1.2 2001/09/29 20:55:06 stolis + * Plural added in licenses. + * * Revision 1.1.1.1 2000/11/27 17:45:53 stolis * First version of the interface of our architecture. Index: Event.java =================================================================== RCS file: /cvsroot/javaprofiler/interface/net/sourceforge/javaprofiler/jpi/event/Event.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** Event.java 2000/11/27 17:45:30 1.1.1.1 --- Event.java 2001/09/29 20:55:06 1.2 *************** *** 7,11 **** * * The Original Code is the Java Profiler module. ! * The Initial Developer of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. --- 7,11 ---- * * The Original Code is the Java Profiler module. ! * The Initial Developers of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. *************** *** 113,116 **** --- 113,119 ---- /* * $Log$ + * Revision 1.2 2001/09/29 20:55:06 stolis + * Plural added in licenses. + * * Revision 1.1.1.1 2000/11/27 17:45:30 stolis * First version of the interface of our architecture. Index: EventQueue.java =================================================================== RCS file: /cvsroot/javaprofiler/interface/net/sourceforge/javaprofiler/jpi/event/EventQueue.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** EventQueue.java 2000/11/27 17:45:47 1.1.1.1 --- EventQueue.java 2001/09/29 20:55:06 1.2 *************** *** 7,11 **** * * The Original Code is the Java Profiler module. ! * The Initial Developer of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. --- 7,11 ---- * * The Original Code is the Java Profiler module. ! * The Initial Developers of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. *************** *** 35,38 **** --- 35,41 ---- /* * $Log$ + * Revision 1.2 2001/09/29 20:55:06 stolis + * Plural added in licenses. + * * Revision 1.1.1.1 2000/11/27 17:45:47 stolis * First version of the interface of our architecture. Index: Field.java =================================================================== RCS file: /cvsroot/javaprofiler/interface/net/sourceforge/javaprofiler/jpi/event/Field.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** Field.java 2000/11/27 17:45:33 1.1.1.1 --- Field.java 2001/09/29 20:55:06 1.2 *************** *** 7,11 **** * * The Original Code is the Java Profiler module. ! * The Initial Developer of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. --- 7,11 ---- * * The Original Code is the Java Profiler module. ! * The Initial Developers of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. *************** *** 46,49 **** --- 46,52 ---- /* * $Log$ + * Revision 1.2 2001/09/29 20:55:06 stolis + * Plural added in licenses. + * * Revision 1.1.1.1 2000/11/27 17:45:33 stolis * First version of the interface of our architecture. Index: GCFinishEvent.java =================================================================== RCS file: /cvsroot/javaprofiler/interface/net/sourceforge/javaprofiler/jpi/event/GCFinishEvent.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** GCFinishEvent.java 2000/11/27 17:45:53 1.1.1.1 --- GCFinishEvent.java 2001/09/29 20:55:06 1.2 *************** *** 7,11 **** * * The Original Code is the Java Profiler module. ! * The Initial Developer of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. --- 7,11 ---- * * The Original Code is the Java Profiler module. ! * The Initial Developers of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. *************** *** 34,37 **** --- 34,40 ---- /* * $Log$ + * Revision 1.2 2001/09/29 20:55:06 stolis + * Plural added in licenses. + * * Revision 1.1.1.1 2000/11/27 17:45:53 stolis * First version of the interface of our architecture. Index: GCStartEvent.java =================================================================== RCS file: /cvsroot/javaprofiler/interface/net/sourceforge/javaprofiler/jpi/event/GCStartEvent.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** GCStartEvent.java 2000/11/27 17:46:10 1.1.1.1 --- GCStartEvent.java 2001/09/29 20:55:06 1.2 *************** *** 7,11 **** * * The Original Code is the Java Profiler module. ! * The Initial Developer of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. --- 7,11 ---- * * The Original Code is the Java Profiler module. ! * The Initial Developers of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. *************** *** 34,37 **** --- 34,40 ---- /* * $Log$ + * Revision 1.2 2001/09/29 20:55:06 stolis + * Plural added in licenses. + * * Revision 1.1.1.1 2000/11/27 17:46:10 stolis * First version of the interface of our architecture. Index: HeapDumpEvent.java =================================================================== RCS file: /cvsroot/javaprofiler/interface/net/sourceforge/javaprofiler/jpi/event/HeapDumpEvent.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** HeapDumpEvent.java 2000/11/27 17:46:10 1.1.1.1 --- HeapDumpEvent.java 2001/09/29 20:55:06 1.2 *************** *** 7,11 **** * * The Original Code is the Java Profiler module. ! * The Initial Developer of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. --- 7,11 ---- * * The Original Code is the Java Profiler module. ! * The Initial Developers of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. *************** *** 34,37 **** --- 34,40 ---- /* * $Log$ + * Revision 1.2 2001/09/29 20:55:06 stolis + * Plural added in licenses. + * * Revision 1.1.1.1 2000/11/27 17:46:10 stolis * First version of the interface of our architecture. Index: InstructionStartEvent.java =================================================================== RCS file: /cvsroot/javaprofiler/interface/net/sourceforge/javaprofiler/jpi/event/InstructionStartEvent.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** InstructionStartEvent.java 2000/11/27 17:46:28 1.1.1.1 --- InstructionStartEvent.java 2001/09/29 20:55:06 1.2 *************** *** 7,11 **** * * The Original Code is the Java Profiler module. ! * The Initial Developer of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. --- 7,11 ---- * * The Original Code is the Java Profiler module. ! * The Initial Developers of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. *************** *** 34,37 **** --- 34,40 ---- /* * $Log$ + * Revision 1.2 2001/09/29 20:55:06 stolis + * Plural added in licenses. + * * Revision 1.1.1.1 2000/11/27 17:46:28 stolis * First version of the interface of our architecture. Index: JNIGlobalRefAllocEvent.java =================================================================== RCS file: /cvsroot/javaprofiler/interface/net/sourceforge/javaprofiler/jpi/event/JNIGlobalRefAllocEvent.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** JNIGlobalRefAllocEvent.java 2000/11/27 17:46:15 1.1.1.1 --- JNIGlobalRefAllocEvent.java 2001/09/29 20:55:06 1.2 *************** *** 7,11 **** * * The Original Code is the Java Profiler module. ! * The Initial Developer of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. --- 7,11 ---- * * The Original Code is the Java Profiler module. ! * The Initial Developers of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. *************** *** 34,37 **** --- 34,40 ---- /* * $Log$ + * Revision 1.2 2001/09/29 20:55:06 stolis + * Plural added in licenses. + * * Revision 1.1.1.1 2000/11/27 17:46:15 stolis * First version of the interface of our architecture. Index: JNIGlobalRefFreeEvent.java =================================================================== RCS file: /cvsroot/javaprofiler/interface/net/sourceforge/javaprofiler/jpi/event/JNIGlobalRefFreeEvent.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** JNIGlobalRefFreeEvent.java 2000/11/27 17:45:47 1.1.1.1 --- JNIGlobalRefFreeEvent.java 2001/09/29 20:55:06 1.2 *************** *** 7,11 **** * * The Original Code is the Java Profiler module. ! * The Initial Developer of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. --- 7,11 ---- * * The Original Code is the Java Profiler module. ! * The Initial Developers of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. *************** *** 34,37 **** --- 34,40 ---- /* * $Log$ + * Revision 1.2 2001/09/29 20:55:06 stolis + * Plural added in licenses. + * * Revision 1.1.1.1 2000/11/27 17:45:47 stolis * First version of the interface of our architecture. Index: JNIWeakGlobalRefAllocEvent.java =================================================================== RCS file: /cvsroot/javaprofiler/interface/net/sourceforge/javaprofiler/jpi/event/JNIWeakGlobalRefAllocEvent.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** JNIWeakGlobalRefAllocEvent.java 2000/11/27 17:46:15 1.1.1.1 --- JNIWeakGlobalRefAllocEvent.java 2001/09/29 20:55:06 1.2 *************** *** 7,11 **** * * The Original Code is the Java Profiler module. ! * The Initial Developer of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. --- 7,11 ---- * * The Original Code is the Java Profiler module. ! * The Initial Developers of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. *************** *** 34,37 **** --- 34,40 ---- /* * $Log$ + * Revision 1.2 2001/09/29 20:55:06 stolis + * Plural added in licenses. + * * Revision 1.1.1.1 2000/11/27 17:46:15 stolis * First version of the interface of our architecture. Index: JNIWeakGlobalRefFreeEvent.java =================================================================== RCS file: /cvsroot/javaprofiler/interface/net/sourceforge/javaprofiler/jpi/event/JNIWeakGlobalRefFreeEvent.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** JNIWeakGlobalRefFreeEvent.java 2000/11/27 17:46:15 1.1.1.1 --- JNIWeakGlobalRefFreeEvent.java 2001/09/29 20:55:06 1.2 *************** *** 7,11 **** * * The Original Code is the Java Profiler module. ! * The Initial Developer of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. --- 7,11 ---- * * The Original Code is the Java Profiler module. ! * The Initial Developers of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. *************** *** 34,37 **** --- 34,40 ---- /* * $Log$ + * Revision 1.2 2001/09/29 20:55:06 stolis + * Plural added in licenses. + * * Revision 1.1.1.1 2000/11/27 17:46:15 stolis * First version of the interface of our architecture. Index: JVMInitDoneEvent.java =================================================================== RCS file: /cvsroot/javaprofiler/interface/net/sourceforge/javaprofiler/jpi/event/JVMInitDoneEvent.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** JVMInitDoneEvent.java 2000/11/27 17:45:47 1.1.1.1 --- JVMInitDoneEvent.java 2001/09/29 20:55:06 1.2 *************** *** 7,11 **** * * The Original Code is the Java Profiler module. ! * The Initial Developer of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. --- 7,11 ---- * * The Original Code is the Java Profiler module. ! * The Initial Developers of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. *************** *** 34,37 **** --- 34,40 ---- /* * $Log$ + * Revision 1.2 2001/09/29 20:55:06 stolis + * Plural added in licenses. + * * Revision 1.1.1.1 2000/11/27 17:45:47 stolis * First version of the interface of our architecture. Index: JVMShutDownEvent.java =================================================================== RCS file: /cvsroot/javaprofiler/interface/net/sourceforge/javaprofiler/jpi/event/JVMShutDownEvent.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** JVMShutDownEvent.java 2000/11/27 17:45:47 1.1.1.1 --- JVMShutDownEvent.java 2001/09/29 20:55:06 1.2 *************** *** 7,11 **** * * The Original Code is the Java Profiler module. ! * The Initial Developer of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. --- 7,11 ---- * * The Original Code is the Java Profiler module. ! * The Initial Developers of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. *************** *** 34,37 **** --- 34,40 ---- /* * $Log$ + * Revision 1.2 2001/09/29 20:55:06 stolis + * Plural added in licenses. + * * Revision 1.1.1.1 2000/11/27 17:45:47 stolis * First version of the interface of our architecture. Index: LineNo.java =================================================================== RCS file: /cvsroot/javaprofiler/interface/net/sourceforge/javaprofiler/jpi/event/LineNo.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** LineNo.java 2000/11/27 17:45:39 1.1.1.1 --- LineNo.java 2001/09/29 20:55:06 1.2 *************** *** 7,11 **** * * The Original Code is the Java Profiler module. ! * The Initial Developer of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. --- 7,11 ---- * * The Original Code is the Java Profiler module. ! * The Initial Developers of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. *************** *** 47,50 **** --- 47,53 ---- /* * $Log$ + * Revision 1.2 2001/09/29 20:55:06 stolis + * Plural added in licenses. + * * Revision 1.1.1.1 2000/11/27 17:45:39 stolis * First version of the interface of our architecture. Index: Method.java =================================================================== RCS file: /cvsroot/javaprofiler/interface/net/sourceforge/javaprofiler/jpi/event/Method.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** Method.java 2000/11/27 17:45:39 1.1.1.1 --- Method.java 2001/09/29 20:55:06 1.2 *************** *** 7,11 **** * * The Original Code is the Java Profiler module. ! * The Initial Developer of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. --- 7,11 ---- * * The Original Code is the Java Profiler module. ! * The Initial Developers of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. *************** *** 67,70 **** --- 67,73 ---- /* * $Log$ + * Revision 1.2 2001/09/29 20:55:06 stolis + * Plural added in licenses. + * * Revision 1.1.1.1 2000/11/27 17:45:39 stolis * First version of the interface of our architecture. Index: MethodEntry2Event.java =================================================================== RCS file: /cvsroot/javaprofiler/interface/net/sourceforge/javaprofiler/jpi/event/MethodEntry2Event.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** MethodEntry2Event.java 2000/11/27 17:45:53 1.1.1.1 --- MethodEntry2Event.java 2001/09/29 20:55:06 1.2 *************** *** 7,11 **** * * The Original Code is the Java Profiler module. ! * The Initial Developer of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. --- 7,11 ---- * * The Original Code is the Java Profiler module. ! * The Initial Developers of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. *************** *** 34,37 **** --- 34,40 ---- /* * $Log$ + * Revision 1.2 2001/09/29 20:55:06 stolis + * Plural added in licenses. + * * Revision 1.1.1.1 2000/11/27 17:45:53 stolis * First version of the interface of our architecture. Index: MethodEntryEvent.java =================================================================== RCS file: /cvsroot/javaprofiler/interface/net/sourceforge/javaprofiler/jpi/event/MethodEntryEvent.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** MethodEntryEvent.java 2000/11/27 17:45:53 1.1.1.1 --- MethodEntryEvent.java 2001/09/29 20:55:06 1.2 *************** *** 7,11 **** * * The Original Code is the Java Profiler module. ! * The Initial Developer of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. --- 7,11 ---- * * The Original Code is the Java Profiler module. ! * The Initial Developers of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. *************** *** 34,37 **** --- 34,40 ---- /* * $Log$ + * Revision 1.2 2001/09/29 20:55:06 stolis + * Plural added in licenses. + * * Revision 1.1.1.1 2000/11/27 17:45:53 stolis * First version of the interface of our architecture. Index: MethodExitEvent.java =================================================================== RCS file: /cvsroot/javaprofiler/interface/net/sourceforge/javaprofiler/jpi/event/MethodExitEvent.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** MethodExitEvent.java 2000/11/27 17:45:47 1.1.1.1 --- MethodExitEvent.java 2001/09/29 20:55:06 1.2 *************** *** 7,11 **** * * The Original Code is the Java Profiler module. ! * The Initial Developer of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. --- 7,11 ---- * * The Original Code is the Java Profiler module. ! * The Initial Developers of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. *************** *** 34,37 **** --- 34,40 ---- /* * $Log$ + * Revision 1.2 2001/09/29 20:55:06 stolis + * Plural added in licenses. + * * Revision 1.1.1.1 2000/11/27 17:45:47 stolis * First version of the interface of our architecture. Index: MonitorContendedEnterEvent.java =================================================================== RCS file: /cvsroot/javaprofiler/interface/net/sourceforge/javaprofiler/jpi/event/MonitorContendedEnterEvent.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** MonitorContendedEnterEvent.java 2000/11/27 17:46:21 1.1.1.1 --- MonitorContendedEnterEvent.java 2001/09/29 20:55:06 1.2 *************** *** 7,11 **** * * The Original Code is the Java Profiler module. ! * The Initial Developer of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. --- 7,11 ---- * * The Original Code is the Java Profiler module. ! * The Initial Developers of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. *************** *** 34,37 **** --- 34,40 ---- /* * $Log$ + * Revision 1.2 2001/09/29 20:55:06 stolis + * Plural added in licenses. + * * Revision 1.1.1.1 2000/11/27 17:46:21 stolis * First version of the interface of our architecture. Index: MonitorContendedEnteredEvent.java =================================================================== RCS file: /cvsroot/javaprofiler/interface/net/sourceforge/javaprofiler/jpi/event/MonitorContendedEnteredEvent.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** MonitorContendedEnteredEvent.java 2000/11/27 17:46:21 1.1.1.1 --- MonitorContendedEnteredEvent.java 2001/09/29 20:55:06 1.2 *************** *** 7,11 **** * * The Original Code is the Java Profiler module. ! * The Initial Developer of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. --- 7,11 ---- * * The Original Code is the Java Profiler module. ! * The Initial Developers of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. *************** *** 34,37 **** --- 34,40 ---- /* * $Log$ + * Revision 1.2 2001/09/29 20:55:06 stolis + * Plural added in licenses. + * * Revision 1.1.1.1 2000/11/27 17:46:21 stolis * First version of the interface of our architecture. Index: MonitorContendedExitEvent.java =================================================================== RCS file: /cvsroot/javaprofiler/interface/net/sourceforge/javaprofiler/jpi/event/MonitorContendedExitEvent.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** MonitorContendedExitEvent.java 2000/11/27 17:46:28 1.1.1.1 --- MonitorContendedExitEvent.java 2001/09/29 20:55:06 1.2 *************** *** 7,11 **** * * The Original Code is the Java Profiler module. ! * The Initial Developer of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. --- 7,11 ---- * * The Original Code is the Java Profiler module. ! * The Initial Developers of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. *************** *** 34,37 **** --- 34,40 ---- /* * $Log$ + * Revision 1.2 2001/09/29 20:55:06 stolis + * Plural added in licenses. + * * Revision 1.1.1.1 2000/11/27 17:46:28 stolis * First version of the interface of our architecture. Index: MonitorDumpEvent.java =================================================================== RCS file: /cvsroot/javaprofiler/interface/net/sourceforge/javaprofiler/jpi/event/MonitorDumpEvent.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** MonitorDumpEvent.java 2000/11/27 17:46:15 1.1.1.1 --- MonitorDumpEvent.java 2001/09/29 20:55:06 1.2 *************** *** 7,11 **** * * The Original Code is the Java Profiler module. ! * The Initial Developer of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. --- 7,11 ---- * * The Original Code is the Java Profiler module. ! * The Initial Developers of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. *************** *** 34,37 **** --- 34,40 ---- /* * $Log$ + * Revision 1.2 2001/09/29 20:55:06 stolis + * Plural added in licenses. + * * Revision 1.1.1.1 2000/11/27 17:46:15 stolis * First version of the interface of our architecture. Index: MonitorWaitEvent.java =================================================================== RCS file: /cvsroot/javaprofiler/interface/net/sourceforge/javaprofiler/jpi/event/MonitorWaitEvent.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** MonitorWaitEvent.java 2000/11/27 17:46:15 1.1.1.1 --- MonitorWaitEvent.java 2001/09/29 20:55:06 1.2 *************** *** 7,11 **** * * The Original Code is the Java Profiler module. ! * The Initial Developer of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. --- 7,11 ---- * * The Original Code is the Java Profiler module. ! * The Initial Developers of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. *************** *** 34,37 **** --- 34,40 ---- /* * $Log$ + * Revision 1.2 2001/09/29 20:55:06 stolis + * Plural added in licenses. + * * Revision 1.1.1.1 2000/11/27 17:46:15 stolis * First version of the interface of our architecture. Index: MonitorWaitedEvent.java =================================================================== RCS file: /cvsroot/javaprofiler/interface/net/sourceforge/javaprofiler/jpi/event/MonitorWaitedEvent.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** MonitorWaitedEvent.java 2000/11/27 17:46:15 1.1.1.1 --- MonitorWaitedEvent.java 2001/09/29 20:55:06 1.2 *************** *** 7,11 **** * * The Original Code is the Java Profiler module. ! * The Initial Developer of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. --- 7,11 ---- * * The Original Code is the Java Profiler module. ! * The Initial Developers of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. *************** *** 34,37 **** --- 34,40 ---- /* * $Log$ + * Revision 1.2 2001/09/29 20:55:06 stolis + * Plural added in licenses. + * * Revision 1.1.1.1 2000/11/27 17:46:15 stolis * First version of the interface of our architecture. Index: ObjectAllocEvent.java =================================================================== RCS file: /cvsroot/javaprofiler/interface/net/sourceforge/javaprofiler/jpi/event/ObjectAllocEvent.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** ObjectAllocEvent.java 2000/11/27 17:46:21 1.1.1.1 --- ObjectAllocEvent.java 2001/09/29 20:55:06 1.2 *************** *** 7,11 **** * * The Original Code is the Java Profiler module. ! * The Initial Developer of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. --- 7,11 ---- * * The Original Code is the Java Profiler module. ! * The Initial Developers of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. *************** *** 34,37 **** --- 34,40 ---- /* * $Log$ + * Revision 1.2 2001/09/29 20:55:06 stolis + * Plural added in licenses. + * * Revision 1.1.1.1 2000/11/27 17:46:21 stolis * First version of the interface of our architecture. Index: ObjectDumpEvent.java =================================================================== RCS file: /cvsroot/javaprofiler/interface/net/sourceforge/javaprofiler/jpi/event/ObjectDumpEvent.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** ObjectDumpEvent.java 2000/11/27 17:46:21 1.1.1.1 --- ObjectDumpEvent.java 2001/09/29 20:55:06 1.2 *************** *** 7,11 **** * * The Original Code is the Java Profiler module. ! * The Initial Developer of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. --- 7,11 ---- * * The Original Code is the Java Profiler module. ! * The Initial Developers of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. *************** *** 34,37 **** --- 34,40 ---- /* * $Log$ + * Revision 1.2 2001/09/29 20:55:06 stolis + * Plural added in licenses. + * * Revision 1.1.1.1 2000/11/27 17:46:21 stolis * First version of the interface of our architecture. Index: ObjectFreeEvent.java =================================================================== RCS file: /cvsroot/javaprofiler/interface/net/sourceforge/javaprofiler/jpi/event/ObjectFreeEvent.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** ObjectFreeEvent.java 2000/11/27 17:46:21 1.1.1.1 --- ObjectFreeEvent.java 2001/09/29 20:55:06 1.2 *************** *** 7,11 **** * * The Original Code is the Java Profiler module. ! * The Initial Developer of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. --- 7,11 ---- * * The Original Code is the Java Profiler module. ! * The Initial Developers of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. *************** *** 34,37 **** --- 34,40 ---- /* * $Log$ + * Revision 1.2 2001/09/29 20:55:06 stolis + * Plural added in licenses. + * * Revision 1.1.1.1 2000/11/27 17:46:21 stolis * First version of the interface of our architecture. Index: ObjectMoveEvent.java =================================================================== RCS file: /cvsroot/javaprofiler/interface/net/sourceforge/javaprofiler/jpi/event/ObjectMoveEvent.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** ObjectMoveEvent.java 2000/11/27 17:46:21 1.1.1.1 --- ObjectMoveEvent.java 2001/09/29 20:55:06 1.2 *************** *** 7,11 **** * * The Original Code is the Java Profiler module. ! * The Initial Developer of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. --- 7,11 ---- * * The Original Code is the Java Profiler module. ! * The Initial Developers of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. *************** *** 34,37 **** --- 34,40 ---- /* * $Log$ + * Revision 1.2 2001/09/29 20:55:06 stolis + * Plural added in licenses. + * * Revision 1.1.1.1 2000/11/27 17:46:21 stolis * First version of the interface of our architecture. Index: RawMonitorContendedEnterEvent.java =================================================================== RCS file: /cvsroot/javaprofiler/interface/net/sourceforge/javaprofiler/jpi/event/RawMonitorContendedEnterEvent.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** RawMonitorContendedEnterEvent.java 2000/11/27 17:46:28 1.1.1.1 --- RawMonitorContendedEnterEvent.java 2001/09/29 20:55:06 1.2 *************** *** 7,11 **** * * The Original Code is the Java Profiler module. ! * The Initial Developer of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. --- 7,11 ---- * * The Original Code is the Java Profiler module. ! * The Initial Developers of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. *************** *** 34,37 **** --- 34,40 ---- /* * $Log$ + * Revision 1.2 2001/09/29 20:55:06 stolis + * Plural added in licenses. + * * Revision 1.1.1.1 2000/11/27 17:46:28 stolis * First version of the interface of our architecture. Index: RawMonitorContendedEnteredEvent.java =================================================================== RCS file: /cvsroot/javaprofiler/interface/net/sourceforge/javaprofiler/jpi/event/RawMonitorContendedEnteredEvent.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** RawMonitorContendedEnteredEvent.java 2000/11/27 17:46:28 1.1.1.1 --- RawMonitorContendedEnteredEvent.java 2001/09/29 20:55:06 1.2 *************** *** 7,11 **** * * The Original Code is the Java Profiler module. ! * The Initial Developer of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. --- 7,11 ---- * * The Original Code is the Java Profiler module. ! * The Initial Developers of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. *************** *** 34,37 **** --- 34,40 ---- /* * $Log$ + * Revision 1.2 2001/09/29 20:55:06 stolis + * Plural added in licenses. + * * Revision 1.1.1.1 2000/11/27 17:46:28 stolis * First version of the interface of our architecture. Index: RawMonitorContendedExitEvent.java =================================================================== RCS file: /cvsroot/javaprofiler/interface/net/sourceforge/javaprofiler/jpi/event/RawMonitorContendedExitEvent.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** RawMonitorContendedExitEvent.java 2000/11/27 17:46:33 1.1.1.1 --- RawMonitorContendedExitEvent.java 2001/09/29 20:55:06 1.2 *************** *** 7,11 **** * * The Original Code is the Java Profiler module. ! * The Initial Developer of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. --- 7,11 ---- * * The Original Code is the Java Profiler module. ! * The Initial Developers of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. *************** *** 34,37 **** --- 34,40 ---- /* * $Log$ + * Revision 1.2 2001/09/29 20:55:06 stolis + * Plural added in licenses. + * * Revision 1.1.1.1 2000/11/27 17:46:33 stolis * First version of the interface of our architecture. Index: ThreadEndEvent.java =================================================================== RCS file: /cvsroot/javaprofiler/interface/net/sourceforge/javaprofiler/jpi/event/ThreadEndEvent.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** ThreadEndEvent.java 2000/11/27 17:46:28 1.1.1.1 --- ThreadEndEvent.java 2001/09/29 20:55:06 1.2 *************** *** 7,11 **** * * The Original Code is the Java Profiler module. ! * The Initial Developer of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. --- 7,11 ---- * * The Original Code is the Java Profiler module. ! * The Initial Developers of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. *************** *** 34,37 **** --- 34,40 ---- /* * $Log$ + * Revision 1.2 2001/09/29 20:55:06 stolis + * Plural added in licenses. + * * Revision 1.1.1.1 2000/11/27 17:46:28 stolis * First version of the interface of our architecture. Index: ThreadStartEvent.java =================================================================== RCS file: /cvsroot/javaprofiler/interface/net/sourceforge/javaprofiler/jpi/event/ThreadStartEvent.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** ThreadStartEvent.java 2000/11/27 17:46:28 1.1.1.1 --- ThreadStartEvent.java 2001/09/29 20:55:06 1.2 *************** *** 7,11 **** * * The Original Code is the Java Profiler module. ! * The Initial Developer of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. --- 7,11 ---- * * The Original Code is the Java Profiler module. ! * The Initial Developers of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. *************** *** 34,37 **** --- 34,40 ---- /* * $Log$ + * Revision 1.2 2001/09/29 20:55:06 stolis + * Plural added in licenses. + * * Revision 1.1.1.1 2000/11/27 17:46:28 stolis * First version of the interface of our architecture. |
Update of /cvsroot/javaprofiler/interface/net/sourceforge/javaprofiler/jpi In directory usw-pr-cvs1:/tmp/cvs-serv16326/net/sourceforge/javaprofiler/jpi Modified Files: ArrayType.java Bootstrap.java CallTreeNode.java ClassInfo.java ClassType.java Field.java InterfaceType.java JavaMonitorInfo.java Method.java MethodInfo.java MonitorInfo.java ProfilerInfo.java RawMonitorInfo.java ReferenceType.java Snapshot.java StackFrame.java StackTrace.java ThreadGroupInfo.java ThreadInfo.java TypeComponent.java VirtualMachine.java VirtualMachineManager.java Log Message: Plural added in licenses. Index: ArrayType.java =================================================================== RCS file: /cvsroot/javaprofiler/interface/net/sourceforge/javaprofiler/jpi/ArrayType.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** ArrayType.java 2000/11/27 17:45:11 1.1.1.1 --- ArrayType.java 2001/09/29 20:55:06 1.2 *************** *** 7,11 **** * * The Original Code is the Java Profiler module. ! * The Initial Developer of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. --- 7,11 ---- * * The Original Code is the Java Profiler module. ! * The Initial Developers of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. *************** *** 41,44 **** --- 41,47 ---- /* * $Log$ + * Revision 1.2 2001/09/29 20:55:06 stolis + * Plural added in licenses. + * * Revision 1.1.1.1 2000/11/27 17:45:11 stolis * First version of the interface of our architecture. Index: Bootstrap.java =================================================================== RCS file: /cvsroot/javaprofiler/interface/net/sourceforge/javaprofiler/jpi/Bootstrap.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** Bootstrap.java 2001/08/22 13:16:59 1.3 --- Bootstrap.java 2001/09/29 20:55:06 1.4 *************** *** 7,11 **** * * The Original Code is the Java Profiler module. ! * The Initial Developer of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. --- 7,11 ---- * * The Original Code is the Java Profiler module. ! * The Initial Developers of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. *************** *** 45,48 **** --- 45,51 ---- /* * $Log$ + * Revision 1.4 2001/09/29 20:55:06 stolis + * Plural added in licenses. + * * Revision 1.3 2001/08/22 13:16:59 stolis * Bootstrap now points to the implementation of the VirtualMachineManager. Index: CallTreeNode.java =================================================================== RCS file: /cvsroot/javaprofiler/interface/net/sourceforge/javaprofiler/jpi/CallTreeNode.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** CallTreeNode.java 2000/11/27 17:45:18 1.1.1.1 --- CallTreeNode.java 2001/09/29 20:55:06 1.2 *************** *** 7,11 **** * * The Original Code is the Java Profiler module. ! * The Initial Developer of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. --- 7,11 ---- * * The Original Code is the Java Profiler module. ! * The Initial Developers of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. *************** *** 72,75 **** --- 72,78 ---- /* * $Log$ + * Revision 1.2 2001/09/29 20:55:06 stolis + * Plural added in licenses. + * * Revision 1.1.1.1 2000/11/27 17:45:18 stolis * First version of the interface of our architecture. Index: ClassInfo.java =================================================================== RCS file: /cvsroot/javaprofiler/interface/net/sourceforge/javaprofiler/jpi/ClassInfo.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** ClassInfo.java 2000/11/27 17:45:24 1.1.1.1 --- ClassInfo.java 2001/09/29 20:55:06 1.2 *************** *** 7,11 **** * * The Original Code is the Java Profiler module. ! * The Initial Developer of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. --- 7,11 ---- * * The Original Code is the Java Profiler module. ! * The Initial Developers of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. *************** *** 59,62 **** --- 59,65 ---- /* * $Log$ + * Revision 1.2 2001/09/29 20:55:06 stolis + * Plural added in licenses. + * * Revision 1.1.1.1 2000/11/27 17:45:24 stolis * First version of the interface of our architecture. Index: ClassType.java =================================================================== RCS file: /cvsroot/javaprofiler/interface/net/sourceforge/javaprofiler/jpi/ClassType.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** ClassType.java 2001/08/22 13:19:47 1.2 --- ClassType.java 2001/09/29 20:55:06 1.3 *************** *** 7,11 **** * * The Original Code is the Java Profiler module. ! * The Initial Developer of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. --- 7,11 ---- * * The Original Code is the Java Profiler module. ! * The Initial Developers of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. *************** *** 120,123 **** --- 120,126 ---- /* * $Log$ + * Revision 1.3 2001/09/29 20:55:06 stolis + * Plural added in licenses. + * * Revision 1.2 2001/08/22 13:19:47 stolis * Full qualification of classes removed where it is not necessary. Index: Field.java =================================================================== RCS file: /cvsroot/javaprofiler/interface/net/sourceforge/javaprofiler/jpi/Field.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** Field.java 2000/11/27 17:45:18 1.1.1.1 --- Field.java 2001/09/29 20:55:06 1.2 *************** *** 7,11 **** * * The Original Code is the Java Profiler module. ! * The Initial Developer of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. --- 7,11 ---- * * The Original Code is the Java Profiler module. ! * The Initial Developers of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. *************** *** 48,51 **** --- 48,54 ---- /* * $Log$ + * Revision 1.2 2001/09/29 20:55:06 stolis + * Plural added in licenses. + * * Revision 1.1.1.1 2000/11/27 17:45:18 stolis * First version of the interface of our architecture. Index: InterfaceType.java =================================================================== RCS file: /cvsroot/javaprofiler/interface/net/sourceforge/javaprofiler/jpi/InterfaceType.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** InterfaceType.java 2000/11/27 17:45:05 1.1.1.1 --- InterfaceType.java 2001/09/29 20:55:06 1.2 *************** *** 7,11 **** * * The Original Code is the Java Profiler module. ! * The Initial Developer of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. --- 7,11 ---- * * The Original Code is the Java Profiler module. ! * The Initial Developers of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. *************** *** 86,89 **** --- 86,92 ---- /* * $Log$ + * Revision 1.2 2001/09/29 20:55:06 stolis + * Plural added in licenses. + * * Revision 1.1.1.1 2000/11/27 17:45:05 stolis * First version of the interface of our architecture. Index: JavaMonitorInfo.java =================================================================== RCS file: /cvsroot/javaprofiler/interface/net/sourceforge/javaprofiler/jpi/JavaMonitorInfo.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** JavaMonitorInfo.java 2000/11/27 17:44:46 1.1.1.1 --- JavaMonitorInfo.java 2001/09/29 20:55:06 1.2 *************** *** 7,11 **** * * The Original Code is the Java Profiler module. ! * The Initial Developer of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. --- 7,11 ---- * * The Original Code is the Java Profiler module. ! * The Initial Developers of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. *************** *** 42,45 **** --- 42,48 ---- /* * $Log$ + * Revision 1.2 2001/09/29 20:55:06 stolis + * Plural added in licenses. + * * Revision 1.1.1.1 2000/11/27 17:44:46 stolis * First version of the interface of our architecture. Index: Method.java =================================================================== RCS file: /cvsroot/javaprofiler/interface/net/sourceforge/javaprofiler/jpi/Method.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** Method.java 2000/11/27 17:44:41 1.1.1.1 --- Method.java 2001/09/29 20:55:06 1.2 *************** *** 7,11 **** * * The Original Code is the Java Profiler module. ! * The Initial Developer of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. --- 7,11 ---- * * The Original Code is the Java Profiler module. ! * The Initial Developers of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. *************** *** 105,108 **** --- 105,111 ---- /* * $Log$ + * Revision 1.2 2001/09/29 20:55:06 stolis + * Plural added in licenses. + * * Revision 1.1.1.1 2000/11/27 17:44:41 stolis * First version of the interface of our architecture. Index: MethodInfo.java =================================================================== RCS file: /cvsroot/javaprofiler/interface/net/sourceforge/javaprofiler/jpi/MethodInfo.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** MethodInfo.java 2000/11/27 17:45:13 1.1.1.1 --- MethodInfo.java 2001/09/29 20:55:06 1.2 *************** *** 7,11 **** * * The Original Code is the Java Profiler module. ! * The Initial Developer of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. --- 7,11 ---- * * The Original Code is the Java Profiler module. ! * The Initial Developers of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. *************** *** 144,147 **** --- 144,150 ---- /* * $Log$ + * Revision 1.2 2001/09/29 20:55:06 stolis + * Plural added in licenses. + * * Revision 1.1.1.1 2000/11/27 17:45:13 stolis * First version of the interface of our architecture. Index: MonitorInfo.java =================================================================== RCS file: /cvsroot/javaprofiler/interface/net/sourceforge/javaprofiler/jpi/MonitorInfo.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** MonitorInfo.java 2000/11/27 17:44:46 1.1.1.1 --- MonitorInfo.java 2001/09/29 20:55:06 1.2 *************** *** 7,11 **** * * The Original Code is the Java Profiler module. ! * The Initial Developer of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. --- 7,11 ---- * * The Original Code is the Java Profiler module. ! * The Initial Developers of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. *************** *** 73,76 **** --- 73,79 ---- /* * $Log$ + * Revision 1.2 2001/09/29 20:55:06 stolis + * Plural added in licenses. + * * Revision 1.1.1.1 2000/11/27 17:44:46 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.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** ProfilerInfo.java 2001/08/22 13:19:47 1.2 --- ProfilerInfo.java 2001/09/29 20:55:06 1.3 *************** *** 7,11 **** * * The Original Code is the Java Profiler module. ! * The Initial Developer of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. --- 7,11 ---- * * The Original Code is the Java Profiler module. ! * The Initial Developers of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. *************** *** 119,122 **** --- 119,125 ---- /* * $Log$ + * Revision 1.3 2001/09/29 20:55:06 stolis + * Plural added in licenses. + * * Revision 1.2 2001/08/22 13:19:47 stolis * Full qualification of classes removed where it is not necessary. Index: RawMonitorInfo.java =================================================================== RCS file: /cvsroot/javaprofiler/interface/net/sourceforge/javaprofiler/jpi/RawMonitorInfo.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** RawMonitorInfo.java 2000/11/27 17:44:46 1.1.1.1 --- RawMonitorInfo.java 2001/09/29 20:55:06 1.2 *************** *** 7,11 **** * * The Original Code is the Java Profiler module. ! * The Initial Developer of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. --- 7,11 ---- * * The Original Code is the Java Profiler module. ! * The Initial Developers of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. *************** *** 39,42 **** --- 39,45 ---- /* * $Log$ + * Revision 1.2 2001/09/29 20:55:06 stolis + * Plural added in licenses. + * * Revision 1.1.1.1 2000/11/27 17:44:46 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.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** ReferenceType.java 2001/08/22 13:19:47 1.2 --- ReferenceType.java 2001/09/29 20:55:06 1.3 *************** *** 7,11 **** * * The Original Code is the Java Profiler module. ! * The Initial Developer of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. --- 7,11 ---- * * The Original Code is the Java Profiler module. ! * The Initial Developers of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. *************** *** 224,227 **** --- 224,230 ---- /* * $Log$ + * Revision 1.3 2001/09/29 20:55:06 stolis + * Plural added in licenses. + * * Revision 1.2 2001/08/22 13:19:47 stolis * Full qualification of classes removed where it is not necessary. Index: Snapshot.java =================================================================== RCS file: /cvsroot/javaprofiler/interface/net/sourceforge/javaprofiler/jpi/Snapshot.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** Snapshot.java 2001/08/22 13:19:47 1.3 --- Snapshot.java 2001/09/29 20:55:06 1.4 *************** *** 7,11 **** * * The Original Code is the Java Profiler module. ! * The Initial Developer of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. --- 7,11 ---- * * The Original Code is the Java Profiler module. ! * The Initial Developers of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. *************** *** 152,155 **** --- 152,158 ---- /* * $Log$ + * Revision 1.4 2001/09/29 20:55:06 stolis + * Plural added in licenses. + * * Revision 1.3 2001/08/22 13:19:47 stolis * Full qualification of classes removed where it is not necessary. Index: StackFrame.java =================================================================== RCS file: /cvsroot/javaprofiler/interface/net/sourceforge/javaprofiler/jpi/StackFrame.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** StackFrame.java 2000/11/27 17:45:18 1.1.1.1 --- StackFrame.java 2001/09/29 20:55:06 1.2 *************** *** 7,11 **** * * The Original Code is the Java Profiler module. ! * The Initial Developer of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. --- 7,11 ---- * * The Original Code is the Java Profiler module. ! * The Initial Developers of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. *************** *** 47,50 **** --- 47,53 ---- /* * $Log$ + * Revision 1.2 2001/09/29 20:55:06 stolis + * Plural added in licenses. + * * Revision 1.1.1.1 2000/11/27 17:45:18 stolis * First version of the interface of our architecture. Index: StackTrace.java =================================================================== RCS file: /cvsroot/javaprofiler/interface/net/sourceforge/javaprofiler/jpi/StackTrace.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** StackTrace.java 2000/11/27 17:45:30 1.1.1.1 --- StackTrace.java 2001/09/29 20:55:06 1.2 *************** *** 7,11 **** * * The Original Code is the Java Profiler module. ! * The Initial Developer of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. --- 7,11 ---- * * The Original Code is the Java Profiler module. ! * The Initial Developers of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. *************** *** 58,61 **** --- 58,64 ---- /* * $Log$ + * Revision 1.2 2001/09/29 20:55:06 stolis + * Plural added in licenses. + * * Revision 1.1.1.1 2000/11/27 17:45:30 stolis * First version of the interface of our architecture. Index: ThreadGroupInfo.java =================================================================== RCS file: /cvsroot/javaprofiler/interface/net/sourceforge/javaprofiler/jpi/ThreadGroupInfo.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** ThreadGroupInfo.java 2001/07/17 21:03:34 1.2 --- ThreadGroupInfo.java 2001/09/29 20:55:06 1.3 *************** *** 7,11 **** * * The Original Code is the Java Profiler module. ! * The Initial Developer of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. --- 7,11 ---- * * The Original Code is the Java Profiler module. ! * The Initial Developers of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. *************** *** 118,121 **** --- 118,124 ---- /* * $Log$ + * Revision 1.3 2001/09/29 20:55:06 stolis + * Plural added in licenses. + * * 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.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** ThreadInfo.java 2001/08/22 13:19:47 1.2 --- ThreadInfo.java 2001/09/29 20:55:06 1.3 *************** *** 7,11 **** * * The Original Code is the Java Profiler module. ! * The Initial Developer of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. --- 7,11 ---- * * The Original Code is the Java Profiler module. ! * The Initial Developers of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. *************** *** 185,188 **** --- 185,191 ---- /* * $Log$ + * Revision 1.3 2001/09/29 20:55:06 stolis + * Plural added in licenses. + * * Revision 1.2 2001/08/22 13:19:47 stolis * Full qualification of classes removed where it is not necessary. Index: TypeComponent.java =================================================================== RCS file: /cvsroot/javaprofiler/interface/net/sourceforge/javaprofiler/jpi/TypeComponent.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** TypeComponent.java 2001/07/17 21:03:34 1.2 --- TypeComponent.java 2001/09/29 20:55:06 1.3 *************** *** 7,11 **** * * The Original Code is the Java Profiler module. ! * The Initial Developer of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. --- 7,11 ---- * * The Original Code is the Java Profiler module. ! * The Initial Developers of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. *************** *** 78,81 **** --- 78,84 ---- /* * $Log$ + * Revision 1.3 2001/09/29 20:55:06 stolis + * Plural added in licenses. + * * Revision 1.2 2001/07/17 21:03:34 stolis * Javadoc updated. Index: VirtualMachine.java =================================================================== RCS file: /cvsroot/javaprofiler/interface/net/sourceforge/javaprofiler/jpi/VirtualMachine.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** VirtualMachine.java 2001/07/17 21:03:34 1.3 --- VirtualMachine.java 2001/09/29 20:55:06 1.4 *************** *** 7,11 **** * * The Original Code is the Java Profiler module. ! * The Initial Developer of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. --- 7,11 ---- * * The Original Code is the Java Profiler module. ! * The Initial Developers of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. *************** *** 111,114 **** --- 111,117 ---- /* * $Log$ + * Revision 1.4 2001/09/29 20:55:06 stolis + * Plural added in licenses. + * * Revision 1.3 2001/07/17 21:03:34 stolis * Javadoc updated. Index: VirtualMachineManager.java =================================================================== RCS file: /cvsroot/javaprofiler/interface/net/sourceforge/javaprofiler/jpi/VirtualMachineManager.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** VirtualMachineManager.java 2001/07/17 21:03:34 1.3 --- VirtualMachineManager.java 2001/09/29 20:55:06 1.4 *************** *** 7,11 **** * * The Original Code is the Java Profiler module. ! * The Initial Developer of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. --- 7,11 ---- * * The Original Code is the Java Profiler module. ! * The Initial Developers of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. *************** *** 68,71 **** --- 68,74 ---- /* * $Log$ + * Revision 1.4 2001/09/29 20:55:06 stolis + * Plural added in licenses. + * * Revision 1.3 2001/07/17 21:03:34 stolis * Javadoc updated. |
Update of /cvsroot/javaprofiler/interface/net/sourceforge/javaprofiler/jpi/connect In directory usw-pr-cvs1:/tmp/cvs-serv16326/net/sourceforge/javaprofiler/jpi/connect Modified Files: ConnectingException.java Connector.java IllegalConnectorArgumentsException.java Transport.java VMStartException.java Log Message: Plural added in licenses. Index: ConnectingException.java =================================================================== RCS file: /cvsroot/javaprofiler/interface/net/sourceforge/javaprofiler/jpi/connect/ConnectingException.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** ConnectingException.java 2001/04/23 19:03:38 1.1 --- ConnectingException.java 2001/09/29 20:55:06 1.2 *************** *** 7,11 **** * * The Original Code is the Java Profiler module. ! * The Initial Developer of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. --- 7,11 ---- * * The Original Code is the Java Profiler module. ! * The Initial Developers of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. *************** *** 31,34 **** --- 31,37 ---- /* * $Log$ + * Revision 1.2 2001/09/29 20:55:06 stolis + * Plural added in licenses. + * * Revision 1.1 2001/04/23 19:03:38 michalpise * Initial (empty) version. Index: Connector.java =================================================================== RCS file: /cvsroot/javaprofiler/interface/net/sourceforge/javaprofiler/jpi/connect/Connector.java,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -r1.6 -r1.7 *** Connector.java 2001/08/22 13:19:47 1.6 --- Connector.java 2001/09/29 20:55:06 1.7 *************** *** 7,11 **** * * The Original Code is the Java Profiler module. ! * The Initial Developer of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. --- 7,11 ---- * * The Original Code is the Java Profiler module. ! * The Initial Developers of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. *************** *** 286,289 **** --- 286,292 ---- /* * $Log$ + * Revision 1.7 2001/09/29 20:55:06 stolis + * Plural added in licenses. + * * Revision 1.6 2001/08/22 13:19:47 stolis * Full qualification of classes removed where it is not necessary. Index: IllegalConnectorArgumentsException.java =================================================================== RCS file: /cvsroot/javaprofiler/interface/net/sourceforge/javaprofiler/jpi/connect/IllegalConnectorArgumentsException.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** IllegalConnectorArgumentsException.java 2001/08/22 13:19:47 1.3 --- IllegalConnectorArgumentsException.java 2001/09/29 20:55:06 1.4 *************** *** 7,11 **** * * The Original Code is the Java Profiler module. ! * The Initial Developer of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. --- 7,11 ---- * * The Original Code is the Java Profiler module. ! * The Initial Developers of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. *************** *** 70,73 **** --- 70,76 ---- /* * $Log$ + * Revision 1.4 2001/09/29 20:55:06 stolis + * Plural added in licenses. + * * Revision 1.3 2001/08/22 13:19:47 stolis * Full qualification of classes removed where it is not necessary. Index: Transport.java =================================================================== RCS file: /cvsroot/javaprofiler/interface/net/sourceforge/javaprofiler/jpi/connect/Transport.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** Transport.java 2001/08/22 13:19:47 1.3 --- Transport.java 2001/09/29 20:55:06 1.4 *************** *** 7,11 **** * * The Original Code is the Java Profiler module. ! * The Initial Developer of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. --- 7,11 ---- * * The Original Code is the Java Profiler module. ! * The Initial Developers of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. *************** *** 42,45 **** --- 42,48 ---- /* * $Log$ + * Revision 1.4 2001/09/29 20:55:06 stolis + * Plural added in licenses. + * * Revision 1.3 2001/08/22 13:19:47 stolis * Full qualification of classes removed where it is not necessary. Index: VMStartException.java =================================================================== RCS file: /cvsroot/javaprofiler/interface/net/sourceforge/javaprofiler/jpi/connect/VMStartException.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** VMStartException.java 2001/08/22 13:19:47 1.2 --- VMStartException.java 2001/09/29 20:55:06 1.3 *************** *** 7,11 **** * * The Original Code is the Java Profiler module. ! * The Initial Developer of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. --- 7,11 ---- * * The Original Code is the Java Profiler module. ! * The Initial Developers of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. *************** *** 55,58 **** --- 55,61 ---- /* * $Log$ + * Revision 1.3 2001/09/29 20:55:06 stolis + * Plural added in licenses. + * * Revision 1.2 2001/08/22 13:19:47 stolis * Full qualification of classes removed where it is not necessary. |
Update of /cvsroot/javaprofiler/interface/net/sourceforge/javaprofiler/jpi/dump In directory usw-pr-cvs1:/tmp/cvs-serv16326/net/sourceforge/javaprofiler/jpi/dump Modified Files: ClassObject.java HeapDump.java Instance.java JNIGlobalRoot.java JNILocalRoot.java JavaFrameRoot.java NativeStackRoot.java ObjectArray.java PrimitiveArray.java Root.java StickyClassRoot.java ThreadBlockRoot.java UnknownRoot.java UsedMonitorRoot.java Log Message: Plural added in licenses. Index: ClassObject.java =================================================================== RCS file: /cvsroot/javaprofiler/interface/net/sourceforge/javaprofiler/jpi/dump/ClassObject.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** ClassObject.java 2000/11/27 17:46:55 1.1.1.1 --- ClassObject.java 2001/09/29 20:55:06 1.2 *************** *** 7,11 **** * * The Original Code is the Java Profiler module. ! * The Initial Developer of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. --- 7,11 ---- * * The Original Code is the Java Profiler module. ! * The Initial Developers of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. *************** *** 68,71 **** --- 68,74 ---- /* * $Log$ + * Revision 1.2 2001/09/29 20:55:06 stolis + * Plural added in licenses. + * * Revision 1.1.1.1 2000/11/27 17:46:55 stolis * First version of the interface of our architecture. Index: HeapDump.java =================================================================== RCS file: /cvsroot/javaprofiler/interface/net/sourceforge/javaprofiler/jpi/dump/HeapDump.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** HeapDump.java 2000/11/27 17:46:49 1.1.1.1 --- HeapDump.java 2001/09/29 20:55:06 1.2 *************** *** 7,11 **** * * The Original Code is the Java Profiler module. ! * The Initial Developer of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. --- 7,11 ---- * * The Original Code is the Java Profiler module. ! * The Initial Developers of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. *************** *** 42,45 **** --- 42,48 ---- /* * $Log$ + * Revision 1.2 2001/09/29 20:55:06 stolis + * Plural added in licenses. + * * Revision 1.1.1.1 2000/11/27 17:46:49 stolis * First version of the interface of our architecture. Index: Instance.java =================================================================== RCS file: /cvsroot/javaprofiler/interface/net/sourceforge/javaprofiler/jpi/dump/Instance.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** Instance.java 2000/11/27 17:46:55 1.1.1.1 --- Instance.java 2001/09/29 20:55:06 1.2 *************** *** 7,11 **** * * The Original Code is the Java Profiler module. ! * The Initial Developer of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. --- 7,11 ---- * * The Original Code is the Java Profiler module. ! * The Initial Developers of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. *************** *** 55,58 **** --- 55,61 ---- /* * $Log$ + * Revision 1.2 2001/09/29 20:55:06 stolis + * Plural added in licenses. + * * Revision 1.1.1.1 2000/11/27 17:46:55 stolis * First version of the interface of our architecture. Index: JNIGlobalRoot.java =================================================================== RCS file: /cvsroot/javaprofiler/interface/net/sourceforge/javaprofiler/jpi/dump/JNIGlobalRoot.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** JNIGlobalRoot.java 2000/11/27 17:47:01 1.1.1.1 --- JNIGlobalRoot.java 2001/09/29 20:55:06 1.2 *************** *** 7,11 **** * * The Original Code is the Java Profiler module. ! * The Initial Developer of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. --- 7,11 ---- * * The Original Code is the Java Profiler module. ! * The Initial Developers of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. *************** *** 46,49 **** --- 46,52 ---- /* * $Log$ + * Revision 1.2 2001/09/29 20:55:06 stolis + * Plural added in licenses. + * * Revision 1.1.1.1 2000/11/27 17:47:01 stolis * First version of the interface of our architecture. Index: JNILocalRoot.java =================================================================== RCS file: /cvsroot/javaprofiler/interface/net/sourceforge/javaprofiler/jpi/dump/JNILocalRoot.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** JNILocalRoot.java 2000/11/27 17:47:01 1.1.1.1 --- JNILocalRoot.java 2001/09/29 20:55:06 1.2 *************** *** 7,11 **** * * The Original Code is the Java Profiler module. ! * The Initial Developer of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. --- 7,11 ---- * * The Original Code is the Java Profiler module. ! * The Initial Developers of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. *************** *** 53,56 **** --- 53,59 ---- /* * $Log$ + * Revision 1.2 2001/09/29 20:55:06 stolis + * Plural added in licenses. + * * Revision 1.1.1.1 2000/11/27 17:47:01 stolis * First version of the interface of our architecture. Index: JavaFrameRoot.java =================================================================== RCS file: /cvsroot/javaprofiler/interface/net/sourceforge/javaprofiler/jpi/dump/JavaFrameRoot.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** JavaFrameRoot.java 2000/11/27 17:47:01 1.1.1.1 --- JavaFrameRoot.java 2001/09/29 20:55:06 1.2 *************** *** 7,11 **** * * The Original Code is the Java Profiler module. ! * The Initial Developer of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. --- 7,11 ---- * * The Original Code is the Java Profiler module. ! * The Initial Developers of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. *************** *** 53,56 **** --- 53,59 ---- /* * $Log$ + * Revision 1.2 2001/09/29 20:55:06 stolis + * Plural added in licenses. + * * Revision 1.1.1.1 2000/11/27 17:47:01 stolis * First version of the interface of our architecture. Index: NativeStackRoot.java =================================================================== RCS file: /cvsroot/javaprofiler/interface/net/sourceforge/javaprofiler/jpi/dump/NativeStackRoot.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** NativeStackRoot.java 2000/11/27 17:47:01 1.1.1.1 --- NativeStackRoot.java 2001/09/29 20:55:06 1.2 *************** *** 7,11 **** * * The Original Code is the Java Profiler module. ! * The Initial Developer of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. --- 7,11 ---- * * The Original Code is the Java Profiler module. ! * The Initial Developers of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. *************** *** 46,49 **** --- 46,52 ---- /* * $Log$ + * Revision 1.2 2001/09/29 20:55:06 stolis + * Plural added in licenses. + * * Revision 1.1.1.1 2000/11/27 17:47:01 stolis * First version of the interface of our architecture. Index: ObjectArray.java =================================================================== RCS file: /cvsroot/javaprofiler/interface/net/sourceforge/javaprofiler/jpi/dump/ObjectArray.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** ObjectArray.java 2001/07/17 21:03:39 1.2 --- ObjectArray.java 2001/09/29 20:55:06 1.3 *************** *** 7,11 **** * * The Original Code is the Java Profiler module. ! * The Initial Developer of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. --- 7,11 ---- * * The Original Code is the Java Profiler module. ! * The Initial Developers of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. *************** *** 50,53 **** --- 50,56 ---- /* * $Log$ + * Revision 1.3 2001/09/29 20:55:06 stolis + * Plural added in licenses. + * * Revision 1.2 2001/07/17 21:03:39 stolis * Javadoc updated. Index: PrimitiveArray.java =================================================================== RCS file: /cvsroot/javaprofiler/interface/net/sourceforge/javaprofiler/jpi/dump/PrimitiveArray.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** PrimitiveArray.java 2000/11/27 17:46:55 1.1.1.1 --- PrimitiveArray.java 2001/09/29 20:55:06 1.2 *************** *** 7,11 **** * * The Original Code is the Java Profiler module. ! * The Initial Developer of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. --- 7,11 ---- * * The Original Code is the Java Profiler module. ! * The Initial Developers of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. *************** *** 51,54 **** --- 51,57 ---- /* * $Log$ + * Revision 1.2 2001/09/29 20:55:06 stolis + * Plural added in licenses. + * * Revision 1.1.1.1 2000/11/27 17:46:55 stolis * First version of the interface of our architecture. Index: Root.java =================================================================== RCS file: /cvsroot/javaprofiler/interface/net/sourceforge/javaprofiler/jpi/dump/Root.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** Root.java 2000/11/27 17:46:49 1.1.1.1 --- Root.java 2001/09/29 20:55:06 1.2 *************** *** 7,11 **** * * The Original Code is the Java Profiler module. ! * The Initial Developer of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. --- 7,11 ---- * * The Original Code is the Java Profiler module. ! * The Initial Developers of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. *************** *** 31,34 **** --- 31,37 ---- /* * $Log$ + * Revision 1.2 2001/09/29 20:55:06 stolis + * Plural added in licenses. + * * Revision 1.1.1.1 2000/11/27 17:46:49 stolis * First version of the interface of our architecture. Index: StickyClassRoot.java =================================================================== RCS file: /cvsroot/javaprofiler/interface/net/sourceforge/javaprofiler/jpi/dump/StickyClassRoot.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** StickyClassRoot.java 2000/11/27 17:47:03 1.1.1.1 --- StickyClassRoot.java 2001/09/29 20:55:06 1.2 *************** *** 7,11 **** * * The Original Code is the Java Profiler module. ! * The Initial Developer of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. --- 7,11 ---- * * The Original Code is the Java Profiler module. ! * The Initial Developers of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. *************** *** 39,42 **** --- 39,45 ---- /* * $Log$ + * Revision 1.2 2001/09/29 20:55:06 stolis + * Plural added in licenses. + * * Revision 1.1.1.1 2000/11/27 17:47:03 stolis * First version of the interface of our architecture. Index: ThreadBlockRoot.java =================================================================== RCS file: /cvsroot/javaprofiler/interface/net/sourceforge/javaprofiler/jpi/dump/ThreadBlockRoot.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** ThreadBlockRoot.java 2000/11/27 17:47:03 1.1.1.1 --- ThreadBlockRoot.java 2001/09/29 20:55:06 1.2 *************** *** 7,11 **** * * The Original Code is the Java Profiler module. ! * The Initial Developer of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. --- 7,11 ---- * * The Original Code is the Java Profiler module. ! * The Initial Developers of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. *************** *** 39,42 **** --- 39,45 ---- /* * $Log$ + * Revision 1.2 2001/09/29 20:55:06 stolis + * Plural added in licenses. + * * Revision 1.1.1.1 2000/11/27 17:47:03 stolis * First version of the interface of our architecture. Index: UnknownRoot.java =================================================================== RCS file: /cvsroot/javaprofiler/interface/net/sourceforge/javaprofiler/jpi/dump/UnknownRoot.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** UnknownRoot.java 2000/11/27 17:46:55 1.1.1.1 --- UnknownRoot.java 2001/09/29 20:55:06 1.2 *************** *** 7,11 **** * * The Original Code is the Java Profiler module. ! * The Initial Developer of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. --- 7,11 ---- * * The Original Code is the Java Profiler module. ! * The Initial Developers of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. *************** *** 39,42 **** --- 39,45 ---- /* * $Log$ + * Revision 1.2 2001/09/29 20:55:06 stolis + * Plural added in licenses. + * * Revision 1.1.1.1 2000/11/27 17:46:55 stolis * First version of the interface of our architecture. Index: UsedMonitorRoot.java =================================================================== RCS file: /cvsroot/javaprofiler/interface/net/sourceforge/javaprofiler/jpi/dump/UsedMonitorRoot.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** UsedMonitorRoot.java 2000/11/27 17:47:03 1.1.1.1 --- UsedMonitorRoot.java 2001/09/29 20:55:06 1.2 *************** *** 7,11 **** * * The Original Code is the Java Profiler module. ! * The Initial Developer of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. --- 7,11 ---- * * The Original Code is the Java Profiler module. ! * The Initial Developers of the Original Code are Jan Stola, Pavel Vacha, * Michal Pise, Petr Luner, Lukas Petru and Marek Przeczek. * Portions created by Jan Stola are Copyright (C) 2000-2001. All Rights Reserved. *************** *** 40,43 **** --- 40,46 ---- /* * $Log$ + * Revision 1.2 2001/09/29 20:55:06 stolis + * Plural added in licenses. + * * Revision 1.1.1.1 2000/11/27 17:47:03 stolis * First version of the interface of our architecture. |
From: Marek P. <ma...@us...> - 2001-09-27 10:07:32
|
Update of /cvsroot/javaprofiler/library In directory usw-pr-cvs1:/tmp/cvs-serv22714 Modified Files: README config.mk Log Message: doc changed Index: README =================================================================== RCS file: /cvsroot/javaprofiler/library/README,v retrieving revision 1.27 retrieving revision 1.28 diff -C2 -r1.27 -r1.28 *** README 2001/09/25 19:00:46 1.27 --- README 2001/09/27 10:07:28 1.28 *************** *** 64,68 **** written in Java. Because of stability and standard Sun's JVM is used. ! * JDK 1.4.0 beta2 1.3 Additional tools --- 64,68 ---- written in Java. Because of stability and standard Sun's JVM is used. ! * JDK 1.4.0 beta2 (JDK 1.3.1 and later) 1.3 Additional tools *************** *** 73,80 **** classes, methods and class members are well-documented. For creating of project documentation in HTML (or PDF) format, DOXYGEN (for C++ ! and/or Java sources) is used. GRAPHVIZ generates graphs for HTML doc. * Doxygen 1.2.10 ! * Graphviz 1.7.3 Data flows, schemes and relations between structures are described --- 73,81 ---- classes, methods and class members are well-documented. For creating of project documentation in HTML (or PDF) format, DOXYGEN (for C++ ! and/or Java sources) is used. GRAPHVIZ can be used to generate ! graphs for HTML doc (optional, default is off). * Doxygen 1.2.10 ! * Graphviz 1.7.3 [optional] Data flows, schemes and relations between structures are described *************** *** 207,211 **** $(MAKE) doc generate project documentation only $(MAKE) src compile sources only ! $(MAKE) clean clean binary object files (sources remain) where $(MAKE) is appropriate "make" program for given platform/compiler --- 208,212 ---- $(MAKE) doc generate project documentation only $(MAKE) src compile sources only ! $(MAKE) clean clean binary object files and docs (sources remain) where $(MAKE) is appropriate "make" program for given platform/compiler *************** *** 215,219 **** Graphviz executables must be in your PATH to generate HTML documentation ! correctly. See PATH variable for Win32/UNIX platforms. --- 216,221 ---- Graphviz executables must be in your PATH to generate HTML documentation ! correctly. See PATH variable for Win32/UNIX platforms. Graphviz is not ! used by default. Index: config.mk =================================================================== RCS file: /cvsroot/javaprofiler/library/config.mk,v retrieving revision 1.24 retrieving revision 1.25 diff -C2 -r1.24 -r1.25 *** config.mk 2001/09/18 22:19:28 1.24 --- config.mk 2001/09/27 10:07:28 1.25 *************** *** 1,12 **** ################################################################ # configuration file ! # Microsoft Windows NT 4.0/2000, x86, Visual C/C++ 6.0 # # author: Marek Przeczek ! PROF_LIBRARY_NAME = profiler\profiler.dll PROF_JAVA_INTERF_PACKAGE = IProf.jar ! NATIVE_LIBRARY_NAME = CommunShMem.dll ################################################################ --- 1,12 ---- ################################################################ # configuration file ! # SunOS 5.8, SPARC, GNU C/C++ 3.0 (using GNU make 3.7x) # # author: Marek Przeczek ! PROF_LIBRARY_NAME = profiler/libprofiler.so PROF_JAVA_INTERF_PACKAGE = IProf.jar ! NATIVE_LIBRARY_NAME = libCommunShMem.so ################################################################ *************** *** 15,29 **** # do not use "\" as a last character in path definition ! COMPILER_PATH = C:\Program Files\Microsoft Visual Studio\VC98 ! JAVA_PATH = C:\Program Files\jdk1.4 ! DOXYGEN_PATH = C:\Programs\doxygen-1.2.10 ! ! CCC = "$(COMPILER_PATH)\Bin\cl" ! LD = "$(COMPILER_PATH)\Bin\link" ! JAVAC = "$(JAVA_PATH)\bin\javac" ! JAVAH = "$(JAVA_PATH)\bin\javah" ! JAR = "$(JAVA_PATH)\bin\jar" ! JDOC = "$(JAVA_PATH)\bin\javadoc" ! DOXYGEN = "$(DOXYGEN_PATH)\bin\doxygen" ################################################################ --- 15,28 ---- # do not use "\" as a last character in path definition ! COMPILER_PATH = /home/mprz7483/BIG/gcc-3.0 ! JAVA_PATH = /home/mprz7483/BIG/j2sdk1_3_1 ! DOXYGEN_PATH = /opt/doxygen-1.2.10 ! ! CCC = "$(COMPILER_PATH)/bin/g++" ! LD = "$(COMPILER_PATH)/bin/g++" ! JAVAC = "$(JAVA_PATH)/bin/javac" ! JAVAH = "$(JAVA_PATH)/bin/javah" ! JAR = "$(JAVA_PATH)/bin/jar" ! DOXYGEN = "$(DOXYGEN_PATH)/bin/doxygen" ################################################################ *************** *** 32,37 **** DOXYGENFLAGS = ! JDOCFLAGS = -private ! JAVACFLAGS = -classpath ..\..\src2\$(PROF_JAVA_INTERF_PACKAGE) ################################################################ --- 31,35 ---- DOXYGENFLAGS = ! JAVACFLAGS = -classpath ../../src2/$(PROF_JAVA_INTERF_PACKAGE) ################################################################ *************** *** 39,72 **** # modify as needed ! DEFINES = /DWIN32 ! INCLUDES = /I "$(JAVA_PATH)\include" /I "$(JAVA_PATH)\include\win32" # debug or not ? # choose one of following two possibilities ! FLAGS = /Od /Zi /D_DEBUG /MDd /LDd ! #FLAGS = /O2 /Og /Oi /Ot /Ox /DNDEBUG /MD /LD /G6 /GD ! LDFLAGS = /NOLOGO /DLL /OUT:$(PROF_LIBRARY_NAME) ! LDLIBS = wsock32.lib winmm.lib ! LDFLAGS2 = /NOLOGO /DLL /OUT:$(NATIVE_LIBRARY_NAME) ! LDLIBS2 = wsock32.lib ! CPPFLAGS = /nologo /c $(FLAGS) $(DEFINES) $(INCLUDES) ################################################################ # MAKEFILE ! MFLAGS = /NOLOGO /f Makefile.mak include dir.info ! all: ! for %i in (xxx $(DIRS)) do if not %%i == xxx $(MAKE) $(MFLAGS) %%i.dir ! for %i in (xxx $(FILES)) do if not %%i == xxx $(MAKE) $(MFLAGS) %%i.obj ! ! clean: ! for %i in (xxx $(CLEAN_FILES)) do if exist %%i del %%i ! for %i in (xxx $(DIRS)) do if not %%i == xxx $(MAKE) $(MFLAGS) %%i.clean --- 37,67 ---- # modify as needed ! DEFINES = -DSUNOS -fpic -D_REENTRANT ! INCLUDES = -I$(JAVA_PATH)/include -I$(JAVA_PATH)/include/solaris # debug or not ? # choose one of following two possibilities ! #FLAGS = -O0 -D_DEBUG ! FLAGS = -O3 -DNDEBUG -fno-rtti -fno-exceptions ! LDFLAGS = $(DEFINES) -shared -o $(PROF_LIBRARY_NAME) ! LDLIBS = -lsocket -lpthread -lthread -lnsl ! LDFLAGS2 = $(DEFINES) -shared -o $(NATIVE_LIBRARY_NAME) ! LDLIBS2 = -lsocket ! CPPFLAGS = -c $(FLAGS) $(DEFINES) $(INCLUDES) ################################################################ # MAKEFILE ! MFLAGS = -f Makefile -C include dir.info ! all: $(addsuffix .dir.2, $(DIRS)) $(addsuffix .o, $(FILES)) ! ! clean: $(addsuffix .clean.2, $(DIRS)) ! rm -Rf $(CLEAN_FILES) |
From: Marek P. <ma...@us...> - 2001-09-27 10:07:32
|
Update of /cvsroot/javaprofiler/library/doc/interface In directory usw-pr-cvs1:/tmp/cvs-serv22714/doc/interface Modified Files: doc_html.conf Log Message: doc changed Index: doc_html.conf =================================================================== RCS file: /cvsroot/javaprofiler/library/doc/interface/doc_html.conf,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** doc_html.conf 2001/09/25 18:57:55 1.1 --- doc_html.conf 2001/09/27 10:07:28 1.2 *************** *** 708,712 **** # have no effect if this option is set to NO (the default) ! HAVE_DOT = YES # If the CLASS_GRAPH and HAVE_DOT tags are set to YES then doxygen --- 708,712 ---- # have no effect if this option is set to NO (the default) ! HAVE_DOT = NO # If the CLASS_GRAPH and HAVE_DOT tags are set to YES then doxygen |
From: Marek P. <ma...@us...> - 2001-09-27 10:07:32
|
Update of /cvsroot/javaprofiler/library/doc/library In directory usw-pr-cvs1:/tmp/cvs-serv22714/doc/library Modified Files: doc_html.conf Log Message: doc changed Index: doc_html.conf =================================================================== RCS file: /cvsroot/javaprofiler/library/doc/library/doc_html.conf,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** doc_html.conf 2001/09/25 18:57:56 1.1 --- doc_html.conf 2001/09/27 10:07:29 1.2 *************** *** 708,712 **** # have no effect if this option is set to NO (the default) ! HAVE_DOT = YES # If the CLASS_GRAPH and HAVE_DOT tags are set to YES then doxygen --- 708,712 ---- # have no effect if this option is set to NO (the default) ! HAVE_DOT = NO # If the CLASS_GRAPH and HAVE_DOT tags are set to YES then doxygen |
From: Marek P. <ma...@us...> - 2001-09-27 10:07:32
|
Update of /cvsroot/javaprofiler/library/doc/native In directory usw-pr-cvs1:/tmp/cvs-serv22714/doc/native Modified Files: doc_html.conf Log Message: doc changed Index: doc_html.conf =================================================================== RCS file: /cvsroot/javaprofiler/library/doc/native/doc_html.conf,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** doc_html.conf 2001/09/25 18:57:56 1.1 --- doc_html.conf 2001/09/27 10:07:29 1.2 *************** *** 708,712 **** # have no effect if this option is set to NO (the default) ! HAVE_DOT = YES # If the CLASS_GRAPH and HAVE_DOT tags are set to YES then doxygen --- 708,712 ---- # have no effect if this option is set to NO (the default) ! HAVE_DOT = NO # If the CLASS_GRAPH and HAVE_DOT tags are set to YES then doxygen |
From: Marek P. <ma...@us...> - 2001-09-25 19:00:50
|
Update of /cvsroot/javaprofiler/library In directory usw-pr-cvs1:/tmp/cvs-serv18472 Modified Files: README Log Message: changes in doc Index: README =================================================================== RCS file: /cvsroot/javaprofiler/library/README,v retrieving revision 1.26 retrieving revision 1.27 diff -C2 -r1.26 -r1.27 *** README 2001/09/25 18:57:55 1.26 --- README 2001/09/25 19:00:46 1.27 *************** *** 147,150 **** --- 147,151 ---- * Microsoft Visio 2000 (www.microsoft.com) * Doxygen 1.2.10 (www.doxygen.org) [for free] + * Graphviz 1.7.3 (www.graphviz.org) [for free] * GNU make 3.7x (www.gnu.org) [for free] |
From: Marek P. <ma...@us...> - 2001-09-25 18:57:59
|
Update of /cvsroot/javaprofiler/library/doc/native In directory usw-pr-cvs1:/tmp/cvs-serv17653/doc/native Modified Files: Makefile.rules Added Files: doc_html.conf doc_latex.conf Removed Files: doc.conf Log Message: changes in doc --- NEW FILE: doc_html.conf --- # Doxyfile 1.2.10 # This file describes the settings to be used by the documentation system # doxygen (www.doxygen.org) for a project # # All text after a hash (#) is considered a comment and will be ignored # The format is: # TAG = value [value, ...] # For lists items can also be appended using: # TAG += value [value, ...] # Values that contain spaces should be placed between quotes (" ") #--------------------------------------------------------------------------- # General configuration options #--------------------------------------------------------------------------- # The PROJECT_NAME tag is a single word (or a sequence of words surrounded # by quotes) that should identify the project. PROJECT_NAME = "Java Profiler Dynamic Library Native Classes" # The PROJECT_NUMBER tag can be used to enter a project or revision number. # This could be handy for archiving the generated documentation or # if some version control system is used. PROJECT_NUMBER = # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) # base path where the generated documentation will be put. # If a relative path is entered, it will be relative to the location # where doxygen was started. If left blank the current directory will be used. OUTPUT_DIRECTORY = # The OUTPUT_LANGUAGE tag is used to specify the language in which all # documentation generated by doxygen is written. Doxygen will use this # information to generate all constant output in the proper language. # The default language is English, other supported languages are: # Brazilian, Chinese, Croatian, Czech, Danish, Dutch, Finnish, French, # German, Hungarian, Italian, Japanese, Korean, Norwegian, Polish, # Portuguese, Romanian, Russian, Slovak, Slovene, Spanish and Swedish. OUTPUT_LANGUAGE = English # If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in # documentation are documented, even if no documentation was available. # Private class members and static file members will be hidden unless # the EXTRACT_PRIVATE and EXTRACT_STATIC tags are set to YES EXTRACT_ALL = NO # If the EXTRACT_PRIVATE tag is set to YES all private members of a class # will be included in the documentation. EXTRACT_PRIVATE = YES # If the EXTRACT_STATIC tag is set to YES all static members of a file # will be included in the documentation. EXTRACT_STATIC = YES # If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all # undocumented members of documented classes, files or namespaces. # If set to NO (the default) these members will be included in the # various overviews, but no documentation section is generated. # This option has no effect if EXTRACT_ALL is enabled. HIDE_UNDOC_MEMBERS = YES # If the HIDE_UNDOC_CLASSES tag is set to YES, Doxygen will hide all # undocumented classes that are normally visible in the class hierarchy. # If set to NO (the default) these class will be included in the various # overviews. This option has no effect if EXTRACT_ALL is enabled. HIDE_UNDOC_CLASSES = YES # If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will # include brief member descriptions after the members that are listed in # the file and class documentation (similar to JavaDoc). # Set to NO to disable this. BRIEF_MEMBER_DESC = YES # If the REPEAT_BRIEF tag is set to YES (the default) Doxygen will prepend # the brief description of a member or function before the detailed description. # Note: if both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the # brief descriptions will be completely suppressed. REPEAT_BRIEF = YES # If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then # Doxygen will generate a detailed section even if there is only a brief # description. ALWAYS_DETAILED_SEC = NO # If the FULL_PATH_NAMES tag is set to YES then Doxygen will prepend the full # path before files name in the file list and in the header files. If set # to NO the shortest path that makes the file name unique will be used. FULL_PATH_NAMES = NO # If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag # can be used to strip a user defined part of the path. Stripping is # only done if one of the specified strings matches the left-hand part of # the path. It is allowed to use relative paths in the argument list. STRIP_FROM_PATH = # The INTERNAL_DOCS tag determines if documentation # that is typed after a \internal command is included. If the tag is set # to NO (the default) then the documentation will be excluded. # Set it to YES to include the internal documentation. INTERNAL_DOCS = NO # If the CLASS_DIAGRAMS tag is set to YES (the default) Doxygen will # generate a class diagram (in Html and LaTeX) for classes with base or # super classes. Setting the tag to NO turns the diagrams off. CLASS_DIAGRAMS = YES # If the SOURCE_BROWSER tag is set to YES then a list of source files will # be generated. Documented entities will be cross-referenced with these sources. SOURCE_BROWSER = YES # Setting the INLINE_SOURCES tag to YES will include the body # of functions and classes directly in the documentation. INLINE_SOURCES = NO # Setting the STRIP_CODE_COMMENTS tag to YES (the default) will instruct # doxygen to hide any special comment blocks from generated source code # fragments. Normal C and C++ comments will always remain visible. STRIP_CODE_COMMENTS = YES # If the CASE_SENSE_NAMES tag is set to NO then Doxygen will only generate # file names in lower case letters. If set to YES upper case letters are also # allowed. This is useful if you have classes or files whose names only differ # in case and if your file system supports case sensitive file names. Windows # users are adviced to set this option to NO. CASE_SENSE_NAMES = YES # If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter # (but less readable) file names. This can be useful is your file systems # doesn't support long names like on DOS, Mac, or CD-ROM. SHORT_NAMES = NO # If the HIDE_SCOPE_NAMES tag is set to NO (the default) then Doxygen # will show members with their full class and namespace scopes in the # documentation. If set to YES the scope will be hidden. HIDE_SCOPE_NAMES = NO # If the VERBATIM_HEADERS tag is set to YES (the default) then Doxygen # will generate a verbatim copy of the header file for each class for # which an include is specified. Set to NO to disable this. VERBATIM_HEADERS = YES # If the SHOW_INCLUDE_FILES tag is set to YES (the default) then Doxygen # will put list of the files that are included by a file in the documentation # of that file. SHOW_INCLUDE_FILES = YES # If the JAVADOC_AUTOBRIEF tag is set to YES then Doxygen # will interpret the first line (until the first dot) of a JavaDoc-style # comment as the brief description. If set to NO, the JavaDoc # comments will behave just like the Qt-style comments (thus requiring an # explict @brief command for a brief description. JAVADOC_AUTOBRIEF = YES # If the INHERIT_DOCS tag is set to YES (the default) then an undocumented # member inherits the documentation from any documented member that it # reimplements. INHERIT_DOCS = YES # If the INLINE_INFO tag is set to YES (the default) then a tag [inline] # is inserted in the documentation for inline members. INLINE_INFO = YES # If the SORT_MEMBER_DOCS tag is set to YES (the default) then doxygen # will sort the (detailed) documentation of file and class members # alphabetically by member name. If set to NO the members will appear in # declaration order. SORT_MEMBER_DOCS = YES # If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC # tag is set to YES, then doxygen will reuse the documentation of the first # member in the group (if any) for the other members of the group. By default # all members of a group must be documented explicitly. DISTRIBUTE_GROUP_DOC = NO # The TAB_SIZE tag can be used to set the number of spaces in a tab. # Doxygen uses this value to replace tabs by spaces in code fragments. TAB_SIZE = 8 # The GENERATE_TODOLIST tag can be used to enable (YES) or # disable (NO) the todo list. This list is created by putting \todo # commands in the documentation. GENERATE_TODOLIST = YES # The GENERATE_TESTLIST tag can be used to enable (YES) or # disable (NO) the test list. This list is created by putting \test # commands in the documentation. GENERATE_TESTLIST = YES # The GENERATE_BUGLIST tag can be used to enable (YES) or # disable (NO) the bug list. This list is created by putting \bug # commands in the documentation. GENERATE_BUGLIST = YES # This tag can be used to specify a number of aliases that acts # as commands in the documentation. An alias has the form "name=value". # For example adding "sideeffect=\par Side Effects:\n" will allow you to # put the command \sideeffect (or @sideeffect) in the documentation, which # will result in a user defined paragraph with heading "Side Effects:". # You can put \n's in the value part of an alias to insert newlines. ALIASES = # The ENABLED_SECTIONS tag can be used to enable conditional # documentation sections, marked by \if sectionname ... \endif. ENABLED_SECTIONS = # The MAX_INITIALIZER_LINES tag determines the maximum number of lines # the initial value of a variable or define consist of for it to appear in # the documentation. If the initializer consists of more lines than specified # here it will be hidden. Use a value of 0 to hide initializers completely. # The appearance of the initializer of individual variables and defines in the # documentation can be controlled using \showinitializer or \hideinitializer # command in the documentation regardless of this setting. MAX_INITIALIZER_LINES = 30 # Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C sources # only. Doxygen will then generate output that is more tailored for C. # For instance some of the names that are used will be different. The list # of all members will be omitted, etc. OPTIMIZE_OUTPUT_FOR_C = NO # Set the SHOW_USED_FILES tag to NO to disable the list of files generated # at the bottom of the documentation of classes and structs. If set to YES the # list will mention the files that were used to generate the documentation. SHOW_USED_FILES = YES #--------------------------------------------------------------------------- # configuration options related to warning and progress messages #--------------------------------------------------------------------------- # The QUIET tag can be used to turn on/off the messages that are generated # by doxygen. Possible values are YES and NO. If left blank NO is used. QUIET = NO # The WARNINGS tag can be used to turn on/off the warning messages that are # generated by doxygen. Possible values are YES and NO. If left blank # NO is used. WARNINGS = YES # If WARN_IF_UNDOCUMENTED is set to YES, then doxygen will generate warnings # for undocumented members. If EXTRACT_ALL is set to YES then this flag will # automatically be disabled. WARN_IF_UNDOCUMENTED = YES # The WARN_FORMAT tag determines the format of the warning messages that # doxygen can produce. The string should contain the $file, $line, and $text # tags, which will be replaced by the file and line number from which the # warning originated and the warning text. WARN_FORMAT = # The WARN_LOGFILE tag can be used to specify a file to which warning # and error messages should be written. If left blank the output is written # to stderr. WARN_LOGFILE = #--------------------------------------------------------------------------- # configuration options related to the input files #--------------------------------------------------------------------------- # The INPUT tag can be used to specify the files and/or directories that contain # documented source files. You may enter file names like "myfile.cpp" or # directories like "/usr/src/myproject". Separate the files or directories # with spaces. INPUT = ../../src2 # If the value of the INPUT tag contains directories, you can use the # FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp # and *.h) to filter out the source-files in the directories. If left # blank all files are included. FILE_PATTERNS = *.cpp # The RECURSIVE tag can be used to turn specify whether or not subdirectories # should be searched for input files as well. Possible values are YES and NO. # If left blank NO is used. RECURSIVE = YES # The EXCLUDE tag can be used to specify files and/or directories that should # excluded from the INPUT source files. This way you can easily exclude a # subdirectory from a directory tree whose root is specified with the INPUT tag. EXCLUDE = # If the value of the INPUT tag contains directories, you can use the # EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude # certain files from those directories. EXCLUDE_PATTERNS = # The EXAMPLE_PATH tag can be used to specify one or more files or # directories that contain example code fragments that are included (see # the \include command). EXAMPLE_PATH = # If the value of the EXAMPLE_PATH tag contains directories, you can use the # EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp # and *.h) to filter out the source-files in the directories. If left # blank all files are included. EXAMPLE_PATTERNS = # The IMAGE_PATH tag can be used to specify one or more files or # directories that contain image that are included in the documentation (see # the \image command). IMAGE_PATH = # The INPUT_FILTER tag can be used to specify a program that doxygen should # invoke to filter for each input file. Doxygen will invoke the filter program # by executing (via popen()) the command <filter> <input-file>, where <filter> # is the value of the INPUT_FILTER tag, and <input-file> is the name of an # input file. Doxygen will then use the output that the filter program writes # to standard output. INPUT_FILTER = # If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using # INPUT_FILTER) will be used to filter the input files when producing source # files to browse. FILTER_SOURCE_FILES = NO #--------------------------------------------------------------------------- # configuration options related to the alphabetical class index #--------------------------------------------------------------------------- # If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index # of all compounds will be generated. Enable this if the project # contains a lot of classes, structs, unions or interfaces. ALPHABETICAL_INDEX = YES # If the alphabetical index is enabled (see ALPHABETICAL_INDEX) then # the COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns # in which this list will be split (can be a number in the range [1..20]) COLS_IN_ALPHA_INDEX = 5 # In case all classes in a project start with a common prefix, all # classes will be put under the same header in the alphabetical index. # The IGNORE_PREFIX tag can be used to specify one or more prefixes that # should be ignored while generating the index headers. IGNORE_PREFIX = #--------------------------------------------------------------------------- # configuration options related to the HTML output #--------------------------------------------------------------------------- # If the GENERATE_HTML tag is set to YES (the default) Doxygen will # generate HTML output. GENERATE_HTML = YES # The HTML_OUTPUT tag is used to specify where the HTML docs will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `html' will be used as the default path. HTML_OUTPUT = # The HTML_HEADER tag can be used to specify a personal HTML header for # each generated HTML page. If it is left blank doxygen will generate a # standard header. HTML_HEADER = # The HTML_FOOTER tag can be used to specify a personal HTML footer for # each generated HTML page. If it is left blank doxygen will generate a # standard footer. HTML_FOOTER = # The HTML_STYLESHEET tag can be used to specify a user defined cascading # style sheet that is used by each HTML page. It can be used to # fine-tune the look of the HTML output. If the tag is left blank doxygen # will generate a default style sheet HTML_STYLESHEET = # If the HTML_ALIGN_MEMBERS tag is set to YES, the members of classes, # files or namespaces will be aligned in HTML using tables. If set to # NO a bullet list will be used. HTML_ALIGN_MEMBERS = YES # If the GENERATE_HTMLHELP tag is set to YES, additional index files # will be generated that can be used as input for tools like the # Microsoft HTML help workshop to generate a compressed HTML help file (.chm) # of the generated HTML documentation. GENERATE_HTMLHELP = NO # If the GENERATE_HTMLHELP tag is set to YES, the GENERATE_CHI flag # controls if a separate .chi index file is generated (YES) or that # it should be included in the master .chm file (NO). GENERATE_CHI = NO # If the GENERATE_HTMLHELP tag is set to YES, the BINARY_TOC flag # controls whether a binary table of contents is generated (YES) or a # normal table of contents (NO) in the .chm file. BINARY_TOC = NO # The TOC_EXPAND flag can be set to YES to add extra items for group members # to the contents of the Html help documentation and to the tree view. TOC_EXPAND = YES # The DISABLE_INDEX tag can be used to turn on/off the condensed index at # top of each HTML page. The value NO (the default) enables the index and # the value YES disables it. DISABLE_INDEX = NO # This tag can be used to set the number of enum values (range [1..20]) # that doxygen will group on one line in the generated HTML documentation. ENUM_VALUES_PER_LINE = 4 # If the GENERATE_TREEVIEW tag is set to YES, a side panel will be # generated containing a tree-like index structure (just like the one that # is generated for HTML Help). For this to work a browser that supports # JavaScript and frames is required (for instance Netscape 4.0+ # or Internet explorer 4.0+). GENERATE_TREEVIEW = YES # If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be # used to set the initial width (in pixels) of the frame in which the tree # is shown. TREEVIEW_WIDTH = 250 #--------------------------------------------------------------------------- # configuration options related to the LaTeX output #--------------------------------------------------------------------------- # If the GENERATE_LATEX tag is set to YES (the default) Doxygen will # generate Latex output. GENERATE_LATEX = NO # The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `latex' will be used as the default path. LATEX_OUTPUT = # If the COMPACT_LATEX tag is set to YES Doxygen generates more compact # LaTeX documents. This may be useful for small projects and may help to # save some trees in general. COMPACT_LATEX = NO # The PAPER_TYPE tag can be used to set the paper type that is used # by the printer. Possible values are: a4, a4wide, letter, legal and # executive. If left blank a4wide will be used. PAPER_TYPE = a4wide # The EXTRA_PACKAGES tag can be to specify one or more names of LaTeX # packages that should be included in the LaTeX output. EXTRA_PACKAGES = # The LATEX_HEADER tag can be used to specify a personal LaTeX header for # the generated latex document. The header should contain everything until # the first chapter. If it is left blank doxygen will generate a # standard header. Notice: only use this tag if you know what you are doing! LATEX_HEADER = # If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated # is prepared for conversion to pdf (using ps2pdf). The pdf file will # contain links (just like the HTML output) instead of page references # This makes the output suitable for online browsing using a pdf viewer. PDF_HYPERLINKS = YES # If the USE_PDFLATEX tag is set to YES, pdflatex will be used instead of # plain latex in the generated Makefile. Set this option to YES to get a # higher quality PDF documentation. USE_PDFLATEX = YES # If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \\batchmode. # command to the generated LaTeX files. This will instruct LaTeX to keep # running if errors occur, instead of asking the user for help. # This option is also used when generating formulas in HTML. LATEX_BATCHMODE = NO #--------------------------------------------------------------------------- # configuration options related to the RTF output #--------------------------------------------------------------------------- # If the GENERATE_RTF tag is set to YES Doxygen will generate RTF output # The RTF output is optimised for Word 97 and may not look very pretty with # other RTF readers or editors. GENERATE_RTF = NO # The RTF_OUTPUT tag is used to specify where the RTF docs will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `rtf' will be used as the default path. RTF_OUTPUT = # If the COMPACT_RTF tag is set to YES Doxygen generates more compact # RTF documents. This may be useful for small projects and may help to # save some trees in general. COMPACT_RTF = NO # If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated # will contain hyperlink fields. The RTF file will # contain links (just like the HTML output) instead of page references. # This makes the output suitable for online browsing using WORD or other # programs which support those fields. # Note: wordpad (write) and others do not support links. RTF_HYPERLINKS = NO # Load stylesheet definitions from file. Syntax is similar to doxygen's # config file, i.e. a series of assigments. You only have to provide # replacements, missing definitions are set to their default value. RTF_STYLESHEET_FILE = # Set optional variables used in the generation of an rtf document. # Syntax is similar to doxygen's config file. RTF_EXTENSIONS_FILE = #--------------------------------------------------------------------------- # configuration options related to the man page output #--------------------------------------------------------------------------- # If the GENERATE_MAN tag is set to YES (the default) Doxygen will # generate man pages GENERATE_MAN = NO # The MAN_OUTPUT tag is used to specify where the man pages will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `man' will be used as the default path. MAN_OUTPUT = # The MAN_EXTENSION tag determines the extension that is added to # the generated man pages (default is the subroutine's section .3) MAN_EXTENSION = # If the MAN_LINKS tag is set to YES and Doxygen generates man output, # then it will generate one additional man file for each entity # documented in the real man page(s). These additional files # only source the real man page, but without them the man command # would be unable to find the correct page. The default is NO. MAN_LINKS = NO #--------------------------------------------------------------------------- # configuration options related to the XML output #--------------------------------------------------------------------------- # If the GENERATE_XML tag is set to YES Doxygen will # generate an XML file that captures the structure of # the code including all documentation. Note that this # feature is still experimental and incomplete at the # moment. GENERATE_XML = NO #--------------------------------------------------------------------------- # Configuration options related to the preprocessor #--------------------------------------------------------------------------- # If the ENABLE_PREPROCESSING tag is set to YES (the default) Doxygen will # evaluate all C-preprocessor directives found in the sources and include # files. ENABLE_PREPROCESSING = YES # If the MACRO_EXPANSION tag is set to YES Doxygen will expand all macro # names in the source code. If set to NO (the default) only conditional # compilation will be performed. Macro expansion can be done in a controlled # way by setting EXPAND_ONLY_PREDEF to YES. MACRO_EXPANSION = NO # If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES # then the macro expansion is limited to the macros specified with the # PREDEFINED and EXPAND_AS_PREDEFINED tags. EXPAND_ONLY_PREDEF = NO # If the SEARCH_INCLUDES tag is set to YES (the default) the includes files # in the INCLUDE_PATH (see below) will be search if a #include is found. SEARCH_INCLUDES = YES # The INCLUDE_PATH tag can be used to specify one or more directories that # contain include files that are not input files but should be processed by # the preprocessor. INCLUDE_PATH = # You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard # patterns (like *.h and *.hpp) to filter out the header-files in the # directories. If left blank, the patterns specified with FILE_PATTERNS will # be used. INCLUDE_FILE_PATTERNS = # The PREDEFINED tag can be used to specify one or more macro names that # are defined before the preprocessor is started (similar to the -D option of # gcc). The argument of the tag is a list of macros of the form: name # or name=definition (no spaces). If the definition and the = are # omitted =1 is assumed. PREDEFINED = # If the MACRO_EXPANSION and EXPAND_PREDEF_ONLY tags are set to YES then # this tag can be used to specify a list of macro names that should be expanded. # The macro definition that is found in the sources will be used. # Use the PREDEFINED tag if you want to use a different macro definition. EXPAND_AS_DEFINED = #--------------------------------------------------------------------------- # Configuration::addtions related to external references #--------------------------------------------------------------------------- # The TAGFILES tag can be used to specify one or more tagfiles. TAGFILES = # When a file name is specified after GENERATE_TAGFILE, doxygen will create # a tag file that is based on the input files it reads. GENERATE_TAGFILE = # If the ALLEXTERNALS tag is set to YES all external classes will be listed # in the class index. If set to NO only the inherited external classes # will be listed. ALLEXTERNALS = NO # The PERL_PATH should be the absolute path and name of the perl script # interpreter (i.e. the result of `which perl'). PERL_PATH = #--------------------------------------------------------------------------- # Configuration options related to the dot tool #--------------------------------------------------------------------------- # If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is # available from the path. This tool is part of Graphviz, a graph visualization # toolkit from AT&T and Lucent Bell Labs. The other options in this section # have no effect if this option is set to NO (the default) HAVE_DOT = YES # If the CLASS_GRAPH and HAVE_DOT tags are set to YES then doxygen # will generate a graph for each documented class showing the direct and # indirect inheritance relations. Setting this tag to YES will force the # the CLASS_DIAGRAMS tag to NO. CLASS_GRAPH = YES # If the COLLABORATION_GRAPH and HAVE_DOT tags are set to YES then doxygen # will generate a graph for each documented class showing the direct and # indirect implementation dependencies (inheritance, containment, and # class references variables) of the class with other documented classes. COLLABORATION_GRAPH = YES # If set to YES, the inheritance and collaboration graphs will show the # relations between templates and their instances. TEMPLATE_RELATIONS = YES # If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDE_GRAPH, and HAVE_DOT # tags are set to YES then doxygen will generate a graph for each documented # file showing the direct and indirect include dependencies of the file with # other documented files. INCLUDE_GRAPH = YES # If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDED_BY_GRAPH, and # HAVE_DOT tags are set to YES then doxygen will generate a graph for each # documented header file showing the documented files that directly or # indirectly include this file. INCLUDED_BY_GRAPH = YES # If the GRAPHICAL_HIERARCHY and HAVE_DOT tags are set to YES then doxygen # will graphical hierarchy of all classes instead of a textual one. GRAPHICAL_HIERARCHY = YES # The tag DOT_PATH can be used to specify the path where the dot tool can be # found. If left blank, it is assumed the dot tool can be found on the path. DOT_PATH = # The DOTFILE_DIRS tag can be used to specify one or more directories that # contain dot files that are included in the documentation (see the # \dotfile command). DOTFILE_DIRS = # The MAX_DOT_GRAPH_WIDTH tag can be used to set the maximum allowed width # (in pixels) of the graphs generated by dot. If a graph becomes larger than # this value, doxygen will try to truncate the graph, so that it fits within # the specified constraint. Beware that most browsers cannot cope with very # large images. MAX_DOT_GRAPH_WIDTH = 1024 # The MAX_DOT_GRAPH_HEIGHT tag can be used to set the maximum allows height # (in pixels) of the graphs generated by dot. If a graph becomes larger than # this value, doxygen will try to truncate the graph, so that it fits within # the specified constraint. Beware that most browsers cannot cope with very # large images. MAX_DOT_GRAPH_HEIGHT = 1024 # If the GENERATE_LEGEND tag is set to YES (the default) Doxygen will # generate a legend page explaining the meaning of the various boxes and # arrows in the dot generated graphs. GENERATE_LEGEND = YES # If the DOT_CLEANUP tag is set to YES (the default) Doxygen will # remove the intermedate dot files that are used to generate # the various graphs. DOT_CLEANUP = YES #--------------------------------------------------------------------------- # Configuration::addtions related to the search engine #--------------------------------------------------------------------------- # The SEARCHENGINE tag specifies whether or not a search engine should be # used. If set to NO the values of all tags below this one will be ignored. SEARCHENGINE = NO # The CGI_NAME tag should be the name of the CGI script that # starts the search engine (doxysearch) with the correct parameters. # A script with this name will be generated by doxygen. CGI_NAME = # The CGI_URL tag should be the absolute URL to the directory where the # cgi binaries are located. See the documentation of your http daemon for # details. CGI_URL = # The DOC_URL tag should be the absolute URL to the directory where the # documentation is located. If left blank the absolute path to the # documentation, with file:// prepended to it, will be used. DOC_URL = # The DOC_ABSPATH tag should be the absolute path to the directory where the # documentation is located. If left blank the directory on the local machine # will be used. DOC_ABSPATH = # The BIN_ABSPATH tag must point to the directory where the doxysearch binary # is installed. BIN_ABSPATH = # The EXT_DOC_PATHS tag can be used to specify one or more paths to # documentation generated for other projects. This allows doxysearch to search # the documentation for these projects as well. EXT_DOC_PATHS = --- NEW FILE: doc_latex.conf --- # Doxyfile 1.2.10 # This file describes the settings to be used by the documentation system # doxygen (www.doxygen.org) for a project # # All text after a hash (#) is considered a comment and will be ignored # The format is: # TAG = value [value, ...] # For lists items can also be appended using: # TAG += value [value, ...] # Values that contain spaces should be placed between quotes (" ") #--------------------------------------------------------------------------- # General configuration options #--------------------------------------------------------------------------- # The PROJECT_NAME tag is a single word (or a sequence of words surrounded # by quotes) that should identify the project. PROJECT_NAME = "Java Profiler Dynamic Library Native Classes" # The PROJECT_NUMBER tag can be used to enter a project or revision number. # This could be handy for archiving the generated documentation or # if some version control system is used. PROJECT_NUMBER = # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) # base path where the generated documentation will be put. # If a relative path is entered, it will be relative to the location # where doxygen was started. If left blank the current directory will be used. OUTPUT_DIRECTORY = # The OUTPUT_LANGUAGE tag is used to specify the language in which all # documentation generated by doxygen is written. Doxygen will use this # information to generate all constant output in the proper language. # The default language is English, other supported languages are: # Brazilian, Chinese, Croatian, Czech, Danish, Dutch, Finnish, French, # German, Hungarian, Italian, Japanese, Korean, Norwegian, Polish, # Portuguese, Romanian, Russian, Slovak, Slovene, Spanish and Swedish. OUTPUT_LANGUAGE = English # If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in # documentation are documented, even if no documentation was available. # Private class members and static file members will be hidden unless # the EXTRACT_PRIVATE and EXTRACT_STATIC tags are set to YES EXTRACT_ALL = NO # If the EXTRACT_PRIVATE tag is set to YES all private members of a class # will be included in the documentation. EXTRACT_PRIVATE = YES # If the EXTRACT_STATIC tag is set to YES all static members of a file # will be included in the documentation. EXTRACT_STATIC = YES # If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all # undocumented members of documented classes, files or namespaces. # If set to NO (the default) these members will be included in the # various overviews, but no documentation section is generated. # This option has no effect if EXTRACT_ALL is enabled. HIDE_UNDOC_MEMBERS = YES # If the HIDE_UNDOC_CLASSES tag is set to YES, Doxygen will hide all # undocumented classes that are normally visible in the class hierarchy. # If set to NO (the default) these class will be included in the various # overviews. This option has no effect if EXTRACT_ALL is enabled. HIDE_UNDOC_CLASSES = YES # If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will # include brief member descriptions after the members that are listed in # the file and class documentation (similar to JavaDoc). # Set to NO to disable this. BRIEF_MEMBER_DESC = YES # If the REPEAT_BRIEF tag is set to YES (the default) Doxygen will prepend # the brief description of a member or function before the detailed description. # Note: if both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the # brief descriptions will be completely suppressed. REPEAT_BRIEF = YES # If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then # Doxygen will generate a detailed section even if there is only a brief # description. ALWAYS_DETAILED_SEC = NO # If the FULL_PATH_NAMES tag is set to YES then Doxygen will prepend the full # path before files name in the file list and in the header files. If set # to NO the shortest path that makes the file name unique will be used. FULL_PATH_NAMES = NO # If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag # can be used to strip a user defined part of the path. Stripping is # only done if one of the specified strings matches the left-hand part of # the path. It is allowed to use relative paths in the argument list. STRIP_FROM_PATH = # The INTERNAL_DOCS tag determines if documentation # that is typed after a \internal command is included. If the tag is set # to NO (the default) then the documentation will be excluded. # Set it to YES to include the internal documentation. INTERNAL_DOCS = NO # If the CLASS_DIAGRAMS tag is set to YES (the default) Doxygen will # generate a class diagram (in Html and LaTeX) for classes with base or # super classes. Setting the tag to NO turns the diagrams off. CLASS_DIAGRAMS = YES # If the SOURCE_BROWSER tag is set to YES then a list of source files will # be generated. Documented entities will be cross-referenced with these sources. SOURCE_BROWSER = YES # Setting the INLINE_SOURCES tag to YES will include the body # of functions and classes directly in the documentation. INLINE_SOURCES = NO # Setting the STRIP_CODE_COMMENTS tag to YES (the default) will instruct # doxygen to hide any special comment blocks from generated source code # fragments. Normal C and C++ comments will always remain visible. STRIP_CODE_COMMENTS = YES # If the CASE_SENSE_NAMES tag is set to NO then Doxygen will only generate # file names in lower case letters. If set to YES upper case letters are also # allowed. This is useful if you have classes or files whose names only differ # in case and if your file system supports case sensitive file names. Windows # users are adviced to set this option to NO. CASE_SENSE_NAMES = YES # If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter # (but less readable) file names. This can be useful is your file systems # doesn't support long names like on DOS, Mac, or CD-ROM. SHORT_NAMES = NO # If the HIDE_SCOPE_NAMES tag is set to NO (the default) then Doxygen # will show members with their full class and namespace scopes in the # documentation. If set to YES the scope will be hidden. HIDE_SCOPE_NAMES = NO # If the VERBATIM_HEADERS tag is set to YES (the default) then Doxygen # will generate a verbatim copy of the header file for each class for # which an include is specified. Set to NO to disable this. VERBATIM_HEADERS = YES # If the SHOW_INCLUDE_FILES tag is set to YES (the default) then Doxygen # will put list of the files that are included by a file in the documentation # of that file. SHOW_INCLUDE_FILES = YES # If the JAVADOC_AUTOBRIEF tag is set to YES then Doxygen # will interpret the first line (until the first dot) of a JavaDoc-style # comment as the brief description. If set to NO, the JavaDoc # comments will behave just like the Qt-style comments (thus requiring an # explict @brief command for a brief description. JAVADOC_AUTOBRIEF = YES # If the INHERIT_DOCS tag is set to YES (the default) then an undocumented # member inherits the documentation from any documented member that it # reimplements. INHERIT_DOCS = YES # If the INLINE_INFO tag is set to YES (the default) then a tag [inline] # is inserted in the documentation for inline members. INLINE_INFO = YES # If the SORT_MEMBER_DOCS tag is set to YES (the default) then doxygen # will sort the (detailed) documentation of file and class members # alphabetically by member name. If set to NO the members will appear in # declaration order. SORT_MEMBER_DOCS = YES # If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC # tag is set to YES, then doxygen will reuse the documentation of the first # member in the group (if any) for the other members of the group. By default # all members of a group must be documented explicitly. DISTRIBUTE_GROUP_DOC = NO # The TAB_SIZE tag can be used to set the number of spaces in a tab. # Doxygen uses this value to replace tabs by spaces in code fragments. TAB_SIZE = 8 # The GENERATE_TODOLIST tag can be used to enable (YES) or # disable (NO) the todo list. This list is created by putting \todo # commands in the documentation. GENERATE_TODOLIST = YES # The GENERATE_TESTLIST tag can be used to enable (YES) or # disable (NO) the test list. This list is created by putting \test # commands in the documentation. GENERATE_TESTLIST = YES # The GENERATE_BUGLIST tag can be used to enable (YES) or # disable (NO) the bug list. This list is created by putting \bug # commands in the documentation. GENERATE_BUGLIST = YES # This tag can be used to specify a number of aliases that acts # as commands in the documentation. An alias has the form "name=value". # For example adding "sideeffect=\par Side Effects:\n" will allow you to # put the command \sideeffect (or @sideeffect) in the documentation, which # will result in a user defined paragraph with heading "Side Effects:". # You can put \n's in the value part of an alias to insert newlines. ALIASES = # The ENABLED_SECTIONS tag can be used to enable conditional # documentation sections, marked by \if sectionname ... \endif. ENABLED_SECTIONS = # The MAX_INITIALIZER_LINES tag determines the maximum number of lines # the initial value of a variable or define consist of for it to appear in # the documentation. If the initializer consists of more lines than specified # here it will be hidden. Use a value of 0 to hide initializers completely. # The appearance of the initializer of individual variables and defines in the # documentation can be controlled using \showinitializer or \hideinitializer # command in the documentation regardless of this setting. MAX_INITIALIZER_LINES = 30 # Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C sources # only. Doxygen will then generate output that is more tailored for C. # For instance some of the names that are used will be different. The list # of all members will be omitted, etc. OPTIMIZE_OUTPUT_FOR_C = NO # Set the SHOW_USED_FILES tag to NO to disable the list of files generated # at the bottom of the documentation of classes and structs. If set to YES the # list will mention the files that were used to generate the documentation. SHOW_USED_FILES = YES #--------------------------------------------------------------------------- # configuration options related to warning and progress messages #--------------------------------------------------------------------------- # The QUIET tag can be used to turn on/off the messages that are generated # by doxygen. Possible values are YES and NO. If left blank NO is used. QUIET = NO # The WARNINGS tag can be used to turn on/off the warning messages that are # generated by doxygen. Possible values are YES and NO. If left blank # NO is used. WARNINGS = YES # If WARN_IF_UNDOCUMENTED is set to YES, then doxygen will generate warnings # for undocumented members. If EXTRACT_ALL is set to YES then this flag will # automatically be disabled. WARN_IF_UNDOCUMENTED = YES # The WARN_FORMAT tag determines the format of the warning messages that # doxygen can produce. The string should contain the $file, $line, and $text # tags, which will be replaced by the file and line number from which the # warning originated and the warning text. WARN_FORMAT = # The WARN_LOGFILE tag can be used to specify a file to which warning # and error messages should be written. If left blank the output is written # to stderr. WARN_LOGFILE = #--------------------------------------------------------------------------- # configuration options related to the input files #--------------------------------------------------------------------------- # The INPUT tag can be used to specify the files and/or directories that contain # documented source files. You may enter file names like "myfile.cpp" or # directories like "/usr/src/myproject". Separate the files or directories # with spaces. INPUT = ../../src2 # If the value of the INPUT tag contains directories, you can use the # FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp # and *.h) to filter out the source-files in the directories. If left # blank all files are included. FILE_PATTERNS = *.cpp # The RECURSIVE tag can be used to turn specify whether or not subdirectories # should be searched for input files as well. Possible values are YES and NO. # If left blank NO is used. RECURSIVE = YES # The EXCLUDE tag can be used to specify files and/or directories that should # excluded from the INPUT source files. This way you can easily exclude a # subdirectory from a directory tree whose root is specified with the INPUT tag. EXCLUDE = # If the value of the INPUT tag contains directories, you can use the # EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude # certain files from those directories. EXCLUDE_PATTERNS = # The EXAMPLE_PATH tag can be used to specify one or more files or # directories that contain example code fragments that are included (see # the \include command). EXAMPLE_PATH = # If the value of the EXAMPLE_PATH tag contains directories, you can use the # EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp # and *.h) to filter out the source-files in the directories. If left # blank all files are included. EXAMPLE_PATTERNS = # The IMAGE_PATH tag can be used to specify one or more files or # directories that contain image that are included in the documentation (see # the \image command). IMAGE_PATH = # The INPUT_FILTER tag can be used to specify a program that doxygen should # invoke to filter for each input file. Doxygen will invoke the filter program # by executing (via popen()) the command <filter> <input-file>, where <filter> # is the value of the INPUT_FILTER tag, and <input-file> is the name of an # input file. Doxygen will then use the output that the filter program writes # to standard output. INPUT_FILTER = # If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using # INPUT_FILTER) will be used to filter the input files when producing source # files to browse. FILTER_SOURCE_FILES = NO #--------------------------------------------------------------------------- # configuration options related to the alphabetical class index #--------------------------------------------------------------------------- # If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index # of all compounds will be generated. Enable this if the project # contains a lot of classes, structs, unions or interfaces. ALPHABETICAL_INDEX = YES # If the alphabetical index is enabled (see ALPHABETICAL_INDEX) then # the COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns # in which this list will be split (can be a number in the range [1..20]) COLS_IN_ALPHA_INDEX = 5 # In case all classes in a project start with a common prefix, all # classes will be put under the same header in the alphabetical index. # The IGNORE_PREFIX tag can be used to specify one or more prefixes that # should be ignored while generating the index headers. IGNORE_PREFIX = #--------------------------------------------------------------------------- # configuration options related to the HTML output #--------------------------------------------------------------------------- # If the GENERATE_HTML tag is set to YES (the default) Doxygen will # generate HTML output. GENERATE_HTML = NO # The HTML_OUTPUT tag is used to specify where the HTML docs will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `html' will be used as the default path. HTML_OUTPUT = # The HTML_HEADER tag can be used to specify a personal HTML header for # each generated HTML page. If it is left blank doxygen will generate a # standard header. HTML_HEADER = # The HTML_FOOTER tag can be used to specify a personal HTML footer for # each generated HTML page. If it is left blank doxygen will generate a # standard footer. HTML_FOOTER = # The HTML_STYLESHEET tag can be used to specify a user defined cascading # style sheet that is used by each HTML page. It can be used to # fine-tune the look of the HTML output. If the tag is left blank doxygen # will generate a default style sheet HTML_STYLESHEET = # If the HTML_ALIGN_MEMBERS tag is set to YES, the members of classes, # files or namespaces will be aligned in HTML using tables. If set to # NO a bullet list will be used. HTML_ALIGN_MEMBERS = YES # If the GENERATE_HTMLHELP tag is set to YES, additional index files # will be generated that can be used as input for tools like the # Microsoft HTML help workshop to generate a compressed HTML help file (.chm) # of the generated HTML documentation. GENERATE_HTMLHELP = NO # If the GENERATE_HTMLHELP tag is set to YES, the GENERATE_CHI flag # controls if a separate .chi index file is generated (YES) or that # it should be included in the master .chm file (NO). GENERATE_CHI = NO # If the GENERATE_HTMLHELP tag is set to YES, the BINARY_TOC flag # controls whether a binary table of contents is generated (YES) or a # normal table of contents (NO) in the .chm file. BINARY_TOC = NO # The TOC_EXPAND flag can be set to YES to add extra items for group members # to the contents of the Html help documentation and to the tree view. TOC_EXPAND = YES # The DISABLE_INDEX tag can be used to turn on/off the condensed index at # top of each HTML page. The value NO (the default) enables the index and # the value YES disables it. DISABLE_INDEX = NO # This tag can be used to set the number of enum values (range [1..20]) # that doxygen will group on one line in the generated HTML documentation. ENUM_VALUES_PER_LINE = 4 # If the GENERATE_TREEVIEW tag is set to YES, a side panel will be # generated containing a tree-like index structure (just like the one that # is generated for HTML Help). For this to work a browser that supports # JavaScript and frames is required (for instance Netscape 4.0+ # or Internet explorer 4.0+). GENERATE_TREEVIEW = YES # If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be # used to set the initial width (in pixels) of the frame in which the tree # is shown. TREEVIEW_WIDTH = 250 #--------------------------------------------------------------------------- # configuration options related to the LaTeX output #--------------------------------------------------------------------------- # If the GENERATE_LATEX tag is set to YES (the default) Doxygen will # generate Latex output. GENERATE_LATEX = YES # The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `latex' will be used as the default path. LATEX_OUTPUT = # If the COMPACT_LATEX tag is set to YES Doxygen generates more compact # LaTeX documents. This may be useful for small projects and may help to # save some trees in general. COMPACT_LATEX = NO # The PAPER_TYPE tag can be used to set the paper type that is used # by the printer. Possible values are: a4, a4wide, letter, legal and # executive. If left blank a4wide will be used. PAPER_TYPE = a4wide # The EXTRA_PACKAGES tag can be to specify one or more names of LaTeX # packages that should be included in the LaTeX output. EXTRA_PACKAGES = # The LATEX_HEADER tag can be used to specify a personal LaTeX header for # the generated latex document. The header should contain everything until # the first chapter. If it is left blank doxygen will generate a # standard header. Notice: only use this tag if you know what you are doing! LATEX_HEADER = # If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated # is prepared for conversion to pdf (using ps2pdf). The pdf file will # contain links (just like the HTML output) instead of page references # This makes the output suitable for online browsing using a pdf viewer. PDF_HYPERLINKS = YES # If the USE_PDFLATEX tag is set to YES, pdflatex will be used instead of # plain latex in the generated Makefile. Set this option to YES to get a # higher quality PDF documentation. USE_PDFLATEX = YES # If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \\batchmode. # command to the generated LaTeX files. This will instruct LaTeX to keep # running if errors occur, instead of asking the user for help. # This option is also used when generating formulas in HTML. LATEX_BATCHMODE = NO #--------------------------------------------------------------------------- # configuration options related to the RTF output #--------------------------------------------------------------------------- # If the GENERATE_RTF tag is set to YES Doxygen will generate RTF output # The RTF output is optimised for Word 97 and may not look very pretty with # other RTF readers or editors. GENERATE_RTF = NO # The RTF_OUTPUT tag is used to specify where the RTF docs will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `rtf' will be used as the default path. RTF_OUTPUT = # If the COMPACT_RTF tag is set to YES Doxygen generates more compact # RTF documents. This may be useful for small projects and may help to # save some trees in general. COMPACT_RTF = NO # If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated # will contain hyperlink fields. The RTF file will # contain links (just like the HTML output) instead of page references. # This makes the output suitable for online browsing using WORD or other # programs which support those fields. # Note: wordpad (write) and others do not support links. RTF_HYPERLINKS = NO # Load stylesheet definitions from file. Syntax is similar to doxygen's # config file, i.e. a series of assigments. You only have to provide # replacements, missing definitions are set to their default value. RTF_STYLESHEET_FILE = # Set optional variables used in the generation of an rtf document. # Syntax is similar to doxygen's config file. RTF_EXTENSIONS_FILE = #--------------------------------------------------------------------------- # configuration options related to the man page output #--------------------------------------------------------------------------- # If the GENERATE_MAN tag is set to YES (the default) Doxygen will # generate man pages GENERATE_MAN = NO # The MAN_OUTPUT tag is used to specify where the man pages will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `man' will be used as the default path. MAN_OUTPUT = # The MAN_EXTENSION tag determines the extension that is added to # the generated man pages (default is the subroutine's section .3) MAN_EXTENSION = # If the MAN_LINKS tag is set to YES and Doxygen generates man output, # then it will generate one additional man file for each entity # documented in the real man page(s). These additional files # only source the real man page, but without them the man command # would be unable to find the correct page. The default is NO. MAN_LINKS = NO #--------------------------------------------------------------------------- # configuration options related to the XML output #--------------------------------------------------------------------------- # If the GENERATE_XML tag is set to YES Doxygen will # generate an XML file that captures the structure of # the code including all documentation. Note that this # feature is still experimental and incomplete at the # moment. GENERATE_XML = NO #--------------------------------------------------------------------------- # Configuration options related to the preprocessor #--------------------------------------------------------------------------- # If the ENABLE_PREPROCESSING tag is set to YES (the default) Doxygen will # evaluate all C-preprocessor directives found in the sources and include # files. ENABLE_PREPROCESSING = YES # If the MACRO_EXPANSION tag is set to YES Doxygen will expand all macro # names in the source code. If set to NO (the default) only conditional # compilation will be performed. Macro expansion can be done in a controlled # way by setting EXPAND_ONLY_PREDEF to YES. MACRO_EXPANSION = NO # If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES # then the macro expansion is limited to the macros specified with the # PREDEFINED and EXPAND_AS_PREDEFINED tags. EXPAND_ONLY_PREDEF = NO # If the SEARCH_INCLUDES tag is set to YES (the default) the includes files # in the INCLUDE_PATH (see below) will be search if a #include is found. SEARCH_INCLUDES = YES # The INCLUDE_PATH tag can be used to specify one or more directories that # contain include files that are not input files but should be processed by # the preprocessor. INCLUDE_PATH = # You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard # patterns (like *.h and *.hpp) to filter out the header-files in the # directories. If left blank, the patterns specified with FILE_PATTERNS will # be used. INCLUDE_FILE_PATTERNS = # The PREDEFINED tag can be used to specify one or more macro names that # are defined before the preprocessor is started (similar to the -D option of # gcc). The argument of the tag is a list of macros of the form: name # or name=definition (no spaces). If the definition and the = are # omitted =1 is assumed. PREDEFINED = # If the MACRO_EXPANSION and EXPAND_PREDEF_ONLY tags are set to YES then # this tag can be used to specify a list of macro names that should be expanded. # The macro definition that is found in the sources will be used. # Use the PREDEFINED tag if you want to use a different macro definition. EXPAND_AS_DEFINED = #--------------------------------------------------------------------------- # Configuration::addtions related to external references #--------------------------------------------------------------------------- # The TAGFILES tag can be used to specify one or more tagfiles. TAGFILES = # When a file name is specified after GENERATE_TAGFILE, doxygen will create # a tag file that is based on the input files it reads. GENERATE_TAGFILE = # If the ALLEXTERNALS tag is set to YES all external classes will be listed # in the class index. If set to NO only the inherited external classes # will be listed. ALLEXTERNALS = NO # The PERL_PATH should be the absolute path and name of the perl script # interpreter (i.e. the result of `which perl'). PERL_PATH = #--------------------------------------------------------------------------- # Configuration options related to the dot tool #-----------------------------... [truncated message content] |
From: Marek P. <ma...@us...> - 2001-09-25 18:57:59
|
Update of /cvsroot/javaprofiler/library/src/profiler In directory usw-pr-cvs1:/tmp/cvs-serv17653/src/profiler Modified Files: profiler.cpp Log Message: changes in doc Index: profiler.cpp =================================================================== RCS file: /cvsroot/javaprofiler/library/src/profiler/profiler.cpp,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** profiler.cpp 2001/09/02 20:14:22 1.2 --- profiler.cpp 2001/09/25 18:57:56 1.3 *************** *** 32,36 **** * Lukas Petru and Marek Przeczek. */ - - - --- 32,33 ---- |
From: Marek P. <ma...@us...> - 2001-09-25 18:57:59
|
Update of /cvsroot/javaprofiler/library/doc/interface In directory usw-pr-cvs1:/tmp/cvs-serv17653/doc/interface Modified Files: Makefile.rules Added Files: doc_html.conf doc_latex.conf Removed Files: doc.conf Log Message: changes in doc --- NEW FILE: doc_html.conf --- # Doxyfile 1.2.10 # This file describes the settings to be used by the documentation system # doxygen (www.doxygen.org) for a project # # All text after a hash (#) is considered a comment and will be ignored # The format is: # TAG = value [value, ...] # For lists items can also be appended using: # TAG += value [value, ...] # Values that contain spaces should be placed between quotes (" ") #--------------------------------------------------------------------------- # General configuration options #--------------------------------------------------------------------------- # The PROJECT_NAME tag is a single word (or a sequence of words surrounded # by quotes) that should identify the project. PROJECT_NAME = "Java Profiler Dynamic Library Interface" # The PROJECT_NUMBER tag can be used to enter a project or revision number. # This could be handy for archiving the generated documentation or # if some version control system is used. PROJECT_NUMBER = # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) # base path where the generated documentation will be put. # If a relative path is entered, it will be relative to the location # where doxygen was started. If left blank the current directory will be used. OUTPUT_DIRECTORY = # The OUTPUT_LANGUAGE tag is used to specify the language in which all # documentation generated by doxygen is written. Doxygen will use this # information to generate all constant output in the proper language. # The default language is English, other supported languages are: # Brazilian, Chinese, Croatian, Czech, Danish, Dutch, Finnish, French, # German, Hungarian, Italian, Japanese, Korean, Norwegian, Polish, # Portuguese, Romanian, Russian, Slovak, Slovene, Spanish and Swedish. OUTPUT_LANGUAGE = English # If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in # documentation are documented, even if no documentation was available. # Private class members and static file members will be hidden unless # the EXTRACT_PRIVATE and EXTRACT_STATIC tags are set to YES EXTRACT_ALL = NO # If the EXTRACT_PRIVATE tag is set to YES all private members of a class # will be included in the documentation. EXTRACT_PRIVATE = YES # If the EXTRACT_STATIC tag is set to YES all static members of a file # will be included in the documentation. EXTRACT_STATIC = YES # If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all # undocumented members of documented classes, files or namespaces. # If set to NO (the default) these members will be included in the # various overviews, but no documentation section is generated. # This option has no effect if EXTRACT_ALL is enabled. HIDE_UNDOC_MEMBERS = YES # If the HIDE_UNDOC_CLASSES tag is set to YES, Doxygen will hide all # undocumented classes that are normally visible in the class hierarchy. # If set to NO (the default) these class will be included in the various # overviews. This option has no effect if EXTRACT_ALL is enabled. HIDE_UNDOC_CLASSES = YES # If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will # include brief member descriptions after the members that are listed in # the file and class documentation (similar to JavaDoc). # Set to NO to disable this. BRIEF_MEMBER_DESC = YES # If the REPEAT_BRIEF tag is set to YES (the default) Doxygen will prepend # the brief description of a member or function before the detailed description. # Note: if both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the # brief descriptions will be completely suppressed. REPEAT_BRIEF = YES # If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then # Doxygen will generate a detailed section even if there is only a brief # description. ALWAYS_DETAILED_SEC = NO # If the FULL_PATH_NAMES tag is set to YES then Doxygen will prepend the full # path before files name in the file list and in the header files. If set # to NO the shortest path that makes the file name unique will be used. FULL_PATH_NAMES = NO # If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag # can be used to strip a user defined part of the path. Stripping is # only done if one of the specified strings matches the left-hand part of # the path. It is allowed to use relative paths in the argument list. STRIP_FROM_PATH = # The INTERNAL_DOCS tag determines if documentation # that is typed after a \internal command is included. If the tag is set # to NO (the default) then the documentation will be excluded. # Set it to YES to include the internal documentation. INTERNAL_DOCS = NO # If the CLASS_DIAGRAMS tag is set to YES (the default) Doxygen will # generate a class diagram (in Html and LaTeX) for classes with base or # super classes. Setting the tag to NO turns the diagrams off. CLASS_DIAGRAMS = YES # If the SOURCE_BROWSER tag is set to YES then a list of source files will # be generated. Documented entities will be cross-referenced with these sources. SOURCE_BROWSER = YES # Setting the INLINE_SOURCES tag to YES will include the body # of functions and classes directly in the documentation. INLINE_SOURCES = NO # Setting the STRIP_CODE_COMMENTS tag to YES (the default) will instruct # doxygen to hide any special comment blocks from generated source code # fragments. Normal C and C++ comments will always remain visible. STRIP_CODE_COMMENTS = YES # If the CASE_SENSE_NAMES tag is set to NO then Doxygen will only generate # file names in lower case letters. If set to YES upper case letters are also # allowed. This is useful if you have classes or files whose names only differ # in case and if your file system supports case sensitive file names. Windows # users are adviced to set this option to NO. CASE_SENSE_NAMES = YES # If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter # (but less readable) file names. This can be useful is your file systems # doesn't support long names like on DOS, Mac, or CD-ROM. SHORT_NAMES = NO # If the HIDE_SCOPE_NAMES tag is set to NO (the default) then Doxygen # will show members with their full class and namespace scopes in the # documentation. If set to YES the scope will be hidden. HIDE_SCOPE_NAMES = NO # If the VERBATIM_HEADERS tag is set to YES (the default) then Doxygen # will generate a verbatim copy of the header file for each class for # which an include is specified. Set to NO to disable this. VERBATIM_HEADERS = YES # If the SHOW_INCLUDE_FILES tag is set to YES (the default) then Doxygen # will put list of the files that are included by a file in the documentation # of that file. SHOW_INCLUDE_FILES = YES # If the JAVADOC_AUTOBRIEF tag is set to YES then Doxygen # will interpret the first line (until the first dot) of a JavaDoc-style # comment as the brief description. If set to NO, the JavaDoc # comments will behave just like the Qt-style comments (thus requiring an # explict @brief command for a brief description. JAVADOC_AUTOBRIEF = YES # If the INHERIT_DOCS tag is set to YES (the default) then an undocumented # member inherits the documentation from any documented member that it # reimplements. INHERIT_DOCS = YES # If the INLINE_INFO tag is set to YES (the default) then a tag [inline] # is inserted in the documentation for inline members. INLINE_INFO = NO # If the SORT_MEMBER_DOCS tag is set to YES (the default) then doxygen # will sort the (detailed) documentation of file and class members # alphabetically by member name. If set to NO the members will appear in # declaration order. SORT_MEMBER_DOCS = YES # If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC # tag is set to YES, then doxygen will reuse the documentation of the first # member in the group (if any) for the other members of the group. By default # all members of a group must be documented explicitly. DISTRIBUTE_GROUP_DOC = NO # The TAB_SIZE tag can be used to set the number of spaces in a tab. # Doxygen uses this value to replace tabs by spaces in code fragments. TAB_SIZE = 8 # The GENERATE_TODOLIST tag can be used to enable (YES) or # disable (NO) the todo list. This list is created by putting \todo # commands in the documentation. GENERATE_TODOLIST = YES # The GENERATE_TESTLIST tag can be used to enable (YES) or # disable (NO) the test list. This list is created by putting \test # commands in the documentation. GENERATE_TESTLIST = YES # The GENERATE_BUGLIST tag can be used to enable (YES) or # disable (NO) the bug list. This list is created by putting \bug # commands in the documentation. GENERATE_BUGLIST = YES # This tag can be used to specify a number of aliases that acts # as commands in the documentation. An alias has the form "name=value". # For example adding "sideeffect=\par Side Effects:\n" will allow you to # put the command \sideeffect (or @sideeffect) in the documentation, which # will result in a user defined paragraph with heading "Side Effects:". # You can put \n's in the value part of an alias to insert newlines. ALIASES = # The ENABLED_SECTIONS tag can be used to enable conditional # documentation sections, marked by \if sectionname ... \endif. ENABLED_SECTIONS = # The MAX_INITIALIZER_LINES tag determines the maximum number of lines # the initial value of a variable or define consist of for it to appear in # the documentation. If the initializer consists of more lines than specified # here it will be hidden. Use a value of 0 to hide initializers completely. # The appearance of the initializer of individual variables and defines in the # documentation can be controlled using \showinitializer or \hideinitializer # command in the documentation regardless of this setting. MAX_INITIALIZER_LINES = 30 # Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C sources # only. Doxygen will then generate output that is more tailored for C. # For instance some of the names that are used will be different. The list # of all members will be omitted, etc. OPTIMIZE_OUTPUT_FOR_C = NO # Set the SHOW_USED_FILES tag to NO to disable the list of files generated # at the bottom of the documentation of classes and structs. If set to YES the # list will mention the files that were used to generate the documentation. SHOW_USED_FILES = YES #--------------------------------------------------------------------------- # configuration options related to warning and progress messages #--------------------------------------------------------------------------- # The QUIET tag can be used to turn on/off the messages that are generated # by doxygen. Possible values are YES and NO. If left blank NO is used. QUIET = NO # The WARNINGS tag can be used to turn on/off the warning messages that are # generated by doxygen. Possible values are YES and NO. If left blank # NO is used. WARNINGS = YES # If WARN_IF_UNDOCUMENTED is set to YES, then doxygen will generate warnings # for undocumented members. If EXTRACT_ALL is set to YES then this flag will # automatically be disabled. WARN_IF_UNDOCUMENTED = YES # The WARN_FORMAT tag determines the format of the warning messages that # doxygen can produce. The string should contain the $file, $line, and $text # tags, which will be replaced by the file and line number from which the # warning originated and the warning text. WARN_FORMAT = # The WARN_LOGFILE tag can be used to specify a file to which warning # and error messages should be written. If left blank the output is written # to stderr. WARN_LOGFILE = #--------------------------------------------------------------------------- # configuration options related to the input files #--------------------------------------------------------------------------- # The INPUT tag can be used to specify the files and/or directories that contain # documented source files. You may enter file names like "myfile.cpp" or # directories like "/usr/src/myproject". Separate the files or directories # with spaces. INPUT = ../../src2 # If the value of the INPUT tag contains directories, you can use the # FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp # and *.h) to filter out the source-files in the directories. If left # blank all files are included. FILE_PATTERNS = *.java # The RECURSIVE tag can be used to turn specify whether or not subdirectories # should be searched for input files as well. Possible values are YES and NO. # If left blank NO is used. RECURSIVE = YES # The EXCLUDE tag can be used to specify files and/or directories that should # excluded from the INPUT source files. This way you can easily exclude a # subdirectory from a directory tree whose root is specified with the INPUT tag. EXCLUDE = # If the value of the INPUT tag contains directories, you can use the # EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude # certain files from those directories. EXCLUDE_PATTERNS = # The EXAMPLE_PATH tag can be used to specify one or more files or # directories that contain example code fragments that are included (see # the \include command). EXAMPLE_PATH = # If the value of the EXAMPLE_PATH tag contains directories, you can use the # EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp # and *.h) to filter out the source-files in the directories. If left # blank all files are included. EXAMPLE_PATTERNS = # The IMAGE_PATH tag can be used to specify one or more files or # directories that contain image that are included in the documentation (see # the \image command). IMAGE_PATH = # The INPUT_FILTER tag can be used to specify a program that doxygen should # invoke to filter for each input file. Doxygen will invoke the filter program # by executing (via popen()) the command <filter> <input-file>, where <filter> # is the value of the INPUT_FILTER tag, and <input-file> is the name of an # input file. Doxygen will then use the output that the filter program writes # to standard output. INPUT_FILTER = # If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using # INPUT_FILTER) will be used to filter the input files when producing source # files to browse. FILTER_SOURCE_FILES = NO #--------------------------------------------------------------------------- # configuration options related to the alphabetical class index #--------------------------------------------------------------------------- # If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index # of all compounds will be generated. Enable this if the project # contains a lot of classes, structs, unions or interfaces. ALPHABETICAL_INDEX = YES # If the alphabetical index is enabled (see ALPHABETICAL_INDEX) then # the COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns # in which this list will be split (can be a number in the range [1..20]) COLS_IN_ALPHA_INDEX = 5 # In case all classes in a project start with a common prefix, all # classes will be put under the same header in the alphabetical index. # The IGNORE_PREFIX tag can be used to specify one or more prefixes that # should be ignored while generating the index headers. IGNORE_PREFIX = #--------------------------------------------------------------------------- # configuration options related to the HTML output #--------------------------------------------------------------------------- # If the GENERATE_HTML tag is set to YES (the default) Doxygen will # generate HTML output. GENERATE_HTML = YES # The HTML_OUTPUT tag is used to specify where the HTML docs will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `html' will be used as the default path. HTML_OUTPUT = # The HTML_HEADER tag can be used to specify a personal HTML header for # each generated HTML page. If it is left blank doxygen will generate a # standard header. HTML_HEADER = # The HTML_FOOTER tag can be used to specify a personal HTML footer for # each generated HTML page. If it is left blank doxygen will generate a # standard footer. HTML_FOOTER = # The HTML_STYLESHEET tag can be used to specify a user defined cascading # style sheet that is used by each HTML page. It can be used to # fine-tune the look of the HTML output. If the tag is left blank doxygen # will generate a default style sheet HTML_STYLESHEET = # If the HTML_ALIGN_MEMBERS tag is set to YES, the members of classes, # files or namespaces will be aligned in HTML using tables. If set to # NO a bullet list will be used. HTML_ALIGN_MEMBERS = YES # If the GENERATE_HTMLHELP tag is set to YES, additional index files # will be generated that can be used as input for tools like the # Microsoft HTML help workshop to generate a compressed HTML help file (.chm) # of the generated HTML documentation. GENERATE_HTMLHELP = NO # If the GENERATE_HTMLHELP tag is set to YES, the GENERATE_CHI flag # controls if a separate .chi index file is generated (YES) or that # it should be included in the master .chm file (NO). GENERATE_CHI = NO # If the GENERATE_HTMLHELP tag is set to YES, the BINARY_TOC flag # controls whether a binary table of contents is generated (YES) or a # normal table of contents (NO) in the .chm file. BINARY_TOC = NO # The TOC_EXPAND flag can be set to YES to add extra items for group members # to the contents of the Html help documentation and to the tree view. TOC_EXPAND = YES # The DISABLE_INDEX tag can be used to turn on/off the condensed index at # top of each HTML page. The value NO (the default) enables the index and # the value YES disables it. DISABLE_INDEX = NO # This tag can be used to set the number of enum values (range [1..20]) # that doxygen will group on one line in the generated HTML documentation. ENUM_VALUES_PER_LINE = 4 # If the GENERATE_TREEVIEW tag is set to YES, a side panel will be # generated containing a tree-like index structure (just like the one that # is generated for HTML Help). For this to work a browser that supports # JavaScript and frames is required (for instance Netscape 4.0+ # or Internet explorer 4.0+). GENERATE_TREEVIEW = YES # If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be # used to set the initial width (in pixels) of the frame in which the tree # is shown. TREEVIEW_WIDTH = 250 #--------------------------------------------------------------------------- # configuration options related to the LaTeX output #--------------------------------------------------------------------------- # If the GENERATE_LATEX tag is set to YES (the default) Doxygen will # generate Latex output. GENERATE_LATEX = NO # The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `latex' will be used as the default path. LATEX_OUTPUT = # If the COMPACT_LATEX tag is set to YES Doxygen generates more compact # LaTeX documents. This may be useful for small projects and may help to # save some trees in general. COMPACT_LATEX = NO # The PAPER_TYPE tag can be used to set the paper type that is used # by the printer. Possible values are: a4, a4wide, letter, legal and # executive. If left blank a4wide will be used. PAPER_TYPE = a4wide # The EXTRA_PACKAGES tag can be to specify one or more names of LaTeX # packages that should be included in the LaTeX output. EXTRA_PACKAGES = # The LATEX_HEADER tag can be used to specify a personal LaTeX header for # the generated latex document. The header should contain everything until # the first chapter. If it is left blank doxygen will generate a # standard header. Notice: only use this tag if you know what you are doing! LATEX_HEADER = # If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated # is prepared for conversion to pdf (using ps2pdf). The pdf file will # contain links (just like the HTML output) instead of page references # This makes the output suitable for online browsing using a pdf viewer. PDF_HYPERLINKS = YES # If the USE_PDFLATEX tag is set to YES, pdflatex will be used instead of # plain latex in the generated Makefile. Set this option to YES to get a # higher quality PDF documentation. USE_PDFLATEX = YES # If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \\batchmode. # command to the generated LaTeX files. This will instruct LaTeX to keep # running if errors occur, instead of asking the user for help. # This option is also used when generating formulas in HTML. LATEX_BATCHMODE = NO #--------------------------------------------------------------------------- # configuration options related to the RTF output #--------------------------------------------------------------------------- # If the GENERATE_RTF tag is set to YES Doxygen will generate RTF output # The RTF output is optimised for Word 97 and may not look very pretty with # other RTF readers or editors. GENERATE_RTF = NO # The RTF_OUTPUT tag is used to specify where the RTF docs will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `rtf' will be used as the default path. RTF_OUTPUT = # If the COMPACT_RTF tag is set to YES Doxygen generates more compact # RTF documents. This may be useful for small projects and may help to # save some trees in general. COMPACT_RTF = NO # If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated # will contain hyperlink fields. The RTF file will # contain links (just like the HTML output) instead of page references. # This makes the output suitable for online browsing using WORD or other # programs which support those fields. # Note: wordpad (write) and others do not support links. RTF_HYPERLINKS = NO # Load stylesheet definitions from file. Syntax is similar to doxygen's # config file, i.e. a series of assigments. You only have to provide # replacements, missing definitions are set to their default value. RTF_STYLESHEET_FILE = # Set optional variables used in the generation of an rtf document. # Syntax is similar to doxygen's config file. RTF_EXTENSIONS_FILE = #--------------------------------------------------------------------------- # configuration options related to the man page output #--------------------------------------------------------------------------- # If the GENERATE_MAN tag is set to YES (the default) Doxygen will # generate man pages GENERATE_MAN = NO # The MAN_OUTPUT tag is used to specify where the man pages will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `man' will be used as the default path. MAN_OUTPUT = # The MAN_EXTENSION tag determines the extension that is added to # the generated man pages (default is the subroutine's section .3) MAN_EXTENSION = # If the MAN_LINKS tag is set to YES and Doxygen generates man output, # then it will generate one additional man file for each entity # documented in the real man page(s). These additional files # only source the real man page, but without them the man command # would be unable to find the correct page. The default is NO. MAN_LINKS = NO #--------------------------------------------------------------------------- # configuration options related to the XML output #--------------------------------------------------------------------------- # If the GENERATE_XML tag is set to YES Doxygen will # generate an XML file that captures the structure of # the code including all documentation. Note that this # feature is still experimental and incomplete at the # moment. GENERATE_XML = NO #--------------------------------------------------------------------------- # Configuration options related to the preprocessor #--------------------------------------------------------------------------- # If the ENABLE_PREPROCESSING tag is set to YES (the default) Doxygen will # evaluate all C-preprocessor directives found in the sources and include # files. ENABLE_PREPROCESSING = YES # If the MACRO_EXPANSION tag is set to YES Doxygen will expand all macro # names in the source code. If set to NO (the default) only conditional # compilation will be performed. Macro expansion can be done in a controlled # way by setting EXPAND_ONLY_PREDEF to YES. MACRO_EXPANSION = NO # If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES # then the macro expansion is limited to the macros specified with the # PREDEFINED and EXPAND_AS_PREDEFINED tags. EXPAND_ONLY_PREDEF = NO # If the SEARCH_INCLUDES tag is set to YES (the default) the includes files # in the INCLUDE_PATH (see below) will be search if a #include is found. SEARCH_INCLUDES = YES # The INCLUDE_PATH tag can be used to specify one or more directories that # contain include files that are not input files but should be processed by # the preprocessor. INCLUDE_PATH = # You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard # patterns (like *.h and *.hpp) to filter out the header-files in the # directories. If left blank, the patterns specified with FILE_PATTERNS will # be used. INCLUDE_FILE_PATTERNS = # The PREDEFINED tag can be used to specify one or more macro names that # are defined before the preprocessor is started (similar to the -D option of # gcc). The argument of the tag is a list of macros of the form: name # or name=definition (no spaces). If the definition and the = are # omitted =1 is assumed. PREDEFINED = # If the MACRO_EXPANSION and EXPAND_PREDEF_ONLY tags are set to YES then # this tag can be used to specify a list of macro names that should be expanded. # The macro definition that is found in the sources will be used. # Use the PREDEFINED tag if you want to use a different macro definition. EXPAND_AS_DEFINED = #--------------------------------------------------------------------------- # Configuration::addtions related to external references #--------------------------------------------------------------------------- # The TAGFILES tag can be used to specify one or more tagfiles. TAGFILES = # When a file name is specified after GENERATE_TAGFILE, doxygen will create # a tag file that is based on the input files it reads. GENERATE_TAGFILE = # If the ALLEXTERNALS tag is set to YES all external classes will be listed # in the class index. If set to NO only the inherited external classes # will be listed. ALLEXTERNALS = NO # The PERL_PATH should be the absolute path and name of the perl script # interpreter (i.e. the result of `which perl'). PERL_PATH = #--------------------------------------------------------------------------- # Configuration options related to the dot tool #--------------------------------------------------------------------------- # If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is # available from the path. This tool is part of Graphviz, a graph visualization # toolkit from AT&T and Lucent Bell Labs. The other options in this section # have no effect if this option is set to NO (the default) HAVE_DOT = YES # If the CLASS_GRAPH and HAVE_DOT tags are set to YES then doxygen # will generate a graph for each documented class showing the direct and # indirect inheritance relations. Setting this tag to YES will force the # the CLASS_DIAGRAMS tag to NO. CLASS_GRAPH = YES # If the COLLABORATION_GRAPH and HAVE_DOT tags are set to YES then doxygen # will generate a graph for each documented class showing the direct and # indirect implementation dependencies (inheritance, containment, and # class references variables) of the class with other documented classes. COLLABORATION_GRAPH = YES # If set to YES, the inheritance and collaboration graphs will show the # relations between templates and their instances. TEMPLATE_RELATIONS = YES # If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDE_GRAPH, and HAVE_DOT # tags are set to YES then doxygen will generate a graph for each documented # file showing the direct and indirect include dependencies of the file with # other documented files. INCLUDE_GRAPH = YES # If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDED_BY_GRAPH, and # HAVE_DOT tags are set to YES then doxygen will generate a graph for each # documented header file showing the documented files that directly or # indirectly include this file. INCLUDED_BY_GRAPH = YES # If the GRAPHICAL_HIERARCHY and HAVE_DOT tags are set to YES then doxygen # will graphical hierarchy of all classes instead of a textual one. GRAPHICAL_HIERARCHY = YES # The tag DOT_PATH can be used to specify the path where the dot tool can be # found. If left blank, it is assumed the dot tool can be found on the path. DOT_PATH = # The DOTFILE_DIRS tag can be used to specify one or more directories that # contain dot files that are included in the documentation (see the # \dotfile command). DOTFILE_DIRS = # The MAX_DOT_GRAPH_WIDTH tag can be used to set the maximum allowed width # (in pixels) of the graphs generated by dot. If a graph becomes larger than # this value, doxygen will try to truncate the graph, so that it fits within # the specified constraint. Beware that most browsers cannot cope with very # large images. MAX_DOT_GRAPH_WIDTH = 1024 # The MAX_DOT_GRAPH_HEIGHT tag can be used to set the maximum allows height # (in pixels) of the graphs generated by dot. If a graph becomes larger than # this value, doxygen will try to truncate the graph, so that it fits within # the specified constraint. Beware that most browsers cannot cope with very # large images. MAX_DOT_GRAPH_HEIGHT = 1024 # If the GENERATE_LEGEND tag is set to YES (the default) Doxygen will # generate a legend page explaining the meaning of the various boxes and # arrows in the dot generated graphs. GENERATE_LEGEND = YES # If the DOT_CLEANUP tag is set to YES (the default) Doxygen will # remove the intermedate dot files that are used to generate # the various graphs. DOT_CLEANUP = YES #--------------------------------------------------------------------------- # Configuration::addtions related to the search engine #--------------------------------------------------------------------------- # The SEARCHENGINE tag specifies whether or not a search engine should be # used. If set to NO the values of all tags below this one will be ignored. SEARCHENGINE = NO # The CGI_NAME tag should be the name of the CGI script that # starts the search engine (doxysearch) with the correct parameters. # A script with this name will be generated by doxygen. CGI_NAME = # The CGI_URL tag should be the absolute URL to the directory where the # cgi binaries are located. See the documentation of your http daemon for # details. CGI_URL = # The DOC_URL tag should be the absolute URL to the directory where the # documentation is located. If left blank the absolute path to the # documentation, with file:// prepended to it, will be used. DOC_URL = # The DOC_ABSPATH tag should be the absolute path to the directory where the # documentation is located. If left blank the directory on the local machine # will be used. DOC_ABSPATH = # The BIN_ABSPATH tag must point to the directory where the doxysearch binary # is installed. BIN_ABSPATH = # The EXT_DOC_PATHS tag can be used to specify one or more paths to # documentation generated for other projects. This allows doxysearch to search # the documentation for these projects as well. EXT_DOC_PATHS = --- NEW FILE: doc_latex.conf --- # Doxyfile 1.2.10 # This file describes the settings to be used by the documentation system # doxygen (www.doxygen.org) for a project # # All text after a hash (#) is considered a comment and will be ignored # The format is: # TAG = value [value, ...] # For lists items can also be appended using: # TAG += value [value, ...] # Values that contain spaces should be placed between quotes (" ") #--------------------------------------------------------------------------- # General configuration options #--------------------------------------------------------------------------- # The PROJECT_NAME tag is a single word (or a sequence of words surrounded # by quotes) that should identify the project. PROJECT_NAME = "Java Profiler Dynamic Library Interface" # The PROJECT_NUMBER tag can be used to enter a project or revision number. # This could be handy for archiving the generated documentation or # if some version control system is used. PROJECT_NUMBER = # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) # base path where the generated documentation will be put. # If a relative path is entered, it will be relative to the location # where doxygen was started. If left blank the current directory will be used. OUTPUT_DIRECTORY = # The OUTPUT_LANGUAGE tag is used to specify the language in which all # documentation generated by doxygen is written. Doxygen will use this # information to generate all constant output in the proper language. # The default language is English, other supported languages are: # Brazilian, Chinese, Croatian, Czech, Danish, Dutch, Finnish, French, # German, Hungarian, Italian, Japanese, Korean, Norwegian, Polish, # Portuguese, Romanian, Russian, Slovak, Slovene, Spanish and Swedish. OUTPUT_LANGUAGE = English # If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in # documentation are documented, even if no documentation was available. # Private class members and static file members will be hidden unless # the EXTRACT_PRIVATE and EXTRACT_STATIC tags are set to YES EXTRACT_ALL = NO # If the EXTRACT_PRIVATE tag is set to YES all private members of a class # will be included in the documentation. EXTRACT_PRIVATE = YES # If the EXTRACT_STATIC tag is set to YES all static members of a file # will be included in the documentation. EXTRACT_STATIC = YES # If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all # undocumented members of documented classes, files or namespaces. # If set to NO (the default) these members will be included in the # various overviews, but no documentation section is generated. # This option has no effect if EXTRACT_ALL is enabled. HIDE_UNDOC_MEMBERS = YES # If the HIDE_UNDOC_CLASSES tag is set to YES, Doxygen will hide all # undocumented classes that are normally visible in the class hierarchy. # If set to NO (the default) these class will be included in the various # overviews. This option has no effect if EXTRACT_ALL is enabled. HIDE_UNDOC_CLASSES = YES # If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will # include brief member descriptions after the members that are listed in # the file and class documentation (similar to JavaDoc). # Set to NO to disable this. BRIEF_MEMBER_DESC = YES # If the REPEAT_BRIEF tag is set to YES (the default) Doxygen will prepend # the brief description of a member or function before the detailed description. # Note: if both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the # brief descriptions will be completely suppressed. REPEAT_BRIEF = YES # If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then # Doxygen will generate a detailed section even if there is only a brief # description. ALWAYS_DETAILED_SEC = NO # If the FULL_PATH_NAMES tag is set to YES then Doxygen will prepend the full # path before files name in the file list and in the header files. If set # to NO the shortest path that makes the file name unique will be used. FULL_PATH_NAMES = NO # If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag # can be used to strip a user defined part of the path. Stripping is # only done if one of the specified strings matches the left-hand part of # the path. It is allowed to use relative paths in the argument list. STRIP_FROM_PATH = # The INTERNAL_DOCS tag determines if documentation # that is typed after a \internal command is included. If the tag is set # to NO (the default) then the documentation will be excluded. # Set it to YES to include the internal documentation. INTERNAL_DOCS = NO # If the CLASS_DIAGRAMS tag is set to YES (the default) Doxygen will # generate a class diagram (in Html and LaTeX) for classes with base or # super classes. Setting the tag to NO turns the diagrams off. CLASS_DIAGRAMS = YES # If the SOURCE_BROWSER tag is set to YES then a list of source files will # be generated. Documented entities will be cross-referenced with these sources. SOURCE_BROWSER = YES # Setting the INLINE_SOURCES tag to YES will include the body # of functions and classes directly in the documentation. INLINE_SOURCES = NO # Setting the STRIP_CODE_COMMENTS tag to YES (the default) will instruct # doxygen to hide any special comment blocks from generated source code # fragments. Normal C and C++ comments will always remain visible. STRIP_CODE_COMMENTS = YES # If the CASE_SENSE_NAMES tag is set to NO then Doxygen will only generate # file names in lower case letters. If set to YES upper case letters are also # allowed. This is useful if you have classes or files whose names only differ # in case and if your file system supports case sensitive file names. Windows # users are adviced to set this option to NO. CASE_SENSE_NAMES = YES # If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter # (but less readable) file names. This can be useful is your file systems # doesn't support long names like on DOS, Mac, or CD-ROM. SHORT_NAMES = NO # If the HIDE_SCOPE_NAMES tag is set to NO (the default) then Doxygen # will show members with their full class and namespace scopes in the # documentation. If set to YES the scope will be hidden. HIDE_SCOPE_NAMES = NO # If the VERBATIM_HEADERS tag is set to YES (the default) then Doxygen # will generate a verbatim copy of the header file for each class for # which an include is specified. Set to NO to disable this. VERBATIM_HEADERS = YES # If the SHOW_INCLUDE_FILES tag is set to YES (the default) then Doxygen # will put list of the files that are included by a file in the documentation # of that file. SHOW_INCLUDE_FILES = YES # If the JAVADOC_AUTOBRIEF tag is set to YES then Doxygen # will interpret the first line (until the first dot) of a JavaDoc-style # comment as the brief description. If set to NO, the JavaDoc # comments will behave just like the Qt-style comments (thus requiring an # explict @brief command for a brief description. JAVADOC_AUTOBRIEF = YES # If the INHERIT_DOCS tag is set to YES (the default) then an undocumented # member inherits the documentation from any documented member that it # reimplements. INHERIT_DOCS = YES # If the INLINE_INFO tag is set to YES (the default) then a tag [inline] # is inserted in the documentation for inline members. INLINE_INFO = NO # If the SORT_MEMBER_DOCS tag is set to YES (the default) then doxygen # will sort the (detailed) documentation of file and class members # alphabetically by member name. If set to NO the members will appear in # declaration order. SORT_MEMBER_DOCS = YES # If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC # tag is set to YES, then doxygen will reuse the documentation of the first # member in the group (if any) for the other members of the group. By default # all members of a group must be documented explicitly. DISTRIBUTE_GROUP_DOC = NO # The TAB_SIZE tag can be used to set the number of spaces in a tab. # Doxygen uses this value to replace tabs by spaces in code fragments. TAB_SIZE = 8 # The GENERATE_TODOLIST tag can be used to enable (YES) or # disable (NO) the todo list. This list is created by putting \todo # commands in the documentation. GENERATE_TODOLIST = YES # The GENERATE_TESTLIST tag can be used to enable (YES) or # disable (NO) the test list. This list is created by putting \test # commands in the documentation. GENERATE_TESTLIST = YES # The GENERATE_BUGLIST tag can be used to enable (YES) or # disable (NO) the bug list. This list is created by putting \bug # commands in the documentation. GENERATE_BUGLIST = YES # This tag can be used to specify a number of aliases that acts # as commands in the documentation. An alias has the form "name=value". # For example adding "sideeffect=\par Side Effects:\n" will allow you to # put the command \sideeffect (or @sideeffect) in the documentation, which # will result in a user defined paragraph with heading "Side Effects:". # You can put \n's in the value part of an alias to insert newlines. ALIASES = # The ENABLED_SECTIONS tag can be used to enable conditional # documentation sections, marked by \if sectionname ... \endif. ENABLED_SECTIONS = # The MAX_INITIALIZER_LINES tag determines the maximum number of lines # the initial value of a variable or define consist of for it to appear in # the documentation. If the initializer consists of more lines than specified # here it will be hidden. Use a value of 0 to hide initializers completely. # The appearance of the initializer of individual variables and defines in the # documentation can be controlled using \showinitializer or \hideinitializer # command in the documentation regardless of this setting. MAX_INITIALIZER_LINES = 30 # Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C sources # only. Doxygen will then generate output that is more tailored for C. # For instance some of the names that are used will be different. The list # of all members will be omitted, etc. OPTIMIZE_OUTPUT_FOR_C = NO # Set the SHOW_USED_FILES tag to NO to disable the list of files generated # at the bottom of the documentation of classes and structs. If set to YES the # list will mention the files that were used to generate the documentation. SHOW_USED_FILES = YES #--------------------------------------------------------------------------- # configuration options related to warning and progress messages #--------------------------------------------------------------------------- # The QUIET tag can be used to turn on/off the messages that are generated # by doxygen. Possible values are YES and NO. If left blank NO is used. QUIET = NO # The WARNINGS tag can be used to turn on/off the warning messages that are # generated by doxygen. Possible values are YES and NO. If left blank # NO is used. WARNINGS = YES # If WARN_IF_UNDOCUMENTED is set to YES, then doxygen will generate warnings # for undocumented members. If EXTRACT_ALL is set to YES then this flag will # automatically be disabled. WARN_IF_UNDOCUMENTED = YES # The WARN_FORMAT tag determines the format of the warning messages that # doxygen can produce. The string should contain the $file, $line, and $text # tags, which will be replaced by the file and line number from which the # warning originated and the warning text. WARN_FORMAT = # The WARN_LOGFILE tag can be used to specify a file to which warning # and error messages should be written. If left blank the output is written # to stderr. WARN_LOGFILE = #--------------------------------------------------------------------------- # configuration options related to the input files #--------------------------------------------------------------------------- # The INPUT tag can be used to specify the files and/or directories that contain # documented source files. You may enter file names like "myfile.cpp" or # directories like "/usr/src/myproject". Separate the files or directories # with spaces. INPUT = ../../src2 # If the value of the INPUT tag contains directories, you can use the # FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp # and *.h) to filter out the source-files in the directories. If left # blank all files are included. FILE_PATTERNS = *.java # The RECURSIVE tag can be used to turn specify whether or not subdirectories # should be searched for input files as well. Possible values are YES and NO. # If left blank NO is used. RECURSIVE = YES # The EXCLUDE tag can be used to specify files and/or directories that should # excluded from the INPUT source files. This way you can easily exclude a # subdirectory from a directory tree whose root is specified with the INPUT tag. EXCLUDE = # If the value of the INPUT tag contains directories, you can use the # EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude # certain files from those directories. EXCLUDE_PATTERNS = # The EXAMPLE_PATH tag can be used to specify one or more files or # directories that contain example code fragments that are included (see # the \include command). EXAMPLE_PATH = # If the value of the EXAMPLE_PATH tag contains directories, you can use the # EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp # and *.h) to filter out the source-files in the directories. If left # blank all files are included. EXAMPLE_PATTERNS = # The IMAGE_PATH tag can be used to specify one or more files or # directories that contain image that are included in the documentation (see # the \image command). IMAGE_PATH = # The INPUT_FILTER tag can be used to specify a program that doxygen should # invoke to filter for each input file. Doxygen will invoke the filter program # by executing (via popen()) the command <filter> <input-file>, where <filter> # is the value of the INPUT_FILTER tag, and <input-file> is the name of an # input file. Doxygen will then use the output that the filter program writes # to standard output. INPUT_FILTER = # If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using # INPUT_FILTER) will be used to filter the input files when producing source # files to browse. FILTER_SOURCE_FILES = NO #--------------------------------------------------------------------------- # configuration options related to the alphabetical class index #--------------------------------------------------------------------------- # If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index # of all compounds will be generated. Enable this if the project # contains a lot of classes, structs, unions or interfaces. ALPHABETICAL_INDEX = YES # If the alphabetical index is enabled (see ALPHABETICAL_INDEX) then # the COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns # in which this list will be split (can be a number in the range [1..20]) COLS_IN_ALPHA_INDEX = 5 # In case all classes in a project start with a common prefix, all # classes will be put under the same header in the alphabetical index. # The IGNORE_PREFIX tag can be used to specify one or more prefixes that # should be ignored while generating the index headers. IGNORE_PREFIX = #--------------------------------------------------------------------------- # configuration options related to the HTML output #--------------------------------------------------------------------------- # If the GENERATE_HTML tag is set to YES (the default) Doxygen will # generate HTML output. GENERATE_HTML = NO # The HTML_OUTPUT tag is used to specify where the HTML docs will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `html' will be used as the default path. HTML_OUTPUT = # The HTML_HEADER tag can be used to specify a personal HTML header for # each generated HTML page. If it is left blank doxygen will generate a # standard header. HTML_HEADER = # The HTML_FOOTER tag can be used to specify a personal HTML footer for # each generated HTML page. If it is left blank doxygen will generate a # standard footer. HTML_FOOTER = # The HTML_STYLESHEET tag can be used to specify a user defined cascading # style sheet that is used by each HTML page. It can be used to # fine-tune the look of the HTML output. If the tag is left blank doxygen # will generate a default style sheet HTML_STYLESHEET = # If the HTML_ALIGN_MEMBERS tag is set to YES, the members of classes, # files or namespaces will be aligned in HTML using tables. If set to # NO a bullet list will be used. HTML_ALIGN_MEMBERS = YES # If the GENERATE_HTMLHELP tag is set to YES, additional index files # will be generated that can be used as input for tools like the # Microsoft HTML help workshop to generate a compressed HTML help file (.chm) # of the generated HTML documentation. GENERATE_HTMLHELP = NO # If the GENERATE_HTMLHELP tag is set to YES, the GENERATE_CHI flag # controls if a separate .chi index file is generated (YES) or that # it should be included in the master .chm file (NO). GENERATE_CHI = NO # If the GENERATE_HTMLHELP tag is set to YES, the BINARY_TOC flag # controls whether a binary table of contents is generated (YES) or a # normal table of contents (NO) in the .chm file. BINARY_TOC = NO # The TOC_EXPAND flag can be set to YES to add extra items for group members # to the contents of the Html help documentation and to the tree view. TOC_EXPAND = YES # The DISABLE_INDEX tag can be used to turn on/off the condensed index at # top of each HTML page. The value NO (the default) enables the index and # the value YES disables it. DISABLE_INDEX = NO # This tag can be used to set the number of enum values (range [1..20]) # that doxygen will group on one line in the generated HTML documentation. ENUM_VALUES_PER_LINE = 4 # If the GENERATE_TREEVIEW tag is set to YES, a side panel will be # generated containing a tree-like index structure (just like the one that # is generated for HTML Help). For this to work a browser that supports # JavaScript and frames is required (for instance Netscape 4.0+ # or Internet explorer 4.0+). GENERATE_TREEVIEW = YES # If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be # used to set the initial width (in pixels) of the frame in which the tree # is shown. TREEVIEW_WIDTH = 250 #--------------------------------------------------------------------------- # configuration options related to the LaTeX output #--------------------------------------------------------------------------- # If the GENERATE_LATEX tag is set to YES (the default) Doxygen will # generate Latex output. GENERATE_LATEX = YES # The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `latex' will be used as the default path. LATEX_OUTPUT = # If the COMPACT_LATEX tag is set to YES Doxygen generates more compact # LaTeX documents. This may be useful for small projects and may help to # save some trees in general. COMPACT_LATEX = NO # The PAPER_TYPE tag can be used to set the paper type that is used # by the printer. Possible values are: a4, a4wide, letter, legal and # executive. If left blank a4wide will be used. PAPER_TYPE = a4wide # The EXTRA_PACKAGES tag can be to specify one or more names of LaTeX # packages that should be included in the LaTeX output. EXTRA_PACKAGES = # The LATEX_HEADER tag can be used to specify a personal LaTeX header for # the generated latex document. The header should contain everything until # the first chapter. If it is left blank doxygen will generate a # standard header. Notice: only use this tag if you know what you are doing! LATEX_HEADER = # If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated # is prepared for conversion to pdf (using ps2pdf). The pdf file will # contain links (just like the HTML output) instead of page references # This makes the output suitable for online browsing using a pdf viewer. PDF_HYPERLINKS = YES # If the USE_PDFLATEX tag is set to YES, pdflatex will be used instead of # plain latex in the generated Makefile. Set this option to YES to get a # higher quality PDF documentation. USE_PDFLATEX = YES # If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \\batchmode. # command to the generated LaTeX files. This will instruct LaTeX to keep # running if errors occur, instead of asking the user for help. # This option is also used when generating formulas in HTML. LATEX_BATCHMODE = NO #--------------------------------------------------------------------------- # configuration options related to the RTF output #--------------------------------------------------------------------------- # If the GENERATE_RTF tag is set to YES Doxygen will generate RTF output # The RTF output is optimised for Word 97 and may not look very pretty with # other RTF readers or editors. GENERATE_RTF = NO # The RTF_OUTPUT tag is used to specify where the RTF docs will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `rtf' will be used as the default path. RTF_OUTPUT = # If the COMPACT_RTF tag is set to YES Doxygen generates more compact # RTF documents. This may be useful for small projects and may help to # save some trees in general. COMPACT_RTF = NO # If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated # will contain hyperlink fields. The RTF file will # contain links (just like the HTML output) instead of page references. # This makes the output suitable for online browsing using WORD or other # programs which support those fields. # Note: wordpad (write) and others do not support links. RTF_HYPERLINKS = NO # Load stylesheet definitions from file. Syntax is similar to doxygen's # config file, i.e. a series of assigments. You only have to provide # replacements, missing definitions are set to their default value. RTF_STYLESHEET_FILE = # Set optional variables used in the generation of an rtf document. # Syntax is similar to doxygen's config file. RTF_EXTENSIONS_FILE = #--------------------------------------------------------------------------- # configuration options related to the man page output #--------------------------------------------------------------------------- # If the GENERATE_MAN tag is set to YES (the default) Doxygen will # generate man pages GENERATE_MAN = NO # The MAN_OUTPUT tag is used to specify where the man pages will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `man' will be used as the default path. MAN_OUTPUT = # The MAN_EXTENSION tag determines the extension that is added to # the generated man pages (default is the subroutine's section .3) MAN_EXTENSION = # If the MAN_LINKS tag is set to YES and Doxygen generates man output, # then it will generate one additional man file for each entity # documented in the real man page(s). These additional files # only source the real man page, but without them the man command # would be unable to find the correct page. The default is NO. MAN_LINKS = NO #--------------------------------------------------------------------------- # configuration options related to the XML output #--------------------------------------------------------------------------- # If the GENERATE_XML tag is set to YES Doxygen will # generate an XML file that captures the structure of # the code including all documentation. Note that this # feature is still experimental and incomplete at the # moment. GENERATE_XML = NO #--------------------------------------------------------------------------- # Configuration options related to the preprocessor #--------------------------------------------------------------------------- # If the ENABLE_PREPROCESSING tag is set to YES (the default) Doxygen will # evaluate all C-preprocessor directives found in the sources and include # files. ENABLE_PREPROCESSING = YES # If the MACRO_EXPANSION tag is set to YES Doxygen will expand all macro # names in the source code. If set to NO (the default) only conditional # compilation will be performed. Macro expansion can be done in a controlled # way by setting EXPAND_ONLY_PREDEF to YES. MACRO_EXPANSION = NO # If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES # then the macro expansion is limited to the macros specified with the # PREDEFINED and EXPAND_AS_PREDEFINED tags. EXPAND_ONLY_PREDEF = NO # If the SEARCH_INCLUDES tag is set to YES (the default) the includes files # in the INCLUDE_PATH (see below) will be search if a #include is found. SEARCH_INCLUDES = YES # The INCLUDE_PATH tag can be used to specify one or more directories that # contain include files that are not input files but should be processed by # the preprocessor. INCLUDE_PATH = # You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard # patterns (like *.h and *.hpp) to filter out the header-files in the # directories. If left blank, the patterns specified with FILE_PATTERNS will # be used. INCLUDE_FILE_PATTERNS = # The PREDEFINED tag can be used to specify one or more macro names that # are defined before the preprocessor is started (similar to the -D option of # gcc). The argument of the tag is a list of macros of the form: name # or name=definition (no spaces). If the definition and the = are # omitted =1 is assumed. PREDEFINED = # If the MACRO_EXPANSION and EXPAND_PREDEF_ONLY tags are set to YES then # this tag can be used to specify a list of macro names that should be expanded. # The macro definition that is found in the sources will be used. # Use the PREDEFINED tag if you want to use a different macro definition. EXPAND_AS_DEFINED = #--------------------------------------------------------------------------- # Configuration::addtions related to external references #--------------------------------------------------------------------------- # The TAGFILES tag can be used to specify one or more tagfiles. TAGFILES = # When a file name is specified after GENERATE_TAGFILE, doxygen will create # a tag file that is based on the input files it reads. GENERATE_TAGFILE = # If the ALLEXTERNALS tag is set to YES all external classes will be listed # in the class index. If set to NO only the inherited external classes # will be listed. ALLEXTERNALS = NO # The PERL_PATH should be the absolute path and name of the perl script # interpreter (i.e. the result of `which perl'). PERL_PATH = #--------------------------------------------------------------------------- # Configuration options related to the dot tool #---------------------------------... [truncated message content] |
From: Marek P. <ma...@us...> - 2001-09-25 18:57:59
|
Update of /cvsroot/javaprofiler/library/doc/library In directory usw-pr-cvs1:/tmp/cvs-serv17653/doc/library Modified Files: Makefile.rules Added Files: doc_html.conf doc_latex.conf Removed Files: doc.conf Log Message: changes in doc --- NEW FILE: doc_html.conf --- # Doxyfile 1.2.10 # This file describes the settings to be used by the documentation system # doxygen (www.doxygen.org) for a project # # All text after a hash (#) is considered a comment and will be ignored # The format is: # TAG = value [value, ...] # For lists items can also be appended using: # TAG += value [value, ...] # Values that contain spaces should be placed between quotes (" ") #--------------------------------------------------------------------------- # General configuration options #--------------------------------------------------------------------------- # The PROJECT_NAME tag is a single word (or a sequence of words surrounded # by quotes) that should identify the project. PROJECT_NAME = "Java Profiler Dynamic Library" # The PROJECT_NUMBER tag can be used to enter a project or revision number. # This could be handy for archiving the generated documentation or # if some version control system is used. PROJECT_NUMBER = # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) # base path where the generated documentation will be put. # If a relative path is entered, it will be relative to the location # where doxygen was started. If left blank the current directory will be used. OUTPUT_DIRECTORY = # The OUTPUT_LANGUAGE tag is used to specify the language in which all # documentation generated by doxygen is written. Doxygen will use this # information to generate all constant output in the proper language. # The default language is English, other supported languages are: # Brazilian, Chinese, Croatian, Czech, Danish, Dutch, Finnish, French, # German, Hungarian, Italian, Japanese, Korean, Norwegian, Polish, # Portuguese, Romanian, Russian, Slovak, Slovene, Spanish and Swedish. OUTPUT_LANGUAGE = English # If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in # documentation are documented, even if no documentation was available. # Private class members and static file members will be hidden unless # the EXTRACT_PRIVATE and EXTRACT_STATIC tags are set to YES EXTRACT_ALL = NO # If the EXTRACT_PRIVATE tag is set to YES all private members of a class # will be included in the documentation. EXTRACT_PRIVATE = YES # If the EXTRACT_STATIC tag is set to YES all static members of a file # will be included in the documentation. EXTRACT_STATIC = YES # If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all # undocumented members of documented classes, files or namespaces. # If set to NO (the default) these members will be included in the # various overviews, but no documentation section is generated. # This option has no effect if EXTRACT_ALL is enabled. HIDE_UNDOC_MEMBERS = YES # If the HIDE_UNDOC_CLASSES tag is set to YES, Doxygen will hide all # undocumented classes that are normally visible in the class hierarchy. # If set to NO (the default) these class will be included in the various # overviews. This option has no effect if EXTRACT_ALL is enabled. HIDE_UNDOC_CLASSES = YES # If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will # include brief member descriptions after the members that are listed in # the file and class documentation (similar to JavaDoc). # Set to NO to disable this. BRIEF_MEMBER_DESC = YES # If the REPEAT_BRIEF tag is set to YES (the default) Doxygen will prepend # the brief description of a member or function before the detailed description. # Note: if both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the # brief descriptions will be completely suppressed. REPEAT_BRIEF = YES # If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then # Doxygen will generate a detailed section even if there is only a brief # description. ALWAYS_DETAILED_SEC = NO # If the FULL_PATH_NAMES tag is set to YES then Doxygen will prepend the full # path before files name in the file list and in the header files. If set # to NO the shortest path that makes the file name unique will be used. FULL_PATH_NAMES = NO # If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag # can be used to strip a user defined part of the path. Stripping is # only done if one of the specified strings matches the left-hand part of # the path. It is allowed to use relative paths in the argument list. STRIP_FROM_PATH = # The INTERNAL_DOCS tag determines if documentation # that is typed after a \internal command is included. If the tag is set # to NO (the default) then the documentation will be excluded. # Set it to YES to include the internal documentation. INTERNAL_DOCS = NO # If the CLASS_DIAGRAMS tag is set to YES (the default) Doxygen will # generate a class diagram (in Html and LaTeX) for classes with base or # super classes. Setting the tag to NO turns the diagrams off. CLASS_DIAGRAMS = YES # If the SOURCE_BROWSER tag is set to YES then a list of source files will # be generated. Documented entities will be cross-referenced with these sources. SOURCE_BROWSER = YES # Setting the INLINE_SOURCES tag to YES will include the body # of functions and classes directly in the documentation. INLINE_SOURCES = NO # Setting the STRIP_CODE_COMMENTS tag to YES (the default) will instruct # doxygen to hide any special comment blocks from generated source code # fragments. Normal C and C++ comments will always remain visible. STRIP_CODE_COMMENTS = YES # If the CASE_SENSE_NAMES tag is set to NO then Doxygen will only generate # file names in lower case letters. If set to YES upper case letters are also # allowed. This is useful if you have classes or files whose names only differ # in case and if your file system supports case sensitive file names. Windows # users are adviced to set this option to NO. CASE_SENSE_NAMES = YES # If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter # (but less readable) file names. This can be useful is your file systems # doesn't support long names like on DOS, Mac, or CD-ROM. SHORT_NAMES = NO # If the HIDE_SCOPE_NAMES tag is set to NO (the default) then Doxygen # will show members with their full class and namespace scopes in the # documentation. If set to YES the scope will be hidden. HIDE_SCOPE_NAMES = NO # If the VERBATIM_HEADERS tag is set to YES (the default) then Doxygen # will generate a verbatim copy of the header file for each class for # which an include is specified. Set to NO to disable this. VERBATIM_HEADERS = YES # If the SHOW_INCLUDE_FILES tag is set to YES (the default) then Doxygen # will put list of the files that are included by a file in the documentation # of that file. SHOW_INCLUDE_FILES = YES # If the JAVADOC_AUTOBRIEF tag is set to YES then Doxygen # will interpret the first line (until the first dot) of a JavaDoc-style # comment as the brief description. If set to NO, the JavaDoc # comments will behave just like the Qt-style comments (thus requiring an # explict @brief command for a brief description. JAVADOC_AUTOBRIEF = YES # If the INHERIT_DOCS tag is set to YES (the default) then an undocumented # member inherits the documentation from any documented member that it # reimplements. INHERIT_DOCS = YES # If the INLINE_INFO tag is set to YES (the default) then a tag [inline] # is inserted in the documentation for inline members. INLINE_INFO = YES # If the SORT_MEMBER_DOCS tag is set to YES (the default) then doxygen # will sort the (detailed) documentation of file and class members # alphabetically by member name. If set to NO the members will appear in # declaration order. SORT_MEMBER_DOCS = YES # If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC # tag is set to YES, then doxygen will reuse the documentation of the first # member in the group (if any) for the other members of the group. By default # all members of a group must be documented explicitly. DISTRIBUTE_GROUP_DOC = NO # The TAB_SIZE tag can be used to set the number of spaces in a tab. # Doxygen uses this value to replace tabs by spaces in code fragments. TAB_SIZE = 8 # The GENERATE_TODOLIST tag can be used to enable (YES) or # disable (NO) the todo list. This list is created by putting \todo # commands in the documentation. GENERATE_TODOLIST = YES # The GENERATE_TESTLIST tag can be used to enable (YES) or # disable (NO) the test list. This list is created by putting \test # commands in the documentation. GENERATE_TESTLIST = YES # The GENERATE_BUGLIST tag can be used to enable (YES) or # disable (NO) the bug list. This list is created by putting \bug # commands in the documentation. GENERATE_BUGLIST = YES # This tag can be used to specify a number of aliases that acts # as commands in the documentation. An alias has the form "name=value". # For example adding "sideeffect=\par Side Effects:\n" will allow you to # put the command \sideeffect (or @sideeffect) in the documentation, which # will result in a user defined paragraph with heading "Side Effects:". # You can put \n's in the value part of an alias to insert newlines. ALIASES = # The ENABLED_SECTIONS tag can be used to enable conditional # documentation sections, marked by \if sectionname ... \endif. ENABLED_SECTIONS = # The MAX_INITIALIZER_LINES tag determines the maximum number of lines # the initial value of a variable or define consist of for it to appear in # the documentation. If the initializer consists of more lines than specified # here it will be hidden. Use a value of 0 to hide initializers completely. # The appearance of the initializer of individual variables and defines in the # documentation can be controlled using \showinitializer or \hideinitializer # command in the documentation regardless of this setting. MAX_INITIALIZER_LINES = 30 # Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C sources # only. Doxygen will then generate output that is more tailored for C. # For instance some of the names that are used will be different. The list # of all members will be omitted, etc. OPTIMIZE_OUTPUT_FOR_C = NO # Set the SHOW_USED_FILES tag to NO to disable the list of files generated # at the bottom of the documentation of classes and structs. If set to YES the # list will mention the files that were used to generate the documentation. SHOW_USED_FILES = YES #--------------------------------------------------------------------------- # configuration options related to warning and progress messages #--------------------------------------------------------------------------- # The QUIET tag can be used to turn on/off the messages that are generated # by doxygen. Possible values are YES and NO. If left blank NO is used. QUIET = NO # The WARNINGS tag can be used to turn on/off the warning messages that are # generated by doxygen. Possible values are YES and NO. If left blank # NO is used. WARNINGS = YES # If WARN_IF_UNDOCUMENTED is set to YES, then doxygen will generate warnings # for undocumented members. If EXTRACT_ALL is set to YES then this flag will # automatically be disabled. WARN_IF_UNDOCUMENTED = YES # The WARN_FORMAT tag determines the format of the warning messages that # doxygen can produce. The string should contain the $file, $line, and $text # tags, which will be replaced by the file and line number from which the # warning originated and the warning text. WARN_FORMAT = # The WARN_LOGFILE tag can be used to specify a file to which warning # and error messages should be written. If left blank the output is written # to stderr. WARN_LOGFILE = #--------------------------------------------------------------------------- # configuration options related to the input files #--------------------------------------------------------------------------- # The INPUT tag can be used to specify the files and/or directories that contain # documented source files. You may enter file names like "myfile.cpp" or # directories like "/usr/src/myproject". Separate the files or directories # with spaces. INPUT = ../../src # If the value of the INPUT tag contains directories, you can use the # FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp # and *.h) to filter out the source-files in the directories. If left # blank all files are included. FILE_PATTERNS = *.h *.cpp # The RECURSIVE tag can be used to turn specify whether or not subdirectories # should be searched for input files as well. Possible values are YES and NO. # If left blank NO is used. RECURSIVE = YES # The EXCLUDE tag can be used to specify files and/or directories that should # excluded from the INPUT source files. This way you can easily exclude a # subdirectory from a directory tree whose root is specified with the INPUT tag. EXCLUDE = # If the value of the INPUT tag contains directories, you can use the # EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude # certain files from those directories. EXCLUDE_PATTERNS = # The EXAMPLE_PATH tag can be used to specify one or more files or # directories that contain example code fragments that are included (see # the \include command). EXAMPLE_PATH = # If the value of the EXAMPLE_PATH tag contains directories, you can use the # EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp # and *.h) to filter out the source-files in the directories. If left # blank all files are included. EXAMPLE_PATTERNS = # The IMAGE_PATH tag can be used to specify one or more files or # directories that contain image that are included in the documentation (see # the \image command). IMAGE_PATH = # The INPUT_FILTER tag can be used to specify a program that doxygen should # invoke to filter for each input file. Doxygen will invoke the filter program # by executing (via popen()) the command <filter> <input-file>, where <filter> # is the value of the INPUT_FILTER tag, and <input-file> is the name of an # input file. Doxygen will then use the output that the filter program writes # to standard output. INPUT_FILTER = # If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using # INPUT_FILTER) will be used to filter the input files when producing source # files to browse. FILTER_SOURCE_FILES = NO #--------------------------------------------------------------------------- # configuration options related to the alphabetical class index #--------------------------------------------------------------------------- # If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index # of all compounds will be generated. Enable this if the project # contains a lot of classes, structs, unions or interfaces. ALPHABETICAL_INDEX = YES # If the alphabetical index is enabled (see ALPHABETICAL_INDEX) then # the COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns # in which this list will be split (can be a number in the range [1..20]) COLS_IN_ALPHA_INDEX = 5 # In case all classes in a project start with a common prefix, all # classes will be put under the same header in the alphabetical index. # The IGNORE_PREFIX tag can be used to specify one or more prefixes that # should be ignored while generating the index headers. IGNORE_PREFIX = #--------------------------------------------------------------------------- # configuration options related to the HTML output #--------------------------------------------------------------------------- # If the GENERATE_HTML tag is set to YES (the default) Doxygen will # generate HTML output. GENERATE_HTML = YES # The HTML_OUTPUT tag is used to specify where the HTML docs will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `html' will be used as the default path. HTML_OUTPUT = # The HTML_HEADER tag can be used to specify a personal HTML header for # each generated HTML page. If it is left blank doxygen will generate a # standard header. HTML_HEADER = # The HTML_FOOTER tag can be used to specify a personal HTML footer for # each generated HTML page. If it is left blank doxygen will generate a # standard footer. HTML_FOOTER = # The HTML_STYLESHEET tag can be used to specify a user defined cascading # style sheet that is used by each HTML page. It can be used to # fine-tune the look of the HTML output. If the tag is left blank doxygen # will generate a default style sheet HTML_STYLESHEET = # If the HTML_ALIGN_MEMBERS tag is set to YES, the members of classes, # files or namespaces will be aligned in HTML using tables. If set to # NO a bullet list will be used. HTML_ALIGN_MEMBERS = YES # If the GENERATE_HTMLHELP tag is set to YES, additional index files # will be generated that can be used as input for tools like the # Microsoft HTML help workshop to generate a compressed HTML help file (.chm) # of the generated HTML documentation. GENERATE_HTMLHELP = NO # If the GENERATE_HTMLHELP tag is set to YES, the GENERATE_CHI flag # controls if a separate .chi index file is generated (YES) or that # it should be included in the master .chm file (NO). GENERATE_CHI = NO # If the GENERATE_HTMLHELP tag is set to YES, the BINARY_TOC flag # controls whether a binary table of contents is generated (YES) or a # normal table of contents (NO) in the .chm file. BINARY_TOC = NO # The TOC_EXPAND flag can be set to YES to add extra items for group members # to the contents of the Html help documentation and to the tree view. TOC_EXPAND = YES # The DISABLE_INDEX tag can be used to turn on/off the condensed index at # top of each HTML page. The value NO (the default) enables the index and # the value YES disables it. DISABLE_INDEX = NO # This tag can be used to set the number of enum values (range [1..20]) # that doxygen will group on one line in the generated HTML documentation. ENUM_VALUES_PER_LINE = 4 # If the GENERATE_TREEVIEW tag is set to YES, a side panel will be # generated containing a tree-like index structure (just like the one that # is generated for HTML Help). For this to work a browser that supports # JavaScript and frames is required (for instance Netscape 4.0+ # or Internet explorer 4.0+). GENERATE_TREEVIEW = YES # If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be # used to set the initial width (in pixels) of the frame in which the tree # is shown. TREEVIEW_WIDTH = 250 #--------------------------------------------------------------------------- # configuration options related to the LaTeX output #--------------------------------------------------------------------------- # If the GENERATE_LATEX tag is set to YES (the default) Doxygen will # generate Latex output. GENERATE_LATEX = NO # The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `latex' will be used as the default path. LATEX_OUTPUT = # If the COMPACT_LATEX tag is set to YES Doxygen generates more compact # LaTeX documents. This may be useful for small projects and may help to # save some trees in general. COMPACT_LATEX = NO # The PAPER_TYPE tag can be used to set the paper type that is used # by the printer. Possible values are: a4, a4wide, letter, legal and # executive. If left blank a4wide will be used. PAPER_TYPE = a4wide # The EXTRA_PACKAGES tag can be to specify one or more names of LaTeX # packages that should be included in the LaTeX output. EXTRA_PACKAGES = # The LATEX_HEADER tag can be used to specify a personal LaTeX header for # the generated latex document. The header should contain everything until # the first chapter. If it is left blank doxygen will generate a # standard header. Notice: only use this tag if you know what you are doing! LATEX_HEADER = # If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated # is prepared for conversion to pdf (using ps2pdf). The pdf file will # contain links (just like the HTML output) instead of page references # This makes the output suitable for online browsing using a pdf viewer. PDF_HYPERLINKS = YES # If the USE_PDFLATEX tag is set to YES, pdflatex will be used instead of # plain latex in the generated Makefile. Set this option to YES to get a # higher quality PDF documentation. USE_PDFLATEX = YES # If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \\batchmode. # command to the generated LaTeX files. This will instruct LaTeX to keep # running if errors occur, instead of asking the user for help. # This option is also used when generating formulas in HTML. LATEX_BATCHMODE = NO #--------------------------------------------------------------------------- # configuration options related to the RTF output #--------------------------------------------------------------------------- # If the GENERATE_RTF tag is set to YES Doxygen will generate RTF output # The RTF output is optimised for Word 97 and may not look very pretty with # other RTF readers or editors. GENERATE_RTF = NO # The RTF_OUTPUT tag is used to specify where the RTF docs will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `rtf' will be used as the default path. RTF_OUTPUT = # If the COMPACT_RTF tag is set to YES Doxygen generates more compact # RTF documents. This may be useful for small projects and may help to # save some trees in general. COMPACT_RTF = NO # If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated # will contain hyperlink fields. The RTF file will # contain links (just like the HTML output) instead of page references. # This makes the output suitable for online browsing using WORD or other # programs which support those fields. # Note: wordpad (write) and others do not support links. RTF_HYPERLINKS = NO # Load stylesheet definitions from file. Syntax is similar to doxygen's # config file, i.e. a series of assigments. You only have to provide # replacements, missing definitions are set to their default value. RTF_STYLESHEET_FILE = # Set optional variables used in the generation of an rtf document. # Syntax is similar to doxygen's config file. RTF_EXTENSIONS_FILE = #--------------------------------------------------------------------------- # configuration options related to the man page output #--------------------------------------------------------------------------- # If the GENERATE_MAN tag is set to YES (the default) Doxygen will # generate man pages GENERATE_MAN = NO # The MAN_OUTPUT tag is used to specify where the man pages will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `man' will be used as the default path. MAN_OUTPUT = # The MAN_EXTENSION tag determines the extension that is added to # the generated man pages (default is the subroutine's section .3) MAN_EXTENSION = # If the MAN_LINKS tag is set to YES and Doxygen generates man output, # then it will generate one additional man file for each entity # documented in the real man page(s). These additional files # only source the real man page, but without them the man command # would be unable to find the correct page. The default is NO. MAN_LINKS = NO #--------------------------------------------------------------------------- # configuration options related to the XML output #--------------------------------------------------------------------------- # If the GENERATE_XML tag is set to YES Doxygen will # generate an XML file that captures the structure of # the code including all documentation. Note that this # feature is still experimental and incomplete at the # moment. GENERATE_XML = NO #--------------------------------------------------------------------------- # Configuration options related to the preprocessor #--------------------------------------------------------------------------- # If the ENABLE_PREPROCESSING tag is set to YES (the default) Doxygen will # evaluate all C-preprocessor directives found in the sources and include # files. ENABLE_PREPROCESSING = YES # If the MACRO_EXPANSION tag is set to YES Doxygen will expand all macro # names in the source code. If set to NO (the default) only conditional # compilation will be performed. Macro expansion can be done in a controlled # way by setting EXPAND_ONLY_PREDEF to YES. MACRO_EXPANSION = NO # If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES # then the macro expansion is limited to the macros specified with the # PREDEFINED and EXPAND_AS_PREDEFINED tags. EXPAND_ONLY_PREDEF = NO # If the SEARCH_INCLUDES tag is set to YES (the default) the includes files # in the INCLUDE_PATH (see below) will be search if a #include is found. SEARCH_INCLUDES = YES # The INCLUDE_PATH tag can be used to specify one or more directories that # contain include files that are not input files but should be processed by # the preprocessor. INCLUDE_PATH = # You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard # patterns (like *.h and *.hpp) to filter out the header-files in the # directories. If left blank, the patterns specified with FILE_PATTERNS will # be used. INCLUDE_FILE_PATTERNS = # The PREDEFINED tag can be used to specify one or more macro names that # are defined before the preprocessor is started (similar to the -D option of # gcc). The argument of the tag is a list of macros of the form: name # or name=definition (no spaces). If the definition and the = are # omitted =1 is assumed. PREDEFINED = # If the MACRO_EXPANSION and EXPAND_PREDEF_ONLY tags are set to YES then # this tag can be used to specify a list of macro names that should be expanded. # The macro definition that is found in the sources will be used. # Use the PREDEFINED tag if you want to use a different macro definition. EXPAND_AS_DEFINED = #--------------------------------------------------------------------------- # Configuration::addtions related to external references #--------------------------------------------------------------------------- # The TAGFILES tag can be used to specify one or more tagfiles. TAGFILES = # When a file name is specified after GENERATE_TAGFILE, doxygen will create # a tag file that is based on the input files it reads. GENERATE_TAGFILE = # If the ALLEXTERNALS tag is set to YES all external classes will be listed # in the class index. If set to NO only the inherited external classes # will be listed. ALLEXTERNALS = NO # The PERL_PATH should be the absolute path and name of the perl script # interpreter (i.e. the result of `which perl'). PERL_PATH = #--------------------------------------------------------------------------- # Configuration options related to the dot tool #--------------------------------------------------------------------------- # If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is # available from the path. This tool is part of Graphviz, a graph visualization # toolkit from AT&T and Lucent Bell Labs. The other options in this section # have no effect if this option is set to NO (the default) HAVE_DOT = YES # If the CLASS_GRAPH and HAVE_DOT tags are set to YES then doxygen # will generate a graph for each documented class showing the direct and # indirect inheritance relations. Setting this tag to YES will force the # the CLASS_DIAGRAMS tag to NO. CLASS_GRAPH = YES # If the COLLABORATION_GRAPH and HAVE_DOT tags are set to YES then doxygen # will generate a graph for each documented class showing the direct and # indirect implementation dependencies (inheritance, containment, and # class references variables) of the class with other documented classes. COLLABORATION_GRAPH = YES # If set to YES, the inheritance and collaboration graphs will show the # relations between templates and their instances. TEMPLATE_RELATIONS = YES # If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDE_GRAPH, and HAVE_DOT # tags are set to YES then doxygen will generate a graph for each documented # file showing the direct and indirect include dependencies of the file with # other documented files. INCLUDE_GRAPH = YES # If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDED_BY_GRAPH, and # HAVE_DOT tags are set to YES then doxygen will generate a graph for each # documented header file showing the documented files that directly or # indirectly include this file. INCLUDED_BY_GRAPH = YES # If the GRAPHICAL_HIERARCHY and HAVE_DOT tags are set to YES then doxygen # will graphical hierarchy of all classes instead of a textual one. GRAPHICAL_HIERARCHY = YES # The tag DOT_PATH can be used to specify the path where the dot tool can be # found. If left blank, it is assumed the dot tool can be found on the path. DOT_PATH = # The DOTFILE_DIRS tag can be used to specify one or more directories that # contain dot files that are included in the documentation (see the # \dotfile command). DOTFILE_DIRS = # The MAX_DOT_GRAPH_WIDTH tag can be used to set the maximum allowed width # (in pixels) of the graphs generated by dot. If a graph becomes larger than # this value, doxygen will try to truncate the graph, so that it fits within # the specified constraint. Beware that most browsers cannot cope with very # large images. MAX_DOT_GRAPH_WIDTH = 1024 # The MAX_DOT_GRAPH_HEIGHT tag can be used to set the maximum allows height # (in pixels) of the graphs generated by dot. If a graph becomes larger than # this value, doxygen will try to truncate the graph, so that it fits within # the specified constraint. Beware that most browsers cannot cope with very # large images. MAX_DOT_GRAPH_HEIGHT = 1024 # If the GENERATE_LEGEND tag is set to YES (the default) Doxygen will # generate a legend page explaining the meaning of the various boxes and # arrows in the dot generated graphs. GENERATE_LEGEND = YES # If the DOT_CLEANUP tag is set to YES (the default) Doxygen will # remove the intermedate dot files that are used to generate # the various graphs. DOT_CLEANUP = YES #--------------------------------------------------------------------------- # Configuration::addtions related to the search engine #--------------------------------------------------------------------------- # The SEARCHENGINE tag specifies whether or not a search engine should be # used. If set to NO the values of all tags below this one will be ignored. SEARCHENGINE = NO # The CGI_NAME tag should be the name of the CGI script that # starts the search engine (doxysearch) with the correct parameters. # A script with this name will be generated by doxygen. CGI_NAME = # The CGI_URL tag should be the absolute URL to the directory where the # cgi binaries are located. See the documentation of your http daemon for # details. CGI_URL = # The DOC_URL tag should be the absolute URL to the directory where the # documentation is located. If left blank the absolute path to the # documentation, with file:// prepended to it, will be used. DOC_URL = # The DOC_ABSPATH tag should be the absolute path to the directory where the # documentation is located. If left blank the directory on the local machine # will be used. DOC_ABSPATH = # The BIN_ABSPATH tag must point to the directory where the doxysearch binary # is installed. BIN_ABSPATH = # The EXT_DOC_PATHS tag can be used to specify one or more paths to # documentation generated for other projects. This allows doxysearch to search # the documentation for these projects as well. EXT_DOC_PATHS = --- NEW FILE: doc_latex.conf --- # Doxyfile 1.2.10 # This file describes the settings to be used by the documentation system # doxygen (www.doxygen.org) for a project # # All text after a hash (#) is considered a comment and will be ignored # The format is: # TAG = value [value, ...] # For lists items can also be appended using: # TAG += value [value, ...] # Values that contain spaces should be placed between quotes (" ") #--------------------------------------------------------------------------- # General configuration options #--------------------------------------------------------------------------- # The PROJECT_NAME tag is a single word (or a sequence of words surrounded # by quotes) that should identify the project. PROJECT_NAME = "Java Profiler Dynamic Library" # The PROJECT_NUMBER tag can be used to enter a project or revision number. # This could be handy for archiving the generated documentation or # if some version control system is used. PROJECT_NUMBER = # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) # base path where the generated documentation will be put. # If a relative path is entered, it will be relative to the location # where doxygen was started. If left blank the current directory will be used. OUTPUT_DIRECTORY = # The OUTPUT_LANGUAGE tag is used to specify the language in which all # documentation generated by doxygen is written. Doxygen will use this # information to generate all constant output in the proper language. # The default language is English, other supported languages are: # Brazilian, Chinese, Croatian, Czech, Danish, Dutch, Finnish, French, # German, Hungarian, Italian, Japanese, Korean, Norwegian, Polish, # Portuguese, Romanian, Russian, Slovak, Slovene, Spanish and Swedish. OUTPUT_LANGUAGE = English # If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in # documentation are documented, even if no documentation was available. # Private class members and static file members will be hidden unless # the EXTRACT_PRIVATE and EXTRACT_STATIC tags are set to YES EXTRACT_ALL = NO # If the EXTRACT_PRIVATE tag is set to YES all private members of a class # will be included in the documentation. EXTRACT_PRIVATE = YES # If the EXTRACT_STATIC tag is set to YES all static members of a file # will be included in the documentation. EXTRACT_STATIC = YES # If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all # undocumented members of documented classes, files or namespaces. # If set to NO (the default) these members will be included in the # various overviews, but no documentation section is generated. # This option has no effect if EXTRACT_ALL is enabled. HIDE_UNDOC_MEMBERS = YES # If the HIDE_UNDOC_CLASSES tag is set to YES, Doxygen will hide all # undocumented classes that are normally visible in the class hierarchy. # If set to NO (the default) these class will be included in the various # overviews. This option has no effect if EXTRACT_ALL is enabled. HIDE_UNDOC_CLASSES = YES # If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will # include brief member descriptions after the members that are listed in # the file and class documentation (similar to JavaDoc). # Set to NO to disable this. BRIEF_MEMBER_DESC = YES # If the REPEAT_BRIEF tag is set to YES (the default) Doxygen will prepend # the brief description of a member or function before the detailed description. # Note: if both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the # brief descriptions will be completely suppressed. REPEAT_BRIEF = YES # If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then # Doxygen will generate a detailed section even if there is only a brief # description. ALWAYS_DETAILED_SEC = NO # If the FULL_PATH_NAMES tag is set to YES then Doxygen will prepend the full # path before files name in the file list and in the header files. If set # to NO the shortest path that makes the file name unique will be used. FULL_PATH_NAMES = NO # If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag # can be used to strip a user defined part of the path. Stripping is # only done if one of the specified strings matches the left-hand part of # the path. It is allowed to use relative paths in the argument list. STRIP_FROM_PATH = # The INTERNAL_DOCS tag determines if documentation # that is typed after a \internal command is included. If the tag is set # to NO (the default) then the documentation will be excluded. # Set it to YES to include the internal documentation. INTERNAL_DOCS = NO # If the CLASS_DIAGRAMS tag is set to YES (the default) Doxygen will # generate a class diagram (in Html and LaTeX) for classes with base or # super classes. Setting the tag to NO turns the diagrams off. CLASS_DIAGRAMS = YES # If the SOURCE_BROWSER tag is set to YES then a list of source files will # be generated. Documented entities will be cross-referenced with these sources. SOURCE_BROWSER = YES # Setting the INLINE_SOURCES tag to YES will include the body # of functions and classes directly in the documentation. INLINE_SOURCES = NO # Setting the STRIP_CODE_COMMENTS tag to YES (the default) will instruct # doxygen to hide any special comment blocks from generated source code # fragments. Normal C and C++ comments will always remain visible. STRIP_CODE_COMMENTS = YES # If the CASE_SENSE_NAMES tag is set to NO then Doxygen will only generate # file names in lower case letters. If set to YES upper case letters are also # allowed. This is useful if you have classes or files whose names only differ # in case and if your file system supports case sensitive file names. Windows # users are adviced to set this option to NO. CASE_SENSE_NAMES = YES # If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter # (but less readable) file names. This can be useful is your file systems # doesn't support long names like on DOS, Mac, or CD-ROM. SHORT_NAMES = NO # If the HIDE_SCOPE_NAMES tag is set to NO (the default) then Doxygen # will show members with their full class and namespace scopes in the # documentation. If set to YES the scope will be hidden. HIDE_SCOPE_NAMES = NO # If the VERBATIM_HEADERS tag is set to YES (the default) then Doxygen # will generate a verbatim copy of the header file for each class for # which an include is specified. Set to NO to disable this. VERBATIM_HEADERS = YES # If the SHOW_INCLUDE_FILES tag is set to YES (the default) then Doxygen # will put list of the files that are included by a file in the documentation # of that file. SHOW_INCLUDE_FILES = YES # If the JAVADOC_AUTOBRIEF tag is set to YES then Doxygen # will interpret the first line (until the first dot) of a JavaDoc-style # comment as the brief description. If set to NO, the JavaDoc # comments will behave just like the Qt-style comments (thus requiring an # explict @brief command for a brief description. JAVADOC_AUTOBRIEF = YES # If the INHERIT_DOCS tag is set to YES (the default) then an undocumented # member inherits the documentation from any documented member that it # reimplements. INHERIT_DOCS = YES # If the INLINE_INFO tag is set to YES (the default) then a tag [inline] # is inserted in the documentation for inline members. INLINE_INFO = YES # If the SORT_MEMBER_DOCS tag is set to YES (the default) then doxygen # will sort the (detailed) documentation of file and class members # alphabetically by member name. If set to NO the members will appear in # declaration order. SORT_MEMBER_DOCS = YES # If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC # tag is set to YES, then doxygen will reuse the documentation of the first # member in the group (if any) for the other members of the group. By default # all members of a group must be documented explicitly. DISTRIBUTE_GROUP_DOC = NO # The TAB_SIZE tag can be used to set the number of spaces in a tab. # Doxygen uses this value to replace tabs by spaces in code fragments. TAB_SIZE = 8 # The GENERATE_TODOLIST tag can be used to enable (YES) or # disable (NO) the todo list. This list is created by putting \todo # commands in the documentation. GENERATE_TODOLIST = YES # The GENERATE_TESTLIST tag can be used to enable (YES) or # disable (NO) the test list. This list is created by putting \test # commands in the documentation. GENERATE_TESTLIST = YES # The GENERATE_BUGLIST tag can be used to enable (YES) or # disable (NO) the bug list. This list is created by putting \bug # commands in the documentation. GENERATE_BUGLIST = YES # This tag can be used to specify a number of aliases that acts # as commands in the documentation. An alias has the form "name=value". # For example adding "sideeffect=\par Side Effects:\n" will allow you to # put the command \sideeffect (or @sideeffect) in the documentation, which # will result in a user defined paragraph with heading "Side Effects:". # You can put \n's in the value part of an alias to insert newlines. ALIASES = # The ENABLED_SECTIONS tag can be used to enable conditional # documentation sections, marked by \if sectionname ... \endif. ENABLED_SECTIONS = # The MAX_INITIALIZER_LINES tag determines the maximum number of lines # the initial value of a variable or define consist of for it to appear in # the documentation. If the initializer consists of more lines than specified # here it will be hidden. Use a value of 0 to hide initializers completely. # The appearance of the initializer of individual variables and defines in the # documentation can be controlled using \showinitializer or \hideinitializer # command in the documentation regardless of this setting. MAX_INITIALIZER_LINES = 30 # Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C sources # only. Doxygen will then generate output that is more tailored for C. # For instance some of the names that are used will be different. The list # of all members will be omitted, etc. OPTIMIZE_OUTPUT_FOR_C = NO # Set the SHOW_USED_FILES tag to NO to disable the list of files generated # at the bottom of the documentation of classes and structs. If set to YES the # list will mention the files that were used to generate the documentation. SHOW_USED_FILES = YES #--------------------------------------------------------------------------- # configuration options related to warning and progress messages #--------------------------------------------------------------------------- # The QUIET tag can be used to turn on/off the messages that are generated # by doxygen. Possible values are YES and NO. If left blank NO is used. QUIET = NO # The WARNINGS tag can be used to turn on/off the warning messages that are # generated by doxygen. Possible values are YES and NO. If left blank # NO is used. WARNINGS = YES # If WARN_IF_UNDOCUMENTED is set to YES, then doxygen will generate warnings # for undocumented members. If EXTRACT_ALL is set to YES then this flag will # automatically be disabled. WARN_IF_UNDOCUMENTED = YES # The WARN_FORMAT tag determines the format of the warning messages that # doxygen can produce. The string should contain the $file, $line, and $text # tags, which will be replaced by the file and line number from which the # warning originated and the warning text. WARN_FORMAT = # The WARN_LOGFILE tag can be used to specify a file to which warning # and error messages should be written. If left blank the output is written # to stderr. WARN_LOGFILE = #--------------------------------------------------------------------------- # configuration options related to the input files #--------------------------------------------------------------------------- # The INPUT tag can be used to specify the files and/or directories that contain # documented source files. You may enter file names like "myfile.cpp" or # directories like "/usr/src/myproject". Separate the files or directories # with spaces. INPUT = ../../src # If the value of the INPUT tag contains directories, you can use the # FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp # and *.h) to filter out the source-files in the directories. If left # blank all files are included. FILE_PATTERNS = *.h *.cpp # The RECURSIVE tag can be used to turn specify whether or not subdirectories # should be searched for input files as well. Possible values are YES and NO. # If left blank NO is used. RECURSIVE = YES # The EXCLUDE tag can be used to specify files and/or directories that should # excluded from the INPUT source files. This way you can easily exclude a # subdirectory from a directory tree whose root is specified with the INPUT tag. EXCLUDE = # If the value of the INPUT tag contains directories, you can use the # EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude # certain files from those directories. EXCLUDE_PATTERNS = # The EXAMPLE_PATH tag can be used to specify one or more files or # directories that contain example code fragments that are included (see # the \include command). EXAMPLE_PATH = # If the value of the EXAMPLE_PATH tag contains directories, you can use the # EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp # and *.h) to filter out the source-files in the directories. If left # blank all files are included. EXAMPLE_PATTERNS = # The IMAGE_PATH tag can be used to specify one or more files or # directories that contain image that are included in the documentation (see # the \image command). IMAGE_PATH = # The INPUT_FILTER tag can be used to specify a program that doxygen should # invoke to filter for each input file. Doxygen will invoke the filter program # by executing (via popen()) the command <filter> <input-file>, where <filter> # is the value of the INPUT_FILTER tag, and <input-file> is the name of an # input file. Doxygen will then use the output that the filter program writes # to standard output. INPUT_FILTER = # If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using # INPUT_FILTER) will be used to filter the input files when producing source # files to browse. FILTER_SOURCE_FILES = NO #--------------------------------------------------------------------------- # configuration options related to the alphabetical class index #--------------------------------------------------------------------------- # If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index # of all compounds will be generated. Enable this if the project # contains a lot of classes, structs, unions or interfaces. ALPHABETICAL_INDEX = YES # If the alphabetical index is enabled (see ALPHABETICAL_INDEX) then # the COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns # in which this list will be split (can be a number in the range [1..20]) COLS_IN_ALPHA_INDEX = 5 # In case all classes in a project start with a common prefix, all # classes will be put under the same header in the alphabetical index. # The IGNORE_PREFIX tag can be used to specify one or more prefixes that # should be ignored while generating the index headers. IGNORE_PREFIX = #--------------------------------------------------------------------------- # configuration options related to the HTML output #--------------------------------------------------------------------------- # If the GENERATE_HTML tag is set to YES (the default) Doxygen will # generate HTML output. GENERATE_HTML = NO # The HTML_OUTPUT tag is used to specify where the HTML docs will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `html' will be used as the default path. HTML_OUTPUT = # The HTML_HEADER tag can be used to specify a personal HTML header for # each generated HTML page. If it is left blank doxygen will generate a # standard header. HTML_HEADER = # The HTML_FOOTER tag can be used to specify a personal HTML footer for # each generated HTML page. If it is left blank doxygen will generate a # standard footer. HTML_FOOTER = # The HTML_STYLESHEET tag can be used to specify a user defined cascading # style sheet that is used by each HTML page. It can be used to # fine-tune the look of the HTML output. If the tag is left blank doxygen # will generate a default style sheet HTML_STYLESHEET = # If the HTML_ALIGN_MEMBERS tag is set to YES, the members of classes, # files or namespaces will be aligned in HTML using tables. If set to # NO a bullet list will be used. HTML_ALIGN_MEMBERS = YES # If the GENERATE_HTMLHELP tag is set to YES, additional index files # will be generated that can be used as input for tools like the # Microsoft HTML help workshop to generate a compressed HTML help file (.chm) # of the generated HTML documentation. GENERATE_HTMLHELP = NO # If the GENERATE_HTMLHELP tag is set to YES, the GENERATE_CHI flag # controls if a separate .chi index file is generated (YES) or that # it should be included in the master .chm file (NO). GENERATE_CHI = NO # If the GENERATE_HTMLHELP tag is set to YES, the BINARY_TOC flag # controls whether a binary table of contents is generated (YES) or a # normal table of contents (NO) in the .chm file. BINARY_TOC = NO # The TOC_EXPAND flag can be set to YES to add extra items for group members # to the contents of the Html help documentation and to the tree view. TOC_EXPAND = YES # The DISABLE_INDEX tag can be used to turn on/off the condensed index at # top of each HTML page. The value NO (the default) enables the index and # the value YES disables it. DISABLE_INDEX = NO # This tag can be used to set the number of enum values (range [1..20]) # that doxygen will group on one line in the generated HTML documentation. ENUM_VALUES_PER_LINE = 4 # If the GENERATE_TREEVIEW tag is set to YES, a side panel will be # generated containing a tree-like index structure (just like the one that # is generated for HTML Help). For this to work a browser that supports # JavaScript and frames is required (for instance Netscape 4.0+ # or Internet explorer 4.0+). GENERATE_TREEVIEW = YES # If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be # used to set the initial width (in pixels) of the frame in which the tree # is shown. TREEVIEW_WIDTH = 250 #--------------------------------------------------------------------------- # configuration options related to the LaTeX output #--------------------------------------------------------------------------- # If the GENERATE_LATEX tag is set to YES (the default) Doxygen will # generate Latex output. GENERATE_LATEX = YES # The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `latex' will be used as the default path. LATEX_OUTPUT = # If the COMPACT_LATEX tag is set to YES Doxygen generates more compact # LaTeX documents. This may be useful for small projects and may help to # save some trees in general. COMPACT_LATEX = NO # The PAPER_TYPE tag can be used to set the paper type that is used # by the printer. Possible values are: a4, a4wide, letter, legal and # executive. If left blank a4wide will be used. PAPER_TYPE = a4wide # The EXTRA_PACKAGES tag can be to specify one or more names of LaTeX # packages that should be included in the LaTeX output. EXTRA_PACKAGES = # The LATEX_HEADER tag can be used to specify a personal LaTeX header for # the generated latex document. The header should contain everything until # the first chapter. If it is left blank doxygen will generate a # standard header. Notice: only use this tag if you know what you are doing! LATEX_HEADER = # If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated # is prepared for conversion to pdf (using ps2pdf). The pdf file will # contain links (just like the HTML output) instead of page references # This makes the output suitable for online browsing using a pdf viewer. PDF_HYPERLINKS = YES # If the USE_PDFLATEX tag is set to YES, pdflatex will be used instead of # plain latex in the generated Makefile. Set this option to YES to get a # higher quality PDF documentation. USE_PDFLATEX = YES # If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \\batchmode. # command to the generated LaTeX files. This will instruct LaTeX to keep # running if errors occur, instead of asking the user for help. # This option is also used when generating formulas in HTML. LATEX_BATCHMODE = NO #--------------------------------------------------------------------------- # configuration options related to the RTF output #--------------------------------------------------------------------------- # If the GENERATE_RTF tag is set to YES Doxygen will generate RTF output # The RTF output is optimised for Word 97 and may not look very pretty with # other RTF readers or editors. GENERATE_RTF = NO # The RTF_OUTPUT tag is used to specify where the RTF docs will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `rtf' will be used as the default path. RTF_OUTPUT = # If the COMPACT_RTF tag is set to YES Doxygen generates more compact # RTF documents. This may be useful for small projects and may help to # save some trees in general. COMPACT_RTF = NO # If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated # will contain hyperlink fields. The RTF file will # contain links (just like the HTML output) instead of page references. # This makes the output suitable for online browsing using WORD or other # programs which support those fields. # Note: wordpad (write) and others do not support links. RTF_HYPERLINKS = NO # Load stylesheet definitions from file. Syntax is similar to doxygen's # config file, i.e. a series of assigments. You only have to provide # replacements, missing definitions are set to their default value. RTF_STYLESHEET_FILE = # Set optional variables used in the generation of an rtf document. # Syntax is similar to doxygen's config file. RTF_EXTENSIONS_FILE = #--------------------------------------------------------------------------- # configuration options related to the man page output #--------------------------------------------------------------------------- # If the GENERATE_MAN tag is set to YES (the default) Doxygen will # generate man pages GENERATE_MAN = NO # The MAN_OUTPUT tag is used to specify where the man pages will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `man' will be used as the default path. MAN_OUTPUT = # The MAN_EXTENSION tag determines the extension that is added to # the generated man pages (default is the subroutine's section .3) MAN_EXTENSION = # If the MAN_LINKS tag is set to YES and Doxygen generates man output, # then it will generate one additional man file for each entity # documented in the real man page(s). These additional files # only source the real man page, but without them the man command # would be unable to find the correct page. The default is NO. MAN_LINKS = NO #--------------------------------------------------------------------------- # configuration options related to the XML output #--------------------------------------------------------------------------- # If the GENERATE_XML tag is set to YES Doxygen will # generate an XML file that captures the structure of # the code including all documentation. Note that this # feature is still experimental and incomplete at the # moment. GENERATE_XML = NO #--------------------------------------------------------------------------- # Configuration options related to the preprocessor #--------------------------------------------------------------------------- # If the ENABLE_PREPROCESSING tag is set to YES (the default) Doxygen will # evaluate all C-preprocessor directives found in the sources and include # files. ENABLE_PREPROCESSING = YES # If the MACRO_EXPANSION tag is set to YES Doxygen will expand all macro # names in the source code. If set to NO (the default) only conditional # compilation will be performed. Macro expansion can be done in a controlled # way by setting EXPAND_ONLY_PREDEF to YES. MACRO_EXPANSION = NO # If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES # then the macro expansion is limited to the macros specified with the # PREDEFINED and EXPAND_AS_PREDEFINED tags. EXPAND_ONLY_PREDEF = NO # If the SEARCH_INCLUDES tag is set to YES (the default) the includes files # in the INCLUDE_PATH (see below) will be search if a #include is found. SEARCH_INCLUDES = YES # The INCLUDE_PATH tag can be used to specify one or more directories that # contain include files that are not input files but should be processed by # the preprocessor. INCLUDE_PATH = # You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard # patterns (like *.h and *.hpp) to filter out the header-files in the # directories. If left blank, the patterns specified with FILE_PATTERNS will # be used. INCLUDE_FILE_PATTERNS = # The PREDEFINED tag can be used to specify one or more macro names that # are defined before the preprocessor is started (similar to the -D option of # gcc). The argument of the tag is a list of macros of the form: name # or name=definition (no spaces). If the definition and the = are # omitted =1 is assumed. PREDEFINED = # If the MACRO_EXPANSION and EXPAND_PREDEF_ONLY tags are set to YES then # this tag can be used to specify a list of macro names that should be expanded. # The macro definition that is found in the sources will be used. # Use the PREDEFINED tag if you want to use a different macro definition. EXPAND_AS_DEFINED = #--------------------------------------------------------------------------- # Configuration::addtions related to external references #--------------------------------------------------------------------------- # The TAGFILES tag can be used to specify one or more tagfiles. TAGFILES = # When a file name is specified after GENERATE_TAGFILE, doxygen will create # a tag file that is based on the input files it reads. GENERATE_TAGFILE = # If the ALLEXTERNALS tag is set to YES all external classes will be listed # in the class index. If set to NO only the inherited external classes # will be listed. ALLEXTERNALS = NO # The PERL_PATH should be the absolute path and name of the perl script # interpreter (i.e. the result of `which perl'). PERL_PATH = #--------------------------------------------------------------------------- # Configuration options related to the dot tool #---------------------------------------------------... [truncated message content] |
From: Marek P. <ma...@us...> - 2001-09-25 18:57:58
|
Update of /cvsroot/javaprofiler/library/config In directory usw-pr-cvs1:/tmp/cvs-serv17653/config Modified Files: README Log Message: changes in doc Index: README =================================================================== RCS file: /cvsroot/javaprofiler/library/config/README,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -r1.8 -r1.9 *** README 2001/07/28 05:03:40 1.8 --- README 2001/09/25 18:57:55 1.9 *************** *** 2,27 **** of the source files and rename it to "config.mk" - * Microsoft Windows NT 4.0/2000, x86 - * Visual C/C++ 6.0 ! config_x86_nt40_vc98.mk ! * Microsoft Windows 9x, x86 ! * Visual C/C++ 6.0 ! config_x86_win9x_vc98.mk ! * Microsoft Windows NT 4.0/2000, x86 ! * Borland C/C++ 5.5.1 ! config_x86_nt40_bcc551.mk - * Microsoft Windows 9x, x86 - * Borland C/C++ 5.5.1 ! config_x86_win9x_bcc551.mk ! * SunOS 5.8, SPARC ! * GNU C/C++ 3.0 ! config_sparc_sunos58_gcc30.mk --- 2,31 ---- of the source files and rename it to "config.mk" ! Microsoft Windows NT4.0/2000, x86 ! * config_x86_nt40_vc98.mk ! Microsoft Visual C/C++ 6.0 ! * config_x86_nt40_bcc551.mk ! Borland C/C++ 5.5.1 ! Microsoft Windows 9x, x86 ! * config_x86_win9x_vc98.mk ! Microsoft Visual C/C++ 6.0 ! ! * config_x86_win9x_bcc551.mk ! ! Borland C/C++ 5.5.1 ! ! ! SunOS 7/8, SPARC/x86 ! ! * config_sparc_sunos58_gcc30.mk ! ! GNU C/C++ 3.0, GNU make 3.7x |
From: Marek P. <ma...@us...> - 2001-09-25 18:57:58
|
Update of /cvsroot/javaprofiler/library In directory usw-pr-cvs1:/tmp/cvs-serv17653 Modified Files: README Log Message: changes in doc Index: README =================================================================== RCS file: /cvsroot/javaprofiler/library/README,v retrieving revision 1.25 retrieving revision 1.26 diff -C2 -r1.25 -r1.26 *** README 2001/09/23 16:55:27 1.25 --- README 2001/09/25 18:57:55 1.26 *************** *** 43,47 **** sources are supported). ! * Microsoft Windows NT4/2000 * Microsoft Windows 9x * SunOS 5.8 --- 43,47 ---- sources are supported). ! * Microsoft Windows NT4.0/2000 * Microsoft Windows 9x * SunOS 5.8 *************** *** 56,60 **** of GNU C/C++. ! * Visual C/C++ 6.0 * Borland C/C++ 5.5.1 * GNU C/C++ 3.0 --- 56,60 ---- of GNU C/C++. ! * Microsoft Visual C/C++ 6.0 * Borland C/C++ 5.5.1 * GNU C/C++ 3.0 *************** *** 73,79 **** classes, methods and class members are well-documented. For creating of project documentation in HTML (or PDF) format, DOXYGEN (for C++ ! and/or Java sources) is used. * Doxygen 1.2.10 Data flows, schemes and relations between structures are described --- 73,80 ---- classes, methods and class members are well-documented. For creating of project documentation in HTML (or PDF) format, DOXYGEN (for C++ ! and/or Java sources) is used. GRAPHVIZ generates graphs for HTML doc. * Doxygen 1.2.10 + * Graphviz 1.7.3 Data flows, schemes and relations between structures are described *************** *** 208,211 **** --- 209,218 ---- where $(MAKE) is appropriate "make" program for given platform/compiler + + + 5.4 Appendices + + Graphviz executables must be in your PATH to generate HTML documentation + correctly. See PATH variable for Win32/UNIX platforms. |
From: Marek P. <ma...@us...> - 2001-09-23 16:55:29
|
Update of /cvsroot/javaprofiler/library In directory usw-pr-cvs1:/tmp/cvs-serv7806 Modified Files: README Log Message: readme changed Index: README =================================================================== RCS file: /cvsroot/javaprofiler/library/README,v retrieving revision 1.24 retrieving revision 1.25 diff -C2 -r1.24 -r1.25 *** README 2001/09/19 19:00:31 1.24 --- README 2001/09/23 16:55:27 1.25 *************** *** 110,114 **** structures inside of profiler dynamic library ! doc/visio/jpegs/ Visio files exported to JPEG format --- 110,114 ---- structures inside of profiler dynamic library ! doc/visio/pdf/ Visio files exported to PDF format |
From: Marek P. <ma...@us...> - 2001-09-23 16:50:18
|
Update of /cvsroot/javaprofiler/library/src/setup In directory usw-pr-cvs1:/tmp/cvs-serv6750/src/setup Modified Files: setup.h Log Message: documentation to IProf interface added Index: setup.h =================================================================== RCS file: /cvsroot/javaprofiler/library/src/setup/setup.h,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -r1.8 -r1.9 *** setup.h 2001/09/19 18:57:27 1.8 --- setup.h 2001/09/23 16:50:15 1.9 *************** *** 45,49 **** public: ! /// Profiling granularity levels enum LEVEL { --- 45,49 ---- public: ! /// profiling granularity levels enum LEVEL { *************** *** 53,60 **** }; ! /// Memory profiling setup parameters struct Alloc { ! /// Whether memory profiling is turned ON or OFF int turnedOn; --- 53,60 ---- }; ! /// memory profiling setup parameters struct Alloc { ! /// whether memory profiling is turned ON or OFF int turnedOn; *************** *** 65,72 **** LEVEL level; ! /// Trace depth int traceDepth; ! /// Whether resolution to threads is enabled int threadsEnabled; }; --- 65,72 ---- LEVEL level; ! /// trace depth int traceDepth; ! /// whether resolution to threads is enabled int threadsEnabled; }; *************** *** 75,82 **** struct Cpu { ! /// Whether CPU profiling is turned ON or OFF int turnedOn; ! /// Whether to use sampling or exact profiling int sampling; --- 75,82 ---- struct Cpu { ! /// whether CPU profiling is turned ON or OFF int turnedOn; ! /// whether to use sampling or exact profiling int sampling; *************** *** 86,100 **** LEVEL level; ! /// Trace depth int traceDepth; ! /// Whether resolution to threads is enabled int threadsEnabled; }; ! /// Monitor profiling setup parameters struct Mon { ! /// Whether monitor profiling is turned ON or OFF int turnedOn; --- 86,100 ---- LEVEL level; ! /// trace depth int traceDepth; ! /// whether resolution to threads is enabled int threadsEnabled; }; ! /// monitor profiling setup parameters struct Mon { ! /// whether monitor profiling is turned ON or OFF int turnedOn; *************** *** 104,111 **** LEVEL level; ! /// Trace depth int traceDepth; ! /// Whether resolution to threads is enabled int threadsEnabled; }; --- 104,111 ---- LEVEL level; ! /// trace depth int traceDepth; ! /// whether resolution to threads is enabled int threadsEnabled; }; *************** *** 147,151 **** }; ! /// Memory profiling Alloc alloc; --- 147,151 ---- }; ! /// memory profiling Alloc alloc; *************** *** 153,160 **** Cpu cpu; ! /// Monitor profiling Mon mon; ! /// Communication Com com; --- 153,160 ---- Cpu cpu; ! /// monitor profiling Mon mon; ! /// communication Com com; |
Update of /cvsroot/javaprofiler/library/src2 In directory usw-pr-cvs1:/tmp/cvs-serv6750/src2 Modified Files: BAD_COMMAND_Exception.java BAD_DATA_TYPE_Exception.java BAD_INFO_ID_Exception.java BAD_INFO_TYPE_Exception.java BAD_OBJ_ID_Exception.java Buffer.java COMMUN_Exception.java Commun.java CommunSetup.java CommunSetupShMem.java CommunSetupSocket.java CommunShMem.java CommunSocket.java IProf.java IProfException.java UNKNOWN_Exception.java Log Message: documentation to IProf interface added Index: BAD_COMMAND_Exception.java =================================================================== RCS file: /cvsroot/javaprofiler/library/src2/BAD_COMMAND_Exception.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** BAD_COMMAND_Exception.java 2001/09/02 20:14:22 1.2 --- BAD_COMMAND_Exception.java 2001/09/23 16:50:15 1.3 *************** *** 33,35 **** --- 33,42 ---- */ + /** Bad command exception. This exception is raised when a request for + ** specified objID is not possible (eg. when you try (in one call to + ** getAll() or getChanged()) to gain threads where concrete method was + ** called and you have method's objId only). + ** + ** @author Marek Przeczek */ + public class BAD_COMMAND_Exception extends IProfException {}; Index: BAD_DATA_TYPE_Exception.java =================================================================== RCS file: /cvsroot/javaprofiler/library/src2/BAD_DATA_TYPE_Exception.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** BAD_DATA_TYPE_Exception.java 2001/09/02 20:14:22 1.2 --- BAD_DATA_TYPE_Exception.java 2001/09/23 16:50:15 1.3 *************** *** 33,35 **** --- 33,44 ---- */ + /** Bad objID type exception. This exception is raised when used ID is + ** of different type than specified (eg. when an object has statistic + ** data about memory profiling only and someone tries to gain cpu + ** profiling data from it). + ** + ** @see BAD_INFO_TYPE_Exception + ** + ** @author Marek Przeczek */ + public class BAD_DATA_TYPE_Exception extends IProfException {}; Index: BAD_INFO_ID_Exception.java =================================================================== RCS file: /cvsroot/javaprofiler/library/src2/BAD_INFO_ID_Exception.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** BAD_INFO_ID_Exception.java 2001/09/02 20:14:22 1.2 --- BAD_INFO_ID_Exception.java 2001/09/23 16:50:15 1.3 *************** *** 33,35 **** --- 33,43 ---- */ + /** Bad infoID exception. This exception is raised when used ID is not + ** an infoID of an object (eg. when objID is used as an infoID, this + ** exception can be raised). + ** + ** @see BAD_OBJ_ID_Exception + ** + ** @author Marek Przeczek */ + public class BAD_INFO_ID_Exception extends IProfException {}; Index: BAD_INFO_TYPE_Exception.java =================================================================== RCS file: /cvsroot/javaprofiler/library/src2/BAD_INFO_TYPE_Exception.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** BAD_INFO_TYPE_Exception.java 2001/09/02 20:14:22 1.2 --- BAD_INFO_TYPE_Exception.java 2001/09/23 16:50:15 1.3 *************** *** 33,35 **** --- 33,49 ---- */ + /** Bad infoID type exception. This exception is raised when type of + ** infoID is bad (eg. infoID exists but is of different type than + ** specified). + ** + ** An example: when trying to gain information about method (eg. with + ** infoId = 1), getInfo( 1, METHOD_INFO) must be called. METHOD_INFO + ** specifies the type of information, in this case information about + ** method. If another info type is specified, BAD_INFO_TYPE_Exception + ** will be raised. + ** + ** @see BAD_DATA_TYPE_Exception + ** + ** @author Marek Przeczek */ + public class BAD_INFO_TYPE_Exception extends IProfException {}; Index: BAD_OBJ_ID_Exception.java =================================================================== RCS file: /cvsroot/javaprofiler/library/src2/BAD_OBJ_ID_Exception.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** BAD_OBJ_ID_Exception.java 2001/09/02 20:14:22 1.2 --- BAD_OBJ_ID_Exception.java 2001/09/23 16:50:15 1.3 *************** *** 33,35 **** --- 33,43 ---- */ + /** Bad objectID exception. This exception is raised when used ID is not + ** an objID of an object (eg. when an ID to which no object exists is + ** used, this exception is raised). + ** + ** @see BAD_INFO_ID_Exception + ** + ** @author Marek Przeczek */ + public class BAD_OBJ_ID_Exception extends IProfException {}; Index: Buffer.java =================================================================== RCS file: /cvsroot/javaprofiler/library/src2/Buffer.java,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** Buffer.java 2001/09/02 20:14:22 1.4 --- Buffer.java 2001/09/23 16:50:15 1.5 *************** *** 33,42 **** --- 33,55 ---- */ + /** I/O buffer. This class implements an input/output buffer + ** needed during communication between profiler dynamic library + ** and Java. Same class (of the same name and functionality) exists + ** in the dynamic library side - but it is more complicated and flexible + ** than this one. + ** + ** @see Commun + ** + ** @author Marek Przeczek */ + public class Buffer { + /// internal buffer private byte[] _buf; + /// size of buffer private int _size; + /// Default constructor. public Buffer() { *************** *** 45,48 **** --- 58,68 ---- } + /** Constructor. This constructor constructs Buffer object using data + ** from another buffer. The data are copied to this newly created + ** Buffer object. + ** + ** @param buf buffer (an array of bytes) + ** @param size size of buffer 'buf' */ + public Buffer( byte[] buf, int size) { *************** *** 53,56 **** --- 73,83 ---- } + /** Use existing buffer. This method replaces internal buffer by + ** the given one. No copy is created, the buffer 'buf' is used as + ** an internal buffer. + ** + ** @param buf buffer (an array of bytes) + ** @param size size of buffer 'buf' */ + public Buffer useBuffer( byte[] buf, int size) { *************** *** 60,68 **** return this; } ! public byte[] getBuffer() { return _buf;} public int getSize() { return _size;} public void clear() { --- 87,108 ---- return this; } ! ! /** Get buffer. This method returns a reference ! ** to buffer data. ! ** ! ** @return reference to buffer */ ! public byte[] getBuffer() { return _buf;} + /** Get size of data. This method returns size + ** of data stored in buffer. + ** + ** @return size of data */ + public int getSize() { return _size;} + /** Clear buffer. It truncates buffer to zero length, + ** everything stored in the buffer will be lost. */ + public void clear() { *************** *** 71,74 **** --- 111,123 ---- } + /** Put integer into buffer. By this method you can insert Java + ** integer into buffer (of bytes). + ** + ** @param c integer + ** + ** @return this Buffer object + ** + ** @see getInt(), getLong(), getString() */ + public Buffer putInt( int c) { *************** *** 85,88 **** --- 134,146 ---- } + /** Get integer from buffer. This method grabs Java integer located + ** at position 'offset' from the buffer. + ** + ** @param offset position in the buffer + ** + ** @return grabbed integer + ** + ** @see putInt(), getLong(), getString() */ + public int getInt( int offset) { *************** *** 99,102 **** --- 157,169 ---- } + /** Get long integer from buffer. This method grabs Java long + ** integer located at position 'offset' from the buffer. + ** + ** @param offset position in the buffer + ** + ** @return grabbed long integer + ** + ** @see putInt(), getInt(), getString() */ + public long getLong( int offset) { *************** *** 107,110 **** --- 174,187 ---- } + /** Get string from buffer. This method grabs Java string located + ** at position 'offset' from the buffer. In the buffer string is + ** stored as C string (text + terminating null). + ** + ** @param offset position in the buffer + ** + ** @return grabbed string + ** + ** @see putInt(), getInt(), getLong() */ + public String getString( int offset) { *************** *** 114,118 **** return new String( _buf, offset, pos-offset); } ! private byte[] copyBuffer( byte[] dest, byte[] src, int sz) { --- 191,205 ---- return new String( _buf, offset, pos-offset); } ! ! /** Copy buffer. It only copies source buffer to destination one. ! ** Destination buffer must be of sufficient size, no check is ! ** done. ! ** ! ** @param dest destination ! ** @param src source ! ** @param sz size of source buffer ! ** ! ** @return reference to destination buffer */ ! private byte[] copyBuffer( byte[] dest, byte[] src, int sz) { Index: COMMUN_Exception.java =================================================================== RCS file: /cvsroot/javaprofiler/library/src2/COMMUN_Exception.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** COMMUN_Exception.java 2001/09/02 20:14:22 1.2 --- COMMUN_Exception.java 2001/09/23 16:50:15 1.3 *************** *** 33,35 **** --- 33,40 ---- */ + /** Exception. This exception is raised when a communication failed + ** (eg. when server falls down during communication). + ** + ** @author Marek Przeczek */ + public class COMMUN_Exception extends IProfException {}; Index: Commun.java =================================================================== RCS file: /cvsroot/javaprofiler/library/src2/Commun.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** Commun.java 2001/09/02 20:14:22 1.2 --- Commun.java 2001/09/23 16:50:15 1.3 *************** *** 33,46 **** --- 33,88 ---- */ + /** Communication. This is a standard interface for all communication + ** classes. Whole communication is done thru an instance of this + ** interface implementation. + ** + ** @see CommunSocket, CommunShMem + ** + ** @author Marek Przeczek */ + public interface Commun { + /** Initialization of communication. This method should + ** initialize the communication, it means to make a connection + ** with opposite side. + ** + ** @return false (failed); + ** true (ok, initialized) */ + public boolean initialize(); + /** Read data. This method is used to read data + ** from communication channel (socket, shmem etc.) to buffer. + ** + ** @param b reference to Buffer object + ** + ** @return reference to this Commun object + ** + ** @see write() */ + public Commun read( Buffer b); + /** Write data. This method is used to write data + ** from buffer to communication channel (socket, shmem etc.). + ** + ** @param b reference to Buffer object + ** + ** @return reference to this Commun object + ** + ** @see read() */ + public Commun write( Buffer b); + /** Failure indication. Use this method if you want to know + ** the last operation was successful or not. + ** + ** @return false (last operation was successful); + ** true (last operation failed) */ + public boolean hasFailed(); + /** Stop communication. Is stops communication and closes + ** communication channel. */ + public void stopCommun(); }; Index: CommunSetup.java =================================================================== RCS file: /cvsroot/javaprofiler/library/src2/CommunSetup.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** CommunSetup.java 2001/09/02 20:14:22 1.2 --- CommunSetup.java 2001/09/23 16:50:15 1.3 *************** *** 33,45 **** */ public abstract class CommunSetup { public static final int COMMUN_SOCKET = 0; public static final int COMMUN_SHMEM = 1; - public int communType; public CommunSetup() { --- 33,55 ---- */ + /** Communication setup. Other classes holding setup data are inherited + ** from this abstract class. + ** + ** @see CommunSetupSocket, CommunSetupShMem + ** + ** @author Marek Przeczek */ + public abstract class CommunSetup { + /// type of communication - sockets public static final int COMMUN_SOCKET = 0; + /// type of communication - shared memory public static final int COMMUN_SHMEM = 1; + /// type of communication public int communType; + /** Default constructor. Socket communication is used by default. */ public CommunSetup() { *************** *** 48,53 **** } public CommunSetup( int communType) { ! this.communType = communType; } --- 58,69 ---- } + /** Constructor. It sets type of communication. + ** 'communType' argument can take one of the following values: + ** #COMMUN_SOCKET or #COMMUN_SHMEM. + ** + ** @param communType type of communication */ + public CommunSetup( int communType) { ! this.communType = communType; } Index: CommunSetupShMem.java =================================================================== RCS file: /cvsroot/javaprofiler/library/src2/CommunSetupShMem.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** CommunSetupShMem.java 2001/09/02 20:14:22 1.2 --- CommunSetupShMem.java 2001/09/23 16:50:15 1.3 *************** *** 33,43 **** */ public class CommunSetupShMem extends CommunSetup { public String shmemId = new String( "com"); public int shmemSize = 256*1024; - public CommunSetupShMem() { --- 33,52 ---- */ + /** Shared memory communication setup. This class contains setup data + ** for shared memory communication. + ** + ** @see CommunSetup, CommunSetupSocket + ** + ** @author Marek Przeczek */ + public class CommunSetupShMem extends CommunSetup { + /// shared memory name (identifier) - 3 characters public String shmemId = new String( "com"); + /// shared memory size - in bytes public int shmemSize = 256*1024; + /// Default constructor. public CommunSetupShMem() { *************** *** 45,48 **** --- 54,62 ---- } + /** Constructor. It takes setup from given parameters. + ** + ** @param shmemId shared memory name (identifier) - 3 chars only ! + ** @param shmemSize shared memory size - in bytes */ + public CommunSetupShMem( String shmemId, int shmemSize) { Index: CommunSetupSocket.java =================================================================== RCS file: /cvsroot/javaprofiler/library/src2/CommunSetupSocket.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** CommunSetupSocket.java 2001/09/02 20:14:22 1.3 --- CommunSetupSocket.java 2001/09/23 16:50:15 1.4 *************** *** 33,54 **** */ public class CommunSetupSocket extends CommunSetup { public static final int SERVER_MODE = 0; public static final int CLIENT_MODE = 1; - public int connectMode = CLIENT_MODE; public String hostname = new String( "127.0.0.1"); public int port = 25595; ! public CommunSetupSocket() { super( COMMUN_SOCKET); } public CommunSetupSocket( int connectMode, String hostname, int port) { --- 33,71 ---- */ + /** Socket communication setup. This class contains setup data + ** for socket communication. + ** + ** @see CommunSetup, CommunSetupShMem */ + public class CommunSetupSocket extends CommunSetup { + /// connect mode - server public static final int SERVER_MODE = 0; + /// connect mode - client public static final int CLIENT_MODE = 1; + /// connect mode (client by default) public int connectMode = CLIENT_MODE; + /// hostname (used when connect mode is set to 'client') public String hostname = new String( "127.0.0.1"); + /// TCP port (where server should listen or where client should connect to) public int port = 25595; ! /// Default constructor. public CommunSetupSocket() { super( COMMUN_SOCKET); } + + /** Constructor. It takes setup from given parameters. + ** 'connectMode' argument can take one of the following values: + ** #SERVER_MODE or #CLIENT_MODE. + ** + ** @param connectMode connect mode + ** @param hostname hostname + ** @param port port */ public CommunSetupSocket( int connectMode, String hostname, int port) { Index: CommunShMem.java =================================================================== RCS file: /cvsroot/javaprofiler/library/src2/CommunShMem.java,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** CommunShMem.java 2001/09/02 20:14:22 1.4 --- CommunShMem.java 2001/09/23 16:50:15 1.5 *************** *** 33,58 **** */ public class CommunShMem implements Commun { private long data = 0; public CommunShMem( String shmemId, int shmemSize) { construct( shmemId, shmemSize);} ! private native void construct( String shmemId, int shmemSize); protected native void finalize(); ! ! public boolean initialize() { return true;} public native Commun read( Buffer b); public native Commun write( Buffer b); public native boolean hasFailed(); public native void stopCommun(); static { --- 33,123 ---- */ + /** Shared memory communication. This class implements shared memory + ** communication and offers the user of this class the standard + ** communication interface. Implementation is system dependent + ** (so it is different on WIN32 and UNIX systems). It should be + ** faster then using sockets. Because Java has no support for shared + ** memory, JNI is used. + ** + ** @see CommunSocket, Commun + ** + ** @author Marek Przeczek */ + public class CommunShMem implements Commun { + /// 8 bytes long pointer to data private long data = 0; + /** Constructor. Creates shared memory block and + ** needed semaphores for communication. If semaphores + ** or shared memory block already exist, they are used. + ** + ** @param shmemId shared memory identifier (3 characters long only) + ** @param shmemSize shared memory size + ** + ** @see construct() */ public CommunShMem( String shmemId, int shmemSize) { construct( shmemId, shmemSize);} ! /** Constructor. Because JNI does not allow native constructors, ! ** this native method picks constructor's function over. ! ** ! ** @param shmemId shared memory identifier (3 characters long only) ! ** @param shmemSize shared memory size ! ** ! ** @see CommunShMem() */ + private native void construct( String shmemId, int shmemSize); + + /** Finalize. It deattaches and destroys shared memory, destroys + ** semaphores. See Java Language Reference for more information. */ + protected native void finalize(); ! ! /** Initialization of communication. This method does nothing, ! ** it always returns true. ! ** ! ** @return true (ok, initialized) */ ! public boolean initialize() { return true;} + /** Read data. This method is used to read data + ** from communication channel (shmem) to buffer. + ** + ** @param b reference to Buffer object + ** + ** @return reference to this Commun object + ** + ** @see write() */ + public native Commun read( Buffer b); + /** Write data. This method is used to write data + ** from buffer to communication channel (shmem). + ** + ** @param b reference to Buffer object + ** + ** @return reference to this Commun object + ** + ** @see write() */ + public native Commun write( Buffer b); + /** Failure indication. Use this method if you want to know + ** the last operation was successful or not. + ** + ** @return false (last operation was successful); + ** true (last operation failed) */ + public native boolean hasFailed(); + + /** Stop shared memory communication. It stops communication, + ** locks/unlocks semaphores and leaves them in consistent state. */ public native void stopCommun(); + /** Static initializer. It loads native class (stored in dynamic + ** library) to the memory. */ + static { Index: CommunSocket.java =================================================================== RCS file: /cvsroot/javaprofiler/library/src2/CommunSocket.java,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -r1.6 -r1.7 *** CommunSocket.java 2001/09/02 20:14:22 1.6 --- CommunSocket.java 2001/09/23 16:50:15 1.7 *************** *** 37,59 **** import java.net.*; public class CommunSocket implements Commun { private int _connectMode; private String _host; private int _port; ! private boolean _failed = false; private Socket _sock; private BufferedInputStream _in; private BufferedOutputStream _out; private Buffer _buf = (new Buffer()).useBuffer( new byte[4], 4); public CommunSocket( int connectMode, String host, int port) { --- 37,88 ---- import java.net.*; + /** Socket communication. This class implements TCP/IP socket + ** communication and offers the user of this class the standard + ** communication interface.This class stands a server or client out. + ** + ** @see CommunShMem, Commun + ** + ** @author Marek Przeczek */ + public class CommunSocket implements Commun { + /// connect mode (0 = server, 1 = client) private int _connectMode; + /** Hostname. It is used only when connectMode is set + ** to 'client' (1); it contains target host's name. */ + private String _host; + /** Port number. When connectMode is set to 'server' (0), + ** it contains port number, where server listens for new + ** connections; when connectMode is set to 'client' (1), + ** it contains target host's port number. */ + private int _port; ! /// failure indicator private boolean _failed = false; + /// socket private Socket _sock; + /// input stream private BufferedInputStream _in; + /// output stream private BufferedOutputStream _out; + /// internal buffer for binary data private Buffer _buf = (new Buffer()).useBuffer( new byte[4], 4); + /** Constructor. It initializes server for listening + ** on given port (if connectMode is set to 'server'). + ** If connectMode is set to 'client', this class connects + ** to the target specified by 'host' and 'port' arguments. + ** + ** @param connectMode mode (0 = as server, 1 = as client) + ** @param host target host (if connectMode is set to 'client') + ** @param port port number */ public CommunSocket( int connectMode, String host, int port) { *************** *** 64,67 **** --- 93,105 ---- } + /** Initialization of communication. This method initializes + ** socket communication - waits for client and makes a connection. + ** Once a client is connected to this server, another client + ** has no possibility to connect. If used in client mode, it tries + ** to connect to server. + ** + ** @return false (failed); + ** true (ok, client connected) */ + public boolean initialize() { *************** *** 88,91 **** --- 126,138 ---- } + /** Read data. This method is used to read data + ** from communication channel (socket) to buffer. + ** + ** @param b reference to Buffer object + ** + ** @return reference to this Commun object + ** + ** @see write() */ + public Commun read( Buffer b) { *************** *** 125,128 **** --- 172,184 ---- } + /** Write data. This method is used to write data + ** from buffer to communication channel (socket). + ** + ** @param b reference to Buffer object + ** + ** @return reference to this Commun object + ** + ** @see read() */ + public Commun write( Buffer b) { *************** *** 144,148 **** --- 200,213 ---- } + /** Failure indication. Use this method if you want to know + ** the last operation was successful or not. + ** + ** @return false (last operation was successful); + ** true (last operation failed) */ + public boolean hasFailed() { return _failed;} + + /** Stop socket communication. It stops socket communication - + ** closes input/output streams and socket. */ public void stopCommun() { Index: IProf.java =================================================================== RCS file: /cvsroot/javaprofiler/library/src2/IProf.java,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -r1.8 -r1.9 *** IProf.java 2001/09/19 18:57:27 1.8 --- IProf.java 2001/09/23 16:50:15 1.9 *************** *** 48,52 **** public class IProf { ! /** Default constructor. Shared memory is used ** for communication between his Java client and ** profiler dynamic library. */ --- 48,52 ---- public class IProf { ! /** Default constructor. Sockets are used ** for communication between his Java client and [...1208 lines suppressed...] *************** *** 1074,1083 **** ** @return linked list of sID objects ** ! ** @see #getInfo( int, int) ! ** @see #getData( int, int) ! ** @see #getAll( int, int) */ ! public synchronized LinkedList getChanged( int objId, ! int seqType) throws COMMUN_Exception, --- 1226,1232 ---- ** @return linked list of sID objects ** ! ** @see getInfo(), getData(), getAll() */ ! public synchronized LinkedList getChanged( int objId, int seqType) throws COMMUN_Exception, Index: IProfException.java =================================================================== RCS file: /cvsroot/javaprofiler/library/src2/IProfException.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** IProfException.java 2001/09/02 20:14:22 1.2 --- IProfException.java 2001/09/23 16:50:15 1.3 *************** *** 33,35 **** --- 33,45 ---- */ + /** Exception. All custom exceptions raised by IProf class should be + ** inherited from this class, so it should be very easy to catch + ** exceptions belonging to IProf class. + ** + ** @see BAD_COMMAND_Exception, BAD_DATA_TYPE_Exception, + ** BAD_INFO_ID_Exception, BAD_INFO_TYPE_Exception, + ** BAD_OBJ_ID_Exception, COMMUN_Exception, UNKNOWN_Exception + ** + ** @author Marek Przeczek */ + public class IProfException extends Exception {}; Index: UNKNOWN_Exception.java =================================================================== RCS file: /cvsroot/javaprofiler/library/src2/UNKNOWN_Exception.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** UNKNOWN_Exception.java 2001/09/02 20:14:22 1.2 --- UNKNOWN_Exception.java 2001/09/23 16:50:15 1.3 *************** *** 33,35 **** --- 33,41 ---- */ + /** Unknown exception. This exception is raised when a failure cannot + ** be recognised, the only thing we know is that it happened in IProf + ** class. + ** + ** @author Marek Przeczek */ + public class UNKNOWN_Exception extends IProfException {}; |