1 /*
2  * @(#) $Id: JSTKArgs.java,v 1.3 2003/07/08 08:13:52 pankaj Exp $
3  *
4  * Copyright (c) 2002-03 by Pankaj Kumar (http://www.pankaj-k.net). 
5  * All rights reserved.
6  *
7  * The license governing the use of this file can be found in the 
8  * root directory of the containing software.
9  */
10package org.jstk;
11
12import java.util.HashMap;
13
14public interface JSTKArgs {
15    public void setDefaults(HashMap defaults);
16    public String get(String name);
17    public void set(String name, String value);
18    public int getNum();
19    public String get(int position);
20}