import org.jrdf.util.boundary.RegexMatcherFactoryImpl;
public class StringNodeMapperFactoryImpl implements StringNodeMapperFactory {
public StringNodeMapper createMapper() {
RegexMatcherFactory regexFactory = new RegexMatcherFactoryImpl();
LiteralMatcher matcher = new LiteralMatcherImpl(regexFactory, new NTripleUtilImpl(regexFactory));
return new StringNodeMapperImpl(matcher);
}