Clover Coverage Report
Coverage timestamp: Sa Aug 2 2008 13:56:27 CEST
0   51   0   -
0   6   -   0
0     -  
1    
 
  SourceFileExceptionList       Line # 27 0 0 - -1.0
 
No Tests
 
1    /* $Id: SourceFileExceptionList.java,v 1.2 2008/03/27 05:16:25 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.common;
19   
20   
21    /**
22    * List of {@link org.qedeq.kernel.common.SourceFileException}s.
23    *
24    * @version $Revision: 1.2 $
25    * @author Michael Meyling
26    */
 
27    public abstract class SourceFileExceptionList extends Exception {
28   
29    /**
30    * Get number of collected exceptions.
31    *
32    * @return Number of collected exceptions.
33    */
34    public abstract int size();
35   
36    /**
37    * Get <code>i</code>-th exception.
38    *
39    * @param i Starts with 0 and must be smaller than {@link #size()}.
40    * @return Wanted exception.
41    */
42    public abstract SourceFileException get(int i);
43   
44    /**
45    * Get all exceptions.
46    *
47    * @return All exceptions.
48    */
49    public abstract SourceFileException[] toArray();
50   
51    }