schema.vmInstallPages.exsd Maven / Gradle / Ivy
The newest version!
This extension point allows a wizard page to be contributed for VM installs that require custom editing controls.
Contributes a wizard page for a specific VM install type.
Specifies the VM install type this wizard page is to be used for. Unique identifier corresponding to an <code>IVMInstallType</code>'s id.
Wizard page implementation. Must be a subclass of <code>org.eclipse.jdt.debug.ui.launchConfigurations.AbstractVMInstallPage</code>.
3.4
Following is an example definition of a VM install page.
<p>
<pre>
<extension point="org.eclipse.jdt.debug.ui.vmInstallPages">
<vmInstallPage
vmInstallType="org.eclipse.jdt.launching.EEVMType"
class="org.eclipse.jdt.internal.debug.ui.jres.EEVMPage">
</vmInstallPage>
</extension>
</pre>
</p>
A wizard page must be a subclass of <code>org.eclipse.jdt.debug.ui.launchConfigurations.AbstractVMInstallPage</code>.
JDT provides a default implementation of a wizard page for VMs that do not contribute one.
Copyright (c) 2007 IBM Corporation and others.<br>
This program and the accompanying materials are made
available under the terms of the Eclipse Public License 2.0 which
accompanies this distribution, and is available at
<a href="https://www.eclipse.org/legal/epl-2.0">https://www.eclipse.org/legal/epl-v20.html</a>/
SPDX-License-Identifier: EPL-2.0