KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > python > modules > sre > SRE_REPEAT


1 /*
2  * Copyright 2000 Finn Bock
3  *
4  * This program contains material copyrighted by:
5  * Copyright (c) 1997-2000 by Secret Labs AB. All rights reserved.
6  *
7  * This version of the SRE library can be redistributed under CNRI's
8  * Python 1.6 license. For any other use, please contact Secret Labs
9  * 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 }
30
Popular Tags