All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.gwtopenmaps.openlayers.client.util.RegExpImpl Maven / Gradle / Ivy

There is a newer version: 1.1.0
Show newest version
package org.gwtopenmaps.openlayers.client.util;

class RegExpImpl {

	public static native JSObject create(String regexString)/*-{
		return new RegExp(regexString);
	}-*/;
	
	public static native JSObject create(String regexString, String modifier)/*-{
		return new RegExp(regexString, modifier);
	}-*/;

	public static native JSObject exec(JSObject object, String str)/*-{
		return new RegExp(regexString, str);
	}-*/;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy