1 /*2 * testMatchWholeWordsOnly.java3 *4 * Created on January 11, 2005, 2:08 PM5 */6 7 package search_replace.SearchTest;8 9 /**10 *11 * @author rs15516112 */13 public class testMatchWholeWordsOnly {14 15 /** Creates a new instance of testMatchWholeWordsOnly */16 public testMatchWholeWordsOnly() {17 String halfword = "almostword";18 String word = "word";19 String word2 = "word";20 String afterword = "newword";21 }22 23 }24