Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Introduction to the XSD Editor

Revision as of 22:53, 12 October 2006 by Trungha.ca.ibm.com (Talk | contribs)

 

By Trung Ha
February 30, 2006


This tutorial will use the catalog.xsd from the "Editing and validating XML files" Examples. To create it, select New -> Examples... to launch the wizard. Follow the instructions described in the wizard, then click Finish to create the example project.


Once created, under the PublicationCatalogue folder, locate the Catalogue.xsd file and double click the file to open it in the XML Schema Editor. As shown below, an Outline and Properties view is provided in addition to the editor pane. At the bottom of the editor area you'll see that there is a 'Source' and a 'Design' tab at the bottom of the editor area. The 'Source' tab is used for basic XML source editing. The 'Design' tab is used for higher level graphical editing. Select the 'Design' tab so that you're looking at the Graph view. As shown below you should see a 'top-level' view of the XML Schema that summarizes all of the components (e.g. elements and types) that are defined in the schema.

Xsdeditor-figure1.JPG


In order to see these components in detail you can 'drill down' on a component of interest by double clicking on it. For example, if we double click on the 'BookType' component, the editor will display the structure of the 'BookType' type as shown below. To return to the 'top level' view, press the back button Xsdeditor-toplevelbutton.JPG at the top left of the editor, or right clicking within the editor and selecting 'Back to Schema' from the context menu.

Xsdeditor-figure2.JPG

Editing the schema is achieved by invoking context menu actions on selected objects in the Graph view and using the properties view to modify the properties of the selected object. Follow the steps below to create a new element declaration and define its content.

  1. right click on the header of the 'Elements' section of the top level schema and choose 'Add Element'
  2. use the properties view to change the name of the element to 'Paper' Xsdeditor-figure3.JPG


  3. right click on Paper and select 'Set Type'->'New..." to create a new type for the element.
    Xsdeditor-figure4.JPG


  4. select 'Complex Type' and check 'Create as anonymous type'. Click 'OK'.
    Xsdeditor-figure5.JPG


  5. Double click on 'Paper' to explore this element, note that 'PaperType' is surrounded by parenthesis to indicate anonymity of this type. Click on this type to invoke the properties sheet for its.

  6. On the Properties sheet, select the 'Inherit From:' combo and then select 'Browse...' as shown below. Xsdeditor-figure6.JPG


  7. The Set Type dialog will appear. Select 'PublicationType', and click OK.
    Xsdeditor-figure7.JPG


  8. Double click on Paper's type to edit its structure as shown below. Then right click on the '(PaperType)' and select 'Add Element'
    Xsdeditor-figure8.JPG


  9. Name the newly added element 'URL' because, say, the paper is found on the web.
    Xsdeditor-figure9.JPG


  10. The type of URL can be changed in the main editor panel by clicking on its current type 'string'. A combo box will be shown as below (For now we don't change the the type of URL yet)
    Xsdeditor-figure10.JPG


  11. Right click on '(PaperType)', select 'Add Element Ref' to create element reference. Initally, the editor will pick a random element to be referred. In this case, it's 'Book' as shown below.
    Xsdeditor-figure11.JPG


  12. The referred element can be editted in the main editor panel by click on 'Book'. A Combo will be shown as below.
    Xsdeditor-figure12.JPG


  13. Now that we've finished editing the XML Schema you can save the file.

Back to the top