Clover Coverage Report
Coverage timestamp: Sa Aug 2 2008 13:56:27 CEST
0   52   0   -
0   6   -   0
0     -  
1    
 
  Proof       Line # 29 0 0 - -1.0
 
No Tests
 
1    /* $Id: Proof.java,v 1.8 2008/03/27 05:16:26 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.base.module;
19   
20   
21    /**
22    * Contains a proof for a proposition or rule.
23    *
24    * LATER mime 20050220: add formal proof
25    *
26    * @version $Revision: 1.8 $
27    * @author Michael Meyling
28    */
 
29    public interface Proof {
30   
31    /**
32    * Get type of proof. E.g. "informal".
33    *
34    * @return Type of proof.
35    */
36    public String getKind();
37   
38    /**
39    * Get level of proof. Higher levels contain additional informations.
40    *
41    * @return Returns the level.
42    */
43    public String getLevel();
44   
45    /**
46    * Get proof content.
47    *
48    * @return LaTeX proof text.
49    */
50    public LatexList getNonFormalProof();
51   
52    }