01: package org.geotools.po.bindings;
02:
03: import javax.xml.namespace.QName;
04:
05: /**
06: * This interface contains the qualified names of all the types,elements, and
07: * attributes in the http://www.geotools.org/po schema.
08: *
09: * @generated
10: */
11: public interface PO {
12:
13: /** @generated */
14: public static final String NAMESPACE = "http://www.geotools.org/po";
15:
16: /* Type Definitions */
17: /** @generated */
18: public static final QName Items = new QName(
19: "http://www.geotools.org/po", "Items");
20: /** @generated */
21: public static final QName PurchaseOrderType = new QName(
22: "http://www.geotools.org/po", "PurchaseOrderType");
23: /** @generated */
24: public static final QName SKU = new QName(
25: "http://www.geotools.org/po", "SKU");
26: /** @generated */
27: public static final QName USAddress = new QName(
28: "http://www.geotools.org/po", "USAddress");
29:
30: /* Elements */
31: /** @generated */
32: public static final QName comment = new QName(
33: "http://www.geotools.org/po", "comment");
34: /** @generated */
35: public static final QName purchaseOrder = new QName(
36: "http://www.geotools.org/po", "purchaseOrder");
37:
38: /* Attributes */
39:
40: }
|