01: /*
02: * testMatchWholeWordsOnly.java
03: *
04: * Created on January 11, 2005, 2:08 PM
05: */
06:
07: package search_replace.SearchTest;
08:
09: /**
10: *
11: * @author rs155161
12: */
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: }
|