1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
|
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.0"?>
<plugin>
<extension
point="org.eclipse.ui.newWizards">
<category
name="%JUnitProjectExampleCreationWizard.categoryName"
parentCategory="org.eclipse.ui.Examples"
id="org.eclipse.jdt.ui.java">
</category>
<wizard
name="%JUnitProjectExampleCreationWizard.title"
icon="$nl$/icons/full/etool16/newjprjex_wiz.gif"
category="org.eclipse.ui.Examples/org.eclipse.jdt.ui.java"
class="org.eclipse.jdt.internal.ui.exampleprojects.ExampleProjectCreationWizard"
project="true"
finalPerspective="org.eclipse.jdt.ui.JavaPerspective"
id="org.eclipse.jdt.examples.projects.JUnitProjectExampleCreationWizard">
<description>
%JUnitProjectExampleCreationWizard.description
</description>
<projectsetup
banner="$nl$/icons/full/wizban/newjprjex_wiz.png"
encoding="ISO-8859-1"
pagetitle="%JUnitProjectExampleCreationWizard.pagetitle"
name="JUnit"
label="%JUnitProjectExampleCreationWizard.label"
pagedescription="%JUnitProjectExampleCreationWizard.pagedescription">
<nature
id="org.eclipse.jdt.core.javanature">
</nature>
<import
dest=""
src="archive/junit/junit381src.jar">
</import>
</projectsetup>
</wizard>
<wizard
name="%JUnitProjectExampleCreationWizard.title"
icon="$nl$/icons/full/etool16/newjprjex_wiz.gif"
category="org.eclipse.ui.Examples/org.eclipse.jdt.ui.java"
class="org.eclipse.jdt.internal.ui.exampleprojects.ExampleProjectCreationWizard"
project="true"
finalPerspective="org.eclipse.jdt.ui.JavaPerspective"
id="org.eclipse.jdt.examples.projects.JUnitProjectExampleCreationWizard2">
<description>
%JUnitProjectExampleCreationWizard.description
</description>
<projectsetup
banner="$nl$/icons/full/wizban/newjprjex_wiz.png"
encoding="ISO-8859-1"
pagetitle="%JUnitProjectExampleCreationWizard.pagetitle"
name="JUnit"
label="%JUnitProjectExampleCreationWizard.label"
pagedescription="%JUnitProjectExampleCreationWizard.pagedescription">
<nature
id="org.eclipse.jdt.core.javanature">
</nature>
<import
dest=""
src="archive/junit/org.eclipse.jdt.ui.junit.sampleproject-1.0.0-SNAPSHOT-dist.jar">
</import>
</projectsetup>
</wizard>
</extension>
</plugin>
|