KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > net > matuschek > spider > docfilter > FilterDescription


1 package net.matuschek.spider.docfilter;
2
3 /*********************************************
4     Copyright (c) 2001 by Daniel Matuschek
5 *********************************************/

6
7
8 /**
9  * A descriptions for a DocFilter object
10  *
11  * @author Daniel Matuschek
12  * @version $Id: FilterDescription.java,v 1.1 2001/04/25 15:23:55 matuschd Exp $
13  */

14 public class FilterDescription {
15
16   /**
17    * the name of this filter
18    */

19   private String JavaDoc name;
20
21   /**
22    * initializes a new FilterDescription with the given name
23    */

24   public FilterDescription(String JavaDoc name) {
25     this.name = name;
26   }
27
28   public String JavaDoc getName() {
29     return this.name;
30   }
31 }
32
Popular Tags