KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > fr > jayasoft > ivy > matcher > PatternMatcher


1 /*
2  * This file is subject to the licence found in LICENCE.TXT in the root directory of the project.
3  * Copyright Jayasoft 2005 - All rights reserved
4  *
5  * #SNAPSHOT#
6  */

7 package fr.jayasoft.ivy.matcher;
8
9
10 public interface PatternMatcher {
11     public static final String JavaDoc EXACT = "exact";
12     public static final String JavaDoc REGEXP = "regexp";
13     public static final String JavaDoc GLOB = "glob";
14     public static final String JavaDoc EXACT_OR_REGEXP = "exactOrRegexp";
15     
16     public static final String JavaDoc ANY_EXPRESSION = "*";
17
18     public Matcher getMatcher(String JavaDoc exp);
19     public String JavaDoc getName();
20 }
21
Popular Tags