Subversion Repositories XServices

Compare Revisions

Regard whitespace Rev 115 → Rev 116

/xservices/trunk/src/java/net/brutex/xservices/types/StringReplaceType.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.
18,18 → 18,18
 
import javax.xml.bind.annotation.XmlType;
 
 
 
/**
*
* @author Brian Rosenberger, bru@brutex.de
*/
@XmlType
public class StringReplaceType {
public class StringReplaceType
{
public String string;
public int count;
public StringReplaceType() {}
public StringReplaceType(String string, int count) {
 
public StringReplaceType()
{
}
 
public StringReplaceType(String string, int count)
{
this();
this.string = string;
this.count = count;