01: /*
02: * JFolder, Copyright 2001-2006 Gary Steinmetz
03: *
04: * Distributable under LGPL license.
05: * See terms of license at gnu.org.
06: */
07:
08: package org.jfolder.common.web.template;
09:
10: //base classes
11:
12: //project specific classes
13:
14: //other classes
15:
16: public interface ConsoleParameterContext {
17:
18: //
19: public final static int MAX_CREATION_PARAMS = 10;
20:
21: //
22: public final static Integer FIRST_INPUT = new Integer(0);
23: public final static Integer SECOND_INPUT = new Integer(1);
24: public final static Integer THIRD_INPUT = new Integer(2);
25: public final static Integer FOURTH_INPUT = new Integer(3);
26: public final static Integer FIFTH_INPUT = new Integer(4);
27: public final static Integer SIXTH_INPUT = new Integer(5);
28: public final static Integer SEVENTH_INPUT = new Integer(6);
29: public final static Integer EIGHTH_INPUT = new Integer(7);
30: public final static Integer NINTH_INPUT = new Integer(8);
31: public final static Integer TENTH_INPUT = new Integer(9);
32:
33: }
|