Subversion Repository Public Repository

litesoft

Diff Revisions 49 vs 50 for /trunk/Java/core/Anywhere/src/org/litesoft/core/util/stringmatching/EndsWithStringMatcher.java

Diff revisions: vs.
  @@ -9,11 +9,13 @@
9 9 super( pMinLength, pIgnoreCase, pToMatch );
10 10 }
11 11
12 + @Override
12 13 protected boolean LLmatches( String pInQuestion )
13 14 {
14 15 return pInQuestion.endsWith( mToMatch );
15 16 }
16 17
18 + @Override
17 19 public String toString()
18 20 {
19 21 return "EndsWith( '" + mToMatch + "' )";