KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > calipso > reportgenerator > common > IReportManagerFactory


1 package com.calipso.reportgenerator.common;
2
3 import com.calipso.reportgenerator.common.IReportManager;
4 import com.calipso.reportgenerator.common.ReportGeneratorConfiguration;
5
6 /**
7  *
8  * User: Breto
9  * Date: 06/05/2004
10  * Time: 10:43:37
11  */

12 public interface IReportManagerFactory {
13   public IReportManager newReportManager(ReportGeneratorConfiguration reportGeneratorConfiguration, boolean isStateFul, String JavaDoc distributedHost) throws InfoException;
14 }
15
Popular Tags