KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > mmbase > datatypes > processors > Processor


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.datatypes.processors;
11
12
13 import org.mmbase.bridge.*;
14
15 /**
16  * Interface for doing field processing.
17  *
18  * @author Michiel Meeuwissen
19  * @version $Id: Processor.java,v 1.1 2005/10/25 12:30:26 michiel Exp $
20  * @since MMBase-1.7
21  */

22
23 public interface Processor extends java.io.Serializable JavaDoc {
24
25     /**
26      * @param node The node object for which the field must be transformed.
27      * @param field The field which is set.
28      * @param value The (new) field value.
29      */

30     Object JavaDoc process(Node node, Field field, Object JavaDoc value);
31 }
32
Popular Tags