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

com.google.code.maven_replacer_plugin.ReplacerFactory Maven / Gradle / Ivy

The newest version!
package com.google.code.maven_replacer_plugin;

import static org.apache.commons.lang.StringUtils.isNotEmpty;


public class ReplacerFactory {
	public Replacer create(Replacement replacement) {
		TokenReplacer tokenReplacer = new TokenReplacer();
		
		if (isNotEmpty(replacement.getXpath())) {
			return new XPathReplacer(tokenReplacer);
		}
		return tokenReplacer;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy