Subversion Repositories XServices

Compare Revisions

Ignore whitespace Rev 115 → Rev 116

/xservices/trunk/src/java/net/brutex/xservices/types/StringMatchDetails.java
1,5 → 1,5
/*
* Copyright 2012 Brian Rosenberger (Brutex Network)
* Copyright 2013 Brian Rosenberger (Brutex Network)
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
16,17 → 16,26
 
package net.brutex.xservices.types;
 
public class StringMatchDetails {
public long startPosition;
public long endPosition;
public String content;
/**
* @author Brian Rosenberger, bru(at)brutex.de
*
*/
public class StringMatchDetails
{
public long startPosition;
public long endPosition;
public String content;
public String group;
 
public StringMatchDetails() {
}
public StringMatchDetails()
{
}
 
public StringMatchDetails(long start, long end, String content) {
this.startPosition = start;
this.endPosition = end;
this.content = content;
}
public StringMatchDetails(long start, long end, String group, String content)
{
this.startPosition = start;
this.endPosition = end;
this.group = group;
this.content = content;
}
}