SuperX-Kernmodul
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

32 lines
687 B

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