KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > net > firstpartners > nounit > report > IReport


1 package net.firstpartners.nounit.report;
2
3 /**
4  * Title: NoUnit - Identify Classes that are not being unit Tested
5  *
6  * Copyright (C) 2001 Paul Browne , FirstPartners.net
7  *
8  *
9  * This program is free software; you can redistribute it and/or
10  * modify it under the terms of the GNU General Public License
11  * as published by the Free Software Foundation; either version 2
12  * of the License, or (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
22  *
23  * @author Paul Browne
24  * @version 0.7
25  */

26
27 import java.io.FileNotFoundException JavaDoc;
28 import java.io.IOException JavaDoc;
29
30 import javax.xml.transform.TransformerConfigurationException JavaDoc;
31 import javax.xml.transform.TransformerException JavaDoc;
32
33 import net.firstpartners.nounit.ui.common.CommandPackage;
34 import net.firstpartners.nounit.utility.NoUnitException;
35
36 /**
37  * Designates classes which generate the reports from the XML
38  * (the XML itself decribes the Java source / byte code)
39  */

40 public interface IReport {
41
42 /**
43  * Transform the XML into the required reports
44  * @param inPackage - CommandPackage with required parameters
45  * @exception TransformerException
46  * @exception TransformerConfigurationException
47  * @exception IOException
48  * @exception FileNotFoundException
49  * @exception NoUnitException
50  */

51   public void makeReport(CommandPackage inPackage)
52   throws TransformerException JavaDoc, TransformerConfigurationException JavaDoc,
53         IOException JavaDoc , FileNotFoundException JavaDoc, NoUnitException ;
54
55 }
Popular Tags