Subversion Repository Public Repository

litesoft

1
2
3
4
5
6
7
8
9
10
11
12
13
// This Source Code is in the Public Domain per: http://litesoft.org/License.txt
package org.litesoft.commonfoundation.stringmatching;

public abstract class AbstractSingleStringMatcher extends AbstractStringMatcher
{
    protected String mToMatch;

    protected AbstractSingleStringMatcher( int pMinLength, boolean pIgnoreCase, String pToMatch )
    {
        super( pMinLength, pIgnoreCase );
        mToMatch = pToMatch;
    }
}

Commits for litesoft/trunk/DeviceDesktopTest/src/org/litesoft/commonfoundation/stringmatching/AbstractSingleStringMatcher.java

Diff revisions: vs.
Revision Author Commited Message
943 Diff Diff GeorgeS picture GeorgeS Tue 03 Jun, 2014 04:25:50 +0000

Extracting commonfoundation

936 GeorgeS picture GeorgeS Sun 01 Jun, 2014 20:19:38 +0000

Language Support