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.03.06 at 09:44:51 PST
06: //
07:
08: package org.jaffa.presentation.portlet.widgets.controller.usergriddomain;
09:
10: /**
11: * Java content class for user-grid-column-settings 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="user-grid-column-settings">
16: * <complexContent>
17: * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
18: * <sequence>
19: * <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
20: * <element name="width" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
21: * </sequence>
22: * </restriction>
23: * </complexContent>
24: * </complexType>
25: * </pre>
26: *
27: */
28: public interface UserGridColumnSettings {
29:
30: java.lang.String getWidth();
31:
32: void setWidth(java.lang.String value);
33:
34: java.lang.String getName();
35:
36: void setName(java.lang.String value);
37:
38: }
|