KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > net > nutch > plugin > HelloWorldExtension


1 /* Copyright (c) 2003 The Nutch Organization. All rights reserved.
2  * Use subject to the conditions in http://www.nutch.org/LICENSE.txt.
3  */

4
5 package net.nutch.plugin;
6
7 /**
8  * Simple Test-extensions
9  *
10  * @author joa23
11  */

12 public class HelloWorldExtension implements ITestExtension {
13
14   /* (non-Javadoc)
15    * @see net.nutch.plugin.ITestExtension#testGetExtension(java.lang.String)
16    */

17   public String JavaDoc testGetExtension(String JavaDoc hello) {
18     return hello + " World";
19   }
20 }
21
Popular Tags