KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > mmbase > datatypes > processors > xml > HtmlGetString


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.xml;
11 import org.mmbase.datatypes.processors.Processor;
12 import org.mmbase.bridge.*;
13
14 /**
15  * Currently is like FieldGetString.
16  * @author Michiel Meeuwissen
17  * @version $Id: HtmlGetString.java,v 1.2 2005/12/10 14:33:36 michiel Exp $
18  * @since MMBase-1.8
19  */

20
21 public class HtmlGetString implements Processor {
22
23     private static final long serialVersionUID = 1L;
24
25     private Processor processor = new FieldGetString();
26
27     public Object JavaDoc process(Node node, Field field, Object JavaDoc value) {
28         return processor.process(node, field, value);
29     }
30
31     public String JavaDoc toString() {
32         return "get_HTML";
33     }
34 }
35
Popular Tags