|
From: Michal P. <mic...@us...> - 2002-09-10 10:18:50
|
Update of /cvsroot/javaprofiler/jpi/net/sourceforge/javaprofiler/jpi/connect
In directory usw-pr-cvs1:/tmp/cvs-serv12496/net/sourceforge/javaprofiler/jpi/connect
Modified Files:
Connector.java
Log Message:
Javadoc change.
Index: Connector.java
===================================================================
RCS file: /cvsroot/javaprofiler/jpi/net/sourceforge/javaprofiler/jpi/connect/Connector.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** Connector.java 21 Aug 2002 13:06:21 -0000 1.2
--- Connector.java 10 Sep 2002 10:18:46 -0000 1.3
***************
*** 26,32 ****
/**
! * Object used to get instance of {@link VirtualMachineRef}. Different implementations
! * of this interface acquire <code>VirtualMachineRef</code> differently - by launching
! * new VM, connecting to an existing VM or listening for a connection from VM.
* <p>
* Each connector has a set of arguments which controls its exact operation.
--- 26,33 ----
/**
! * Object used to get instance of {@link net.sourceforge.javaprofiler.jpi.VirtualMachineRef}.
! * Different implementations of this interface acquire <code>VirtualMachineRef</code>
! * differently - by launching new VM, connecting to an existing VM or listening for
! * a connection from VM.
* <p>
* Each connector has a set of arguments which controls its exact operation.
***************
*** 39,43 ****
/**
* Mask for attaching connectors. Attaching connectors can be used to attach
! * to an existing target VM and create a {@link VirtualMachineRef} mirror for it.
*/
public static final int ATTACHING_CONNECTOR = 1;
--- 40,45 ----
/**
* Mask for attaching connectors. Attaching connectors can be used to attach
! * to an existing target VM and create a
! * {@link net.sourceforge.javaprofiler.jpi.VirtualMachineRef} mirror for it.
*/
public static final int ATTACHING_CONNECTOR = 1;
***************
*** 45,54 ****
* Mask for listening connectors. Listening connectors can be used to listen
* for a connection initiated by a target VM and create
! * a {@link VirtualMachineRef} mirror for it.
*/
public static final int LISTENING_CONNECTOR = 2;
/**
* Mask for launching connectors. Launching connectors can be used to launch
! * a new target VM and immediately create a {@link VirtualMachineRef} mirror for it.
*/
public static final int LAUNCHING_CONNECTOR = 4;
--- 47,57 ----
* Mask for listening connectors. Listening connectors can be used to listen
* for a connection initiated by a target VM and create
! * a {@link net.sourceforge.javaprofiler.jpi.VirtualMachineRef} mirror for it.
*/
public static final int LISTENING_CONNECTOR = 2;
/**
* Mask for launching connectors. Launching connectors can be used to launch
! * a new target VM and immediately create a
! * {@link net.sourceforge.javaprofiler.jpi.VirtualMachineRef} mirror for it.
*/
public static final int LAUNCHING_CONNECTOR = 4;
***************
*** 66,70 ****
/**
! * Returns a human-readable description of this connector and its purpose.
*
* @return the description of this connector
--- 69,80 ----
/**
! * Returns a short human-readable name of this connector. It should not be more than
! * one line long.
! */
! public String label();
!
! /**
! * Returns a human-readable description of this connector and its purpose. It is
! * expected that UI places this text into some kind of multiline widget.
*
* @return the description of this connector
***************
*** 124,128 ****
/**
! * Returns a short human-readable label for this argument.
*
* @return a label for this argument
--- 134,139 ----
/**
! * Returns a short human-readable label for this argument. It should not be
! * more than one line long.
*
* @return a label for this argument
***************
*** 131,135 ****
/**
! * Returns a human-readable description of this argument and its purpose.
*
* @return the description of this argument
--- 142,147 ----
/**
! * Returns a human-readable description of this argument and its purpose. It can
! * be more than one line long, it can contain paragraphs.
*
* @return the description of this argument
***************
*** 165,169 ****
* before using this argument in establishing a connection.
*
! * @return <code>true</code> if the argument must be specified; <code>false</code> otherwise.
*/
public boolean isMandatory();
--- 177,182 ----
* before using this argument in establishing a connection.
*
! * @return <code>true</code> if the argument must be specified;
! * <code>false</code> otherwise.
*/
public boolean isMandatory();
***************
*** 287,290 ****
--- 300,307 ----
/*
* $Log$
+ * Revision 1.3 2002/09/10 10:18:46 michalpise
+ *
+ * Javadoc change.
+ *
* Revision 1.2 2002/08/21 13:06:21 vachis
* VirtualMachineManager renamed to ConnectorManager
|