01: /* -*- Mode: java; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*-
02: *
03: * ***** BEGIN LICENSE BLOCK *****
04: * Version: MPL 1.1/GPL 2.0
05: *
06: * The contents of this file are subject to the Mozilla Public License Version
07: * 1.1 (the "License"); you may not use this file except in compliance with
08: * the License. You may obtain a copy of the License at
09: * http://www.mozilla.org/MPL/
10: *
11: * Software distributed under the License is distributed on an "AS IS" basis,
12: * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
13: * for the specific language governing rights and limitations under the
14: * License.
15: *
16: * The Original Code is Rhino code, released
17: * May 6, 1999.
18: *
19: * The Initial Developer of the Original Code is
20: * Netscape Communications Corporation.
21: * Portions created by the Initial Developer are Copyright (C) 1997-1999
22: * the Initial Developer. All Rights Reserved.
23: *
24: * Contributor(s):
25: * Norris Boyd
26: * Roger Lawrence
27: *
28: * Alternatively, the contents of this file may be used under the terms of
29: * the GNU General Public License Version 2 or later (the "GPL"), in which
30: * case the provisions of the GPL are applicable instead of those above. If
31: * you wish to allow use of your version of this file only under the terms of
32: * the GPL and not to allow others to use your version of this file under the
33: * MPL, indicate your decision by deleting the provisions above and replacing
34: * them with the notice and other provisions required by the GPL. If you do
35: * not delete the provisions above, a recipient may use your version of this
36: * file under either the MPL or the GPL.
37: *
38: * ***** END LICENSE BLOCK ***** */
39:
40: package org.mozilla.javascript;
41:
42: /**
43: * A proxy for the regexp package, so that the regexp package can be
44: * loaded optionally.
45: *
46: * @author Norris Boyd
47: */
48: public interface RegExpProxy {
49: // Types of regexp actions
50:
51: public static final int RA_MATCH = 1;
52: public static final int RA_REPLACE = 2;
53: public static final int RA_SEARCH = 3;
54:
55: public boolean isRegExp(Scriptable obj);
56:
57: public Object compileRegExp(Context cx, String source, String flags);
58:
59: public Scriptable wrapRegExp(Context cx, Scriptable scope,
60: Object compiled);
61:
62: public Object action(Context cx, Scriptable scope,
63: Scriptable this Obj, Object[] args, int actionType);
64:
65: public int find_split(Context cx, Scriptable scope, String target,
66: String separator, Scriptable re, int[] ip, int[] matchlen,
67: boolean[] matched, String[][] parensp);
68: }
|