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 menu-option 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="menu-option">
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: * <choice>
21: * <element name="component-action" type="{}component-action"/>
22: * <element name="url-action" type="{}url-action"/>
23: * <element name="sub-menu" type="{}sub-menu"/>
24: * <element name="desktop-menu" type="{}desktop-menu"/>
25: * </choice>
26: * </sequence>
27: * </restriction>
28: * </complexContent>
29: * </complexType>
30: * </pre>
31: *
32: */
33: public interface MenuOption {
34:
35: org.jaffa.components.navigation.domain.SubMenu getSubMenu();
36:
37: void setSubMenu(org.jaffa.components.navigation.domain.SubMenu value);
38:
39: org.jaffa.components.navigation.domain.DesktopMenu getDesktopMenu();
40:
41: void setDesktopMenu(
42: org.jaffa.components.navigation.domain.DesktopMenu value);
43:
44: org.jaffa.components.navigation.domain.UrlAction getUrlAction();
45:
46: void setUrlAction(
47: org.jaffa.components.navigation.domain.UrlAction value);
48:
49: java.lang.String getLabel();
50:
51: void setLabel(java.lang.String value);
52:
53: org.jaffa.components.navigation.domain.ComponentAction getComponentAction();
54:
55: void setComponentAction(
56: org.jaffa.components.navigation.domain.ComponentAction value);
57:
58: }
|