<!ATTLIST extension
point CDATA #REQUIRED
id CDATA #IMPLIED
name CDATA #IMPLIED>
<!ELEMENT wizard (projectsetup*)>
<!ATTLIST wizard
id CDATA #REQUIRED
banner CDATA #IMPLIED>
<!ELEMENT projectsetup (import* , nature* , references*)>
<!ATTLIST projectsetup
pagetitle CDATA #IMPLIED
name CDATA #IMPLIED
label CDATA #IMPLIED
pagedescription CDATA #IMPLIED
open CDATA #IMPLIED>
Element that describes additional project setup. There will be as many pages created for the wizard as there are projectsetup elements.
<!ELEMENT import EMPTY>
<!ATTLIST import
dest CDATA #IMPLIED
src CDATA #IMPLIED>
Element that describes what to import into the project when it's created.
<!ELEMENT nature EMPTY>
<!ATTLIST nature
id CDATA #IMPLIED>
Element that specified Eclipse nature that is applicable to the project.
<!ELEMENT references EMPTY>
<!ATTLIST references
id CDATA #IMPLIED>
Element that specifies reference for the project that will be created.
<extension point=
"org.eclipse.wst.common.ui.exampleProjectCreationWizard"
id=
"org.eclipse.wst.xml.ui.ExampleProjectCreationWizardExtension"
>
<wizard id=
"org.eclipse.wst.xml.ui.ExampleProjectCreationWizard"
banner=
"icons/newSampleProject_wizbanner.gif"
>
<projectsetup pagetitle=
"%XMLExampleProjectCreationWizard.pagetitle"
name=
"%XMLExampleProjectCreationWizard.projectname"
label=
"%XMLExampleProjectCreationWizard.label"
pagedescription=
"%XMLExampleProjectCreationWizard.pagedescription"
open=
"readme.html"
>
<import dest=
""
src=
"examples/EditingAndValidatingXML.zip"
>
</import>
</projectsetup>
</wizard>
</extension>
Copyright (c) 2005 IBM Corporation 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