Class JSRegExp
- java.lang.Object
-
- org.fife.rsta.ac.js.ecma.api.ecma3.JSRegExp
-
- All Implemented Interfaces:
JSObjectFunctions,JSRegExpFunctions
public abstract class JSRegExp extends java.lang.Object implements JSRegExpFunctions
Object RegExp- Since:
- Standard ECMA-262 3rd. Edition
-
-
Field Summary
Fields Modifier and Type Field Description protected JSFunctionconstructorproperty constructorprotected JSBooleanglobalproperty globalprotected JSBooleanignoreCaseproperty ignoreCaseprotected JSNumberlastIndexproperty lastIndexprotected JSBooleanmultilineproperty multilineJSRegExpprototypeproperty prototypeprotected JSStringsourceproperty source
-
Method Summary
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.fife.rsta.ac.js.ecma.api.ecma3.functions.JSObjectFunctions
hasOwnProperty, isPrototypeOf, propertyIsEnumerable, toLocaleString, toString, valueOf
-
Methods inherited from interface org.fife.rsta.ac.js.ecma.api.ecma3.functions.JSRegExpFunctions
exec, test
-
-
-
-
Field Detail
-
prototype
public JSRegExp prototype
property prototype- Since:
- Standard ECMA-262 3rd. Edition, Level 2 Document Object Model Core Definition.
- See Also:
RegExp
-
constructor
protected JSFunction constructor
property constructor- Since:
- Standard ECMA-262 3rd. Edition, Level 2 Document Object Model Core Definition.
- See Also:
Function
-
source
protected JSString source
property source- Since:
- Standard ECMA-262 3rd. Edition, Level 2 Document Object Model Core Definition.
- See Also:
String
-
global
protected JSBoolean global
property global- Since:
- Standard ECMA-262 3rd. Edition, Level 2 Document Object Model Core Definition.
- See Also:
Boolean
-
ignoreCase
protected JSBoolean ignoreCase
property ignoreCase- Since:
- Standard ECMA-262 3rd. Edition, Level 2 Document Object Model Core Definition.
- See Also:
Boolean
-
multiline
protected JSBoolean multiline
property multiline- Since:
- Standard ECMA-262 3rd. Edition, Level 2 Document Object Model Core Definition.
- See Also:
Boolean
-
-
Constructor Detail
-
JSRegExp
public JSRegExp(JSString pattern, JSString attributes)
Object RegExp(pattern, attributes)- Parameters:
pattern- a string that specifies the pattern of the regular expression.attributes- an optional string containing and of the "g", "i" an "m" attributes that specify global, case-insensitive, and multiline matches respectively.- Since:
- Standard ECMA-262 3rd. Edition, Level 2 Document Object Model Core Definition.
-
-