EMMA Coverage Report (generated Fri Feb 14 08:28:31 UTC 2014)
[all classes][org.qedeq.kernel.bo.logic.proof.common]

COVERAGE SUMMARY FOR SOURCE FILE [ProofException.java]

nameclass, %method, %block, %line, %
ProofException.java100% (1/1)100% (2/2)100% (12/12)100% (4/4)

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class ProofException100% (1/1)100% (2/2)100% (12/12)100% (4/4)
ProofException (int, String, FormalProofLineList, ModuleContext): void 100% (1/1)100% (9/9)100% (3/3)
getProofLines (): FormalProofLineList 100% (1/1)100% (3/3)100% (1/1)

1package org.qedeq.kernel.bo.logic.proof.common;
2 
3import org.qedeq.kernel.se.base.module.FormalProofLineList;
4import org.qedeq.kernel.se.common.ModuleContext;
5import org.qedeq.kernel.se.common.ModuleDataException;
6 
7/**
8 * Indicates we found something or have to abandon the search.
9 *
10 * @author  Michael Meyling.
11 *
12 */
13public abstract class ProofException extends ModuleDataException {
14 
15    /** Proof lines found. If any. Might be <code>null</code>. */
16    private final FormalProofLineList lines;
17 
18    /**
19     * Constructor.
20     *
21     * @param   errorCode   Error code of this message.
22     * @param   message     Error message.
23     * @param   lines       Current proof lines.
24     * @param   context     Error location.
25     */
26    public ProofException(final int errorCode, final String message, final FormalProofLineList lines,
27            final ModuleContext context) {
28        super(errorCode, message, context);
29        this.lines = lines;
30    }
31 
32    /**
33     * Get proof lines we found. If any.
34     *
35     * @return  Found proof lines. Might be <code>null</code>.
36     */
37    public FormalProofLineList getProofLines() {
38        return lines;
39    }
40 
41}

[all classes][org.qedeq.kernel.bo.logic.proof.common]
EMMA 2.1.5320 (stable) (C) Vladimir Roubtsov