blob: e5a43d79672049b33157347f6bde967195160db3 [file] [log] [blame]
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<!--
Copyright (c) 2016 Manumitting Technologies Inc and others.
All rights reserved. This program and the accompanying materials
are made available under the terms of the Eclipse Public License v1.0
which accompanies this distribution, and is available at
http://www.eclipse.org/legal/epl-v10.html
Contributors:
Manumitting Technologies Inc - initial API and implementation
-->
<plugin>
<extension
point="org.eclipse.ui.intro.quicklinks">
<!-- Invoke a simple command -->
<quicklink
command="org.eclipse.ui.edit.text.openLocalFile"
description="Open a single file"
label="Open an existing file"
standby="true">
</quicklink>
<!--
Open the New Java Project wizard; note that icon is provided by <override> below;
want to override label and description as the command description is generic
-->
<quicklink
command="org.eclipse.ui.newWizard(newWizardId=org.eclipse.jdt.ui.wizards.JavaProjectWizard)"
description="Create a new Java Eclipse project"
label="Create a new Java project"
standby="true">
</quicklink>
<!-- Open the Import Existing Project -->
<quicklink
command="org.eclipse.ui.file.import(importWizardId=org.eclipse.ui.wizards.import.ExternalProject)"
description="Import an already existing project into Eclipse"
icon="platform:/plugin/org.eclipse.ui/icons/full/wizban/import_wiz.png"
label="Import an existing project"
standby="true">
</quicklink>
<!-- Cause all New XXX quicklinks to use the wizban/new_wiz image -->
<override
command="org.eclipse.ui.newWizard*"
icon="platform:/plugin/org.eclipse.ui/icons/full/wizban/new_wiz.png"
theme="org.eclipse.ui.intro.universal.solstice">
</override>
<!--
Use default labelling and icon from showMPC command; importance should
cause it to be sorted above other commands
-->
<quicklink
command="org.eclipse.epp.mpc.ui.command.showMarketplaceWizard"
importance="high">
</quicklink>
</extension>
</plugin>