01: /*
02: * Copyright 2000 Finn Bock
03: *
04: * This program contains material copyrighted by:
05: * Copyright (c) 1997-2000 by Secret Labs AB. All rights reserved.
06: *
07: * This version of the SRE library can be redistributed under CNRI's
08: * Python 1.6 license. For any other use, please contact Secret Labs
09: * AB (info@pythonware.com).
10: *
11: * Portions of this engine have been developed in cooperation with
12: * CNRI. Hewlett-Packard provided funding for 1.6 integration and
13: * other compatibility work.
14: */
15:
16: package org.python.modules.sre;
17:
18: /* stack elements */
19:
20: public class SRE_REPEAT {
21: int count;
22: int pidx;
23:
24: SRE_REPEAT prev;
25:
26: SRE_REPEAT(SRE_REPEAT prev) {
27: this.prev = prev;
28: }
29: }
|