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

net.java.textilej.parser.util.MatcherAdaper Maven / Gradle / Ivy

The newest version!
package net.java.textilej.parser.util;


public class MatcherAdaper implements Matcher {

	private java.util.regex.Matcher delegate;

	public MatcherAdaper(java.util.regex.Matcher delegate) {
		this.delegate = delegate;
	}

	public int end(int group) {
		return delegate.end(group);
	}

	public String group(int group) {
		return delegate.group(group);
	}

	public int start(int group) {
		return delegate.start(group);
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy