Subversion Repositories XServices

Rev

Rev 93 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 93 Rev 116
Line 1... Line 1...
1
/*
1
/*
2
 *   Copyright 2012 Brian Rosenberger (Brutex Network)
2
 *   Copyright 2013 Brian Rosenberger (Brutex Network)
3
 *
3
 *
4
 *   Licensed under the Apache License, Version 2.0 (the "License");
4
 *   Licensed under the Apache License, Version 2.0 (the "License");
5
 *   you may not use this file except in compliance with the License.
5
 *   you may not use this file except in compliance with the License.
6
 *   You may obtain a copy of the License at
6
 *   You may obtain a copy of the License at
7
 *
7
 *
Line 14... Line 14...
14
 *   limitations under the License.
14
 *   limitations under the License.
15
 */
15
 */
Line 16... Line 16...
16
 
16
 
Line -... Line 17...
-
 
17
package net.brutex.xservices.types;
-
 
18
 
-
 
19
/**
-
 
20
 * @author Brian Rosenberger, bru(at)brutex.de
17
package net.brutex.xservices.types;
21
 *
-
 
22
 */
18
 
23
public class StringMatchDetails
19
public class StringMatchDetails {
24
{
20
	public long startPosition;
25
  public long startPosition;
-
 
26
  public long endPosition;
Line 21... Line 27...
21
	public long endPosition;
27
  public String content;
-
 
28
  public String group;
22
	public String content;
29
 
Line 23... Line 30...
23
 
30
  public StringMatchDetails()
-
 
31
  {
24
	public StringMatchDetails() {
32
  }
25
	}
33
 
-
 
34
  public StringMatchDetails(long start, long end, String group, String content)
26
 
35
  {
27
	public StringMatchDetails(long start, long end, String content) {
36
    this.startPosition = start;
28
		this.startPosition = start;
37
    this.endPosition = end;
29
		this.endPosition = end;
38
    this.group = group;