KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > net > javacoding > jspider > tool > Parameters


1 package net.javacoding.jspider.tool;
2
3 /**
4  * $Id: Parameters.java,v 1.1 2003/03/25 16:25:06 vanrogu Exp $
5  */

6 public class Parameters {
7
8     protected String JavaDoc[] values;
9
10     public Parameters ( String JavaDoc[] values ) {
11         this.values = values;
12     }
13
14     public String JavaDoc[] getValues ( ) {
15         return values;
16     }
17
18 }
19
Popular Tags