KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > mmbase > applications > media > filters > Filter


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.applications.media.filters;
12 import org.mmbase.util.xml.DocumentReader;
13 import org.w3c.dom.Element JavaDoc;
14 import java.util.List JavaDoc;
15
16 /**
17  *
18  */

19 public interface Filter {
20     
21     public List JavaDoc filter(List JavaDoc urlcomposers);
22     public void configure(DocumentReader reader, Element JavaDoc e);
23 }
24
25
Popular Tags