KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > mmbase > util > magicfile > DetectorProvider


1 /*
2
3 This software is OSI Certified Open Source Software.
4 OSI Certified is a certification mark of the Open Source Initiative.
5
6 The license (Mozilla version 1.0) can be read at the MMBase site.
7 See http://www.MMBase.org/license
8
9 */

10
11 package org.mmbase.util.magicfile;
12
13 /**
14  * DetectorProvider classes are meant to provide a list of Detectors,
15  * which can be used by MagicFile.
16  * @version $Id: DetectorProvider.java,v 1.1 2002/09/03 18:15:27 michiel Exp $
17  * @author Michiel Meeuwissen
18  */

19
20 public interface DetectorProvider {
21     public java.util.List JavaDoc getDetectors();
22 }
23
24
Popular Tags