Subversion Repository Public Repository

litesoft

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.esotericsoftware.wildcard.support;

import com.esotericsoftware.wildcard.*;

public class CurrentDirMatcher implements DirMatcher {
    public static final DirMatcher INSTANCE = new CurrentDirMatcher();

    private CurrentDirMatcher() {
    }

    @Override
    public boolean acceptableParentDir( String dirPath ) {
        return false;
    }

    @Override
    public boolean acceptable( String dirPath ) {
        return "".equals( dirPath );
    }
}

Commits for litesoft/trunk/Java/ScarPlus/src/com/esotericsoftware/wildcard/support/CurrentDirMatcher.java

Diff revisions: vs.
Revision Author Commited Message
959 Diff Diff GeorgeS picture GeorgeS Sat 19 Jul, 2014 15:27:50 +0000

Scar update

183 GeorgeS picture GeorgeS Mon 25 Apr, 2011 01:40:10 +0000