01: //
02: // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v1.0
03: // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
04: // Any modifications to this file will be lost upon recompilation of the source schema.
05: // Generated on: 2003.12.18 at 12:29:17 PST
06: //
07:
08: package org.jaffa.components.navigation.domain;
09:
10: /**
11: * Java content class for desktop-menu complex type.
12: * <p>The following schema fragment specifies the expected content contained within this java content object.
13: * <p>
14: * <pre>
15: * <complexType name="desktop-menu">
16: * <complexContent>
17: * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
18: * <sequence>
19: * <element name="label" type="{http://www.w3.org/2001/XMLSchema}string"/>
20: * <element name="struts-tile-template" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
21: * <element name="menu-option" type="{}menu-option" maxOccurs="unbounded"/>
22: * </sequence>
23: * </restriction>
24: * </complexContent>
25: * </complexType>
26: * </pre>
27: *
28: */
29: public interface DesktopMenu {
30:
31: java.util.List getMenuOption();
32:
33: java.lang.String getStrutsTileTemplate();
34:
35: void setStrutsTileTemplate(java.lang.String value);
36:
37: java.lang.String getLabel();
38:
39: void setLabel(java.lang.String value);
40:
41: }
|