KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > mmbase > util > transformers > Transformer


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 package org.mmbase.util.transformers;
11
12 /**
13  * Interface for transformations. Actually, since there are so many
14  * types of transformers (byte/byte, char/char, char/byte), nothing
15  * can be pointed out to be typical for Transformers. This interface
16  * ended up a bit emptier than I anticipated.
17  *
18  * A Transformer must be serializable, because it is exposed through bridge (as 'processors').
19  *
20  * @author Michiel Meeuwissen
21  */

22
23 public interface Transformer extends java.io.Serializable JavaDoc {
24
25     String JavaDoc toString();
26 }
27
Popular Tags