Source code: com/k_int/util/CCL/TermIdentifier.java
1 // Title: TermIdentifier
2 // @version: $Id: TermIdentifier.java,v 1.2 2002/12/09 15:42:25 ianibbo Exp $
3 // Copyright: Copyright (C) 2001, Knowledge Integration Ltd.
4 // @author: Ian Ibbotson ( ian.ibbotson@k-int.com )
5 // Company: KI
6 // Description: Interface implemented by an object capable of telling the
7 // CCL Lexer if a given term is a CCL qualifier or not.
8
9 //
10 // This program is free software; you can redistribute it and/or
11 // modify it under the terms of the GNU General Public License
12 // as published by the Free Software Foundation; either version 2.1 of
13 // the license, or (at your option) any later version.
14 //
15 // This program is distributed in the hope that it will be useful,
16 // but WITHOUT ANY WARRANTY; without even the implied warranty of
17 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 // GNU General Public License for more details.
19 //
20 // You should have received a copy of the GNU General Public License
21 // along with this program; if not, write to the Free Software
22 // Foundation, Inc., 59 Temple Place - Suite
23 // 330, Boston, MA 02111-1307, USA.
24 //
25
26 package com.k_int.util.CCL;
27
28 /**
29 * TermIdentifier : Interface implemented by an object capable of telling the
30 * CCL Lexer if a given term is a CCL qualifier or not.
31 *
32 * @author Ian Ibbotson
33 * @version $Id: TermIdentifier.java,v 1.2 2002/12/09 15:42:25 ianibbo Exp $
34 */
35
36 public interface TermIdentifier
37 {
38 public boolean isCCLQualifier(String s);
39 }