01: /*
02: * GeoTools - OpenSource mapping toolkit
03: * http://geotools.org
04: * (C) 2002-2006, GeoTools Project Managment Committee (PMC)
05: *
06: * This library is free software; you can redistribute it and/or
07: * modify it under the terms of the GNU Lesser General Public
08: * License as published by the Free Software Foundation;
09: * version 2.1 of the License.
10: *
11: * This library is distributed in the hope that it will be useful,
12: * but WITHOUT ANY WARRANTY; without even the implied warranty of
13: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14: * Lesser General Public License for more details.
15: */
16: package org.geotools.sld.bindings;
17:
18: import javax.xml.namespace.QName;
19: import org.geotools.xml.*;
20:
21: /**
22: * Binding object for the element http://www.opengis.net/sld:Format.
23: *
24: * <p>
25: * <pre>
26: * <code>
27: * <xsd:element name="Format" type="xsd:string"/>
28: *
29: * </code>
30: * </pre>
31: * </p>
32: *
33: * @generated
34: */
35: public class SLDFormatBinding implements SimpleBinding {
36: /**
37: * @generated
38: */
39: public QName getTarget() {
40: return SLD.FORMAT;
41: }
42:
43: /**
44: * <!-- begin-user-doc -->
45: * <!-- end-user-doc -->
46: *
47: * @generated modifiable
48: */
49: public int getExecutionMode() {
50: return AFTER;
51: }
52:
53: /**
54: * <!-- begin-user-doc -->
55: * <!-- end-user-doc -->
56: *
57: * @generated modifiable
58: */
59: public Class getType() {
60: return null;
61: }
62:
63: /**
64: * <!-- begin-user-doc -->
65: * <!-- end-user-doc -->
66: *
67: * @generated modifiable
68: */
69: public Object parse(InstanceComponent instance, Object value)
70: throws Exception {
71: return null;
72: }
73:
74: /**
75: * <!-- begin-user-doc -->
76: * <!-- end-user-doc -->
77: *
78: * @generated modifiable
79: */
80: public String encode(Object object, String value) {
81: //TODO: implement
82: return null;
83: }
84: }
|