package de.memtext.baseobjects; /** * This class holds information about a string that is to be * searched for and another string that the former is to be * replaced with. * By default both are empty strings. */ public class SearchReplaceTextHolder { private String searchText="", replaceText=""; public SearchReplaceTextHolder() { super(); } public String getReplaceText() { return replaceText; } public String getSearchText() { return searchText; } public void setReplaceText(String string) { replaceText = string; } public void setSearchText(String string) { searchText = string; } } //Created on 04.02.2004 at 11:40:47