Statistics
| Revision:

svn-gvsig-desktop / trunk / libraries / libWMSv0 / src / com / iver / wmsclient / wms_1_3_0 / capabilities / GetFeatureInfo.java @ 150

History | View | Annotate | Download (2.43 KB)

1
/*
2
 * This class was automatically generated with 
3
 * <a href="http://www.castor.org">Castor 0.9.5.3</a>, using an XML
4
 * Schema.
5
 * $Id: GetFeatureInfo.java 150 2004-09-23 09:35:29Z fernando $
6
 */
7

    
8
package com.iver.wmsclient.wms_1_3_0.capabilities;
9

    
10
  //---------------------------------/
11
 //- Imported classes and packages -/
12
//---------------------------------/
13

    
14
import org.exolab.castor.xml.Marshaller;
15
import org.exolab.castor.xml.Unmarshaller;
16

    
17
/**
18
 * Class GetFeatureInfo.
19
 * 
20
 * @version $Revision: 150 $ $Date: 2004-09-23 11:35:29 +0200 (Thu, 23 Sep 2004) $
21
 */
22
public class GetFeatureInfo extends OperationType 
23
implements java.io.Serializable
24
{
25

    
26

    
27
      //----------------/
28
     //- Constructors -/
29
    //----------------/
30

    
31
    public GetFeatureInfo() {
32
        super();
33
    } //-- com.iver.wmsclient.wms_1_3_0.capabilities.GetFeatureInfo()
34

    
35

    
36
      //-----------/
37
     //- Methods -/
38
    //-----------/
39

    
40
    /**
41
     * Method isValid
42
     */
43
    public boolean isValid()
44
    {
45
        try {
46
            validate();
47
        }
48
        catch (org.exolab.castor.xml.ValidationException vex) {
49
            return false;
50
        }
51
        return true;
52
    } //-- boolean isValid() 
53

    
54
    /**
55
     * Method marshal
56
     * 
57
     * @param out
58
     */
59
    public void marshal(java.io.Writer out)
60
        throws org.exolab.castor.xml.MarshalException, org.exolab.castor.xml.ValidationException
61
    {
62
        
63
        Marshaller.marshal(this, out);
64
    } //-- void marshal(java.io.Writer) 
65

    
66
    /**
67
     * Method marshal
68
     * 
69
     * @param handler
70
     */
71
    public void marshal(org.xml.sax.ContentHandler handler)
72
        throws java.io.IOException, org.exolab.castor.xml.MarshalException, org.exolab.castor.xml.ValidationException
73
    {
74
        
75
        Marshaller.marshal(this, handler);
76
    } //-- void marshal(org.xml.sax.ContentHandler) 
77

    
78
    /**
79
     * Method unmarshal
80
     * 
81
     * @param reader
82
     */
83
    public static java.lang.Object unmarshal(java.io.Reader reader)
84
        throws org.exolab.castor.xml.MarshalException, org.exolab.castor.xml.ValidationException
85
    {
86
        return (com.iver.wmsclient.wms_1_3_0.capabilities.GetFeatureInfo) Unmarshaller.unmarshal(com.iver.wmsclient.wms_1_3_0.capabilities.GetFeatureInfo.class, reader);
87
    } //-- java.lang.Object unmarshal(java.io.Reader) 
88

    
89
    /**
90
     * Method validate
91
     */
92
    public void validate()
93
        throws org.exolab.castor.xml.ValidationException
94
    {
95
        org.exolab.castor.xml.Validator validator = new org.exolab.castor.xml.Validator();
96
        validator.validate(this);
97
    } //-- void validate() 
98

    
99
}