blob: 2c273314e7c69b3a5f65195d60a0902eea258367 [file] [log] [blame]
<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>README VM Install Type Page</title>
</head>
<body link="#0000FF" vlink="#800080">
<h1 align="center">VM Install Type UI Page</h1>
<p><b><i>Identifier: </i></b>org.eclipse.jdt.debug.ui.vmInstallTypePage</p>
<p><b><i>Description: </i></b>This extension point provides a
mechanism for contributing UI that will appear in the JRE tab of
the launch configuration dialog. The UI is shown only when a VM
of the specified install type is selected in the JRE tab.</p>
<p><b><i>Configuration Markup:</i></b> </p>
<pre>
<tt>&nbsp;&nbsp; &lt;!ELEMENT vmInstallTypePage</tt>&gt;
<tt>&nbsp;&nbsp; &lt;!ATTLIST vmInstallTypePage</tt>
<br><tt>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; id&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; CDATA #REQUIRED</tt>
<br><tt>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; vmInstallTypeID&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; CDATA #REQUIRED</tt>
<br><tt>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; class&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; CDATA #REQUIRED</tt>
</pre>
<ul>
<li><code>id</code> specifies a unique identifier for this vm install type UI page.</li>
<li><code>vmInstallTypeID</code> specifies VM install type that this UI page is
applicable to (corresponds to the id of a VM install type).</li>
<li><code>class</code> specifies a fully qualified name of a Java class
that implements <code>ILaunchConfigurationTab</code>.</li>
</ul>
<p><b><i>Examples:</i></b> </p>
<p>The following is an example of a VM install type page extension point: </p>
<pre>
&lt;extension point="org.eclipse.jdt.debug.ui.vmInstallTypePage"&gt;
&lt;vmInstallTypePage
id="com.example.ExampleVMInstallTypePage"
vmInstallTypeID="com.example.ExampleVMInstallTypeIdentifier"
class="com.example.ExampleVMInstallTypePage"
&lt;/vmInstallTypePage&gt;
&lt;/extension&gt;
</pre>
<p>In the above example, the contributed page will be shown in the JRE tab of the launch
configuration dialog whenever the currently selected JRE has a VM Install type identifier
of <code>com.example.ExampleVMInstallTypeIdentifier</code>.
</p>
<p><b><i>API Information: </i></b>Value of the attribute <b>class</b> must be a fully
qualified name of a Java class that implements the interface <b>
org.eclipse.debug.ui.ILaunchConfigurationTab</b>.
</p>
<p><a href="hglegal.htm"><img src="ngibmcpy.gif" alt="Copyright IBM Corp. 2000, 2001. All Rights Reserved."
border="0" width="195" height="12"></a></p>
</body>
</html>