Package org.mozilla.javascript
Interface RegExpProxy
- 
- All Known Implementing Classes:
 RegExpImpl
public interface RegExpProxyA proxy for the regexp package, so that the regexp package can be loaded optionally. 
- 
- 
Field Summary
Fields Modifier and Type Field Description static intRA_MATCHstatic intRA_REPLACEstatic intRA_SEARCH 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.Objectaction(Context cx, Scriptable scope, Scriptable thisObj, java.lang.Object[] args, int actionType)java.lang.ObjectcompileRegExp(Context cx, java.lang.String source, java.lang.String flags)intfind_split(Context cx, Scriptable scope, java.lang.String target, java.lang.String separator, Scriptable re, int[] ip, int[] matchlen, boolean[] matched, java.lang.String[][] parensp)booleanisRegExp(Scriptable obj)java.lang.Objectjs_split(Context _cx, Scriptable _scope, java.lang.String thisString, java.lang.Object[] _args)ScriptablewrapRegExp(Context cx, Scriptable scope, java.lang.Object compiled) 
 - 
 
- 
- 
Field Detail
- 
RA_MATCH
static final int RA_MATCH
- See Also:
 - Constant Field Values
 
 
- 
RA_REPLACE
static final int RA_REPLACE
- See Also:
 - Constant Field Values
 
 
- 
RA_SEARCH
static final int RA_SEARCH
- See Also:
 - Constant Field Values
 
 
 - 
 
- 
Method Detail
- 
isRegExp
boolean isRegExp(Scriptable obj)
 
- 
compileRegExp
java.lang.Object compileRegExp(Context cx, java.lang.String source, java.lang.String flags)
 
- 
wrapRegExp
Scriptable wrapRegExp(Context cx, Scriptable scope, java.lang.Object compiled)
 
- 
action
java.lang.Object action(Context cx, Scriptable scope, Scriptable thisObj, java.lang.Object[] args, int actionType)
 
- 
find_split
int find_split(Context cx, Scriptable scope, java.lang.String target, java.lang.String separator, Scriptable re, int[] ip, int[] matchlen, boolean[] matched, java.lang.String[][] parensp)
 
- 
js_split
java.lang.Object js_split(Context _cx, Scriptable _scope, java.lang.String thisString, java.lang.Object[] _args)
 
 - 
 
 -