From: Pavel V. <va...@us...> - 2002-03-01 11:49:01
|
Update of /cvsroot/javaprofiler/jpiimpl/net/sourceforge/javaprofiler/jpiimpl/data In directory usw-pr-cvs1:/tmp/cvs-serv14118 Added Files: AllocAbstractStatThreadTypeData.java Log Message: rename of class --- NEW FILE: AllocAbstractStatThreadTypeData.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.jpiimpl.data; /** * An abstract statistic class for better granularity of profiling. * * @author Jan Stola */ public abstract class AllocAbstractStatThreadTypeData extends AllocStatIDObjectData { /** * Constructor to be used by subclasses. * * @param ID unique ID. */ protected AllocAbstractStatThreadTypeData(int ID) { super(ID); } } /* * $Log: AllocAbstractStatThreadTypeData.java,v $ * Revision 1.1 2002/03/01 11:48:57 vachis * rename of class * * 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; * references to obejct IDs removed; * Lists changed to Maps. * * Revision 1.1.1.1 2001/07/11 22:28:10 stolis * no message * */ |