From: Pavel V. <va...@us...> - 2002-08-21 13:07:13
|
Update of /cvsroot/javaprofiler/jpi/net/sourceforge/javaprofiler/jpi/connect In directory usw-pr-cvs1:/tmp/cvs-serv30791 Added Files: package.html ConnectorManager.java Log Message: VirtualMachineManager renamed to ConnectorManager by michal --- NEW FILE: package.html --- <body> This package contains class {@link Connector} and surrounding classes. </body> --- NEW FILE: ConnectorManager.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.connect; import java.util.List; /** * Class ConnectorManager provides access to * {@link net.sourceforge.javaprofiler.jpi.connect.Connector} objects of * different types. * * @author Jan Stola */ public interface ConnectorManager { /** * Returns the list of all known * {@link net.sourceforge.javaprofiler.jpi.connect.Connector} objects * of the given <code>type</code>. * * @param type mask for the type of connectors that should be listed. * @return a list of * {@link net.sourceforge.javaprofiler.jpi.connect.Connector} objects. */ public List connectors(int type); /** * Identifies the default connector. This connector should be used as * the launching connector when selection of a connector with specific * characteristics is unnecessary. * * @return the default launching connector * {@link net.sourceforge.javaprofiler.jpi.connect.Connector#LAUNCHING_CONNECTOR} */ public Connector defaultConnector(); } /* * $Log: ConnectorManager.java,v $ * Revision 1.1 2002/08/21 13:07:10 vachis * VirtualMachineManager renamed to ConnectorManager * by michal * * Revision 1.1 2002/07/02 20:11:59 stolis * Manager of virtual machines. * */ |