blob: 83d9832a8b301f8a71e54e984ad6a1b04e4e912a [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 -->
<command
description="Open a single file"
id="org.eclipse.ui.edit.text.openLocalFile"
label="Open an existing file"
resolution="launchbar">
</command>
<!--
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
-->
<command
description="Create a new Java Eclipse project"
id="org.eclipse.ui.newWizard(newWizardId=org.eclipse.jdt.ui.wizards.JavaProjectWizard)"
label="Create a new Java project">
</command>
<!-- Open the Import Existing Project -->
<command
description="Import an already existing project into Eclipse"
icon="platform:/plugin/org.eclipse.ui/icons/full/wizban/import_wiz.png"
id="org.eclipse.ui.file.import(importWizardId=org.eclipse.ui.wizards.import.ExternalProject)"
label="Import an existing project"
resolution="standby">
</command>
<!-- 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
-->
<command
id="org.eclipse.epp.mpc.ui.command.showMarketplaceWizard"
importance="high"
resolution="close">
</command>
<url
location="http://org.eclipse.ui.intro/showStandby?partId=org.eclipse.platform.cheatsheet&amp;input=org.eclipse.jdt.helloworld"
label="Let Eclipse guide how to create Hello World"
description="Use Eclipse's guided walkthrough to create Hello World"
importance="high">
</url>
<url
location="http://google.com"
label="Open Google"
description="Use Google to search the world"
importance="medium">
</url>
</extension>
</plugin>