wiki:ApplicationDefinition

Documentation

ApplicationDefinition

The Fusion ApplicationDefinition is an XML document that controls what ends up in your application. The document should start with an xml block:

<?xml version="1.0" encoding="UTF-8"?>

The main tag that contains everything else is the ApplicationDefinition tag:

<ApplicationDefinition 
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
        xmlns:xsd="http://www.w3.org/2001/XMLSchema" 
        xsi:noNamespaceSchemaLocation="ApplicationDefinition-1.0.0.xsd">
    <Title>My Application</Title>
    <MapGroup />
    <WidgetSet />
    <Extension />
</ApplicationDefinition>

The main tag contains the following sub-tags:

Title:

Occurs once. This tag contains a string value used to set the title of the web page when the application is run.

MapSet:

Occurs at least once. This tag contains sub tags that define maps to be used in the application.

WidgetSet:

Occurs at least once. This tag represents a visible map in the user interface, and describes widgets to be associated with the map.

Extension:

Occurs once. Contains extra parameters that are not part of the defined schema of the ApplicationDefinition.

Last modified 16 years ago Last modified on Mar 11, 2008, 6:59:33 AM
Note: See TracWiki for help on using the wiki.