Subversion Repositories XServices

Rev

Rev 129 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
125 brianR 1
//
2
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.2-147
3
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
4
// Any modifications to this file will be lost upon recompilation of the source schema.
5
// Generated on: 2012.11.16 at 05:17:00 PM MEZ
6
//
7
 
8
 
9
package net.brutex.xservices.types.scmfindings;
10
 
11
import java.io.Serializable;
12
import javax.xml.bind.annotation.XmlAccessType;
13
import javax.xml.bind.annotation.XmlAccessorType;
14
import javax.xml.bind.annotation.XmlElement;
15
import javax.xml.bind.annotation.XmlType;
16
 
17
 
18
/**
19
 * <p>Java class for GroupMatchListType complex type.
20
 *
21
 * <p>The following schema fragment specifies the expected content contained within this class.
22
 *
23
 * <pre>
24
 * &lt;complexType name="GroupMatchListType">
25
 *   &lt;complexContent>
26
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
27
 *       &lt;sequence>
28
 *         &lt;element name="matchGroup" type="{http://www.w3.org/2001/XMLSchema}int"/>
29
 *         &lt;element name="matchAtIndex" type="{http://www.w3.org/2001/XMLSchema}long"/>
30
 *         &lt;element name="matchToIndex" type="{http://www.w3.org/2001/XMLSchema}long"/>
31
 *         &lt;element name="matchString" type="{http://www.w3.org/2001/XMLSchema}string"/>
32
 *       &lt;/sequence>
33
 *     &lt;/restriction>
34
 *   &lt;/complexContent>
35
 * &lt;/complexType>
36
 * </pre>
37
 *
38
 *
39
 */
40
@XmlAccessorType(XmlAccessType.FIELD)
41
@XmlType(name = "GroupMatchListType", propOrder = {
42
    "matchGroup",
43
    "matchAtIndex",
44
    "matchToIndex",
45
    "matchString"
46
})
47
public class GroupMatchListType
48
    implements Serializable
49
{
50
 
51
    private final static long serialVersionUID = 19800606L;
52
    protected int matchGroup;
53
    protected long matchAtIndex;
54
    protected long matchToIndex;
55
    @XmlElement(required = true)
56
    protected String matchString;
57
 
58
    /**
59
     * Gets the value of the matchGroup property.
60
     *
61
     */
62
    public int getMatchGroup() {
63
        return matchGroup;
64
    }
65
 
66
    /**
67
     * Sets the value of the matchGroup property.
68
     *
69
     */
70
    public void setMatchGroup(int value) {
71
        this.matchGroup = value;
72
    }
73
 
74
    /**
75
     * Gets the value of the matchAtIndex property.
76
     *
77
     */
78
    public long getMatchAtIndex() {
79
        return matchAtIndex;
80
    }
81
 
82
    /**
83
     * Sets the value of the matchAtIndex property.
84
     *
85
     */
86
    public void setMatchAtIndex(long value) {
87
        this.matchAtIndex = value;
88
    }
89
 
90
    /**
91
     * Gets the value of the matchToIndex property.
92
     *
93
     */
94
    public long getMatchToIndex() {
95
        return matchToIndex;
96
    }
97
 
98
    /**
99
     * Sets the value of the matchToIndex property.
100
     *
101
     */
102
    public void setMatchToIndex(long value) {
103
        this.matchToIndex = value;
104
    }
105
 
106
    /**
107
     * Gets the value of the matchString property.
108
     *
109
     * @return
110
     *     possible object is
111
     *     {@link String }
112
     *
113
     */
114
    public String getMatchString() {
115
        return matchString;
116
    }
117
 
118
    /**
119
     * Sets the value of the matchString property.
120
     *
121
     * @param value
122
     *     allowed object is
123
     *     {@link String }
124
     *
125
     */
126
    public void setMatchString(String value) {
127
        this.matchString = value;
128
    }
129
 
130
}