Clover Coverage Report
Coverage timestamp: Sa Aug 2 2008 13:56:27 CEST
0   45   0   -
0   9   -   0
0     -  
1    
 
  HigherLogicalErrors       Line # 26 0 0 - -1.0
 
No Tests
 
1    /* $Id: HigherLogicalErrors.java,v 1.1 2008/07/26 07:58:29 m31 Exp $
2    *
3    * This file is part of the project "Hilbert II" - http://www.qedeq.org
4    *
5    * Copyright 2000-2008, Michael Meyling <mime@qedeq.org>.
6    *
7    * "Hilbert II" is free software; you can redistribute
8    * it and/or modify it under the terms of the GNU General Public
9    * License as published by the Free Software Foundation; either
10    * version 2 of the License, or (at your option) any later version.
11    *
12    * This program is distributed in the hope that it will be useful,
13    * but WITHOUT ANY WARRANTY; without even the implied warranty of
14    * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15    * GNU General Public License for more details.
16    */
17   
18    package org.qedeq.kernel.bo.logic.wf;
19   
20    /**
21    * Error codes and messages for formula checker.
22    *
23    * @version $Revision: 1.1 $
24    * @author Michael Meyling
25    */
 
26    public interface HigherLogicalErrors {
27   
28    /** Error code. */
29    public static final int PREDICATE_ALREADY_DEFINED = 40400;
30   
31    /** Error message. */
32    public static final String PREDICATE_ALREADY_DEFINED_TEXT
33    = "predicate was already defined for this argument number: ";
34   
35   
36    /** Error code. */
37    public static final int FUNCTION_ALREADY_DEFINED = 40400;
38   
39    /** Error message. */
40    public static final String FUNCTION_ALREADY_DEFINED_TEXT
41    = "function was already defined for this argument number: ";
42   
43   
44   
45    }