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 SummaryFields Modifier and Type Field Description static intRA_MATCHstatic intRA_REPLACEstatic intRA_REPLACE_ALLstatic intRA_SEARCH
 - 
Method SummaryAll 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_MATCHstatic final int RA_MATCH - See Also:
- Constant Field Values
 
 - 
RA_REPLACEstatic final int RA_REPLACE - See Also:
- Constant Field Values
 
 - 
RA_REPLACE_ALLstatic final int RA_REPLACE_ALL - See Also:
- Constant Field Values
 
 - 
RA_SEARCHstatic final int RA_SEARCH - See Also:
- Constant Field Values
 
 
- 
 - 
Method Detail- 
isRegExpboolean isRegExp(Scriptable obj) 
 - 
compileRegExpjava.lang.Object compileRegExp(Context cx, java.lang.String source, java.lang.String flags) 
 - 
wrapRegExpScriptable wrapRegExp(Context cx, Scriptable scope, java.lang.Object compiled) 
 - 
actionjava.lang.Object action(Context cx, Scriptable scope, Scriptable thisObj, java.lang.Object[] args, int actionType) 
 - 
find_splitint 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_splitjava.lang.Object js_split(Context _cx, Scriptable _scope, java.lang.String thisString, java.lang.Object[] _args) 
 
- 
 
-