01: // HttpUpperTokenList.java
02: // $Id: HttpUpperTokenList.java,v 1.3 2000/08/16 21:38:01 ylafon Exp $
03: // (c) COPYRIGHT MIT and INRIA, 1996.
04: // Please first read the full copyright statement in file COPYRIGHT.html
05:
06: package org.w3c.www.http;
07:
08: /**
09: * Parse a comma separated list of tokens.
10: */
11:
12: public class HttpUpperTokenList extends HttpTokenList {
13: /**
14: * Create a parsed token list, for emitting.
15: */
16:
17: protected HttpUpperTokenList(String tokens[]) {
18: super (tokens);
19: this .casemode = CASE_UPPER;
20: }
21:
22: /**
23: * Create a token list from a comma separated list of tokens.
24: */
25:
26: protected HttpUpperTokenList(String tokens) {
27: super (tokens);
28: this .casemode = CASE_UPPER;
29: }
30:
31: /**
32: * Create an empty token list for parsing.
33: */
34:
35: protected HttpUpperTokenList() {
36: super();
37: this.casemode = CASE_UPPER;
38: }
39:
40: }
|