org.mixer2.xhtml.PathAjuster Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mixer2 Show documentation
Show all versions of mixer2 Show documentation
Mixer2 is template engine for java.
package org.mixer2.xhtml;
import java.util.List;
import java.util.regex.Pattern;
/**
* @deprecated Misspelled class name. use {@link PathAdjuster}
*/
@Deprecated
public class PathAjuster {
public static void replacePath(T target,
Pattern pattern, String replacement) {
PathAdjuster.replacePath(target, pattern, replacement);
}
public static void replacePathIncludeClass(
T target, Pattern pattern, String replacement,
List includeClazz) {
PathAdjuster.replacePathIncludeClass(target, pattern, replacement,
includeClazz);
}
public static void replacePathIncludeTag(T target,
Pattern pattern, String replacement, List> includeTagType) {
PathAdjuster.replacePathIncludeTag(target, pattern, replacement,
includeTagType);
}
public static void replacePathInclude(T target,
Pattern pattern, String replacement, List includeClazz,
List> includeTagType) {
PathAdjuster.replacePathInclude(target, pattern, replacement,
includeClazz, includeTagType);
}
public static void replacePathExcludeClass(
T target, Pattern pattern, String replacement,
List excludeClazz) {
PathAdjuster.replacePathExcludeClass(target, pattern, replacement,
excludeClazz);
}
public static void replacePathExcludeTag(T target,
Pattern pattern, String replacement, List> excludeTagType) {
PathAdjuster.replacePathExcludeTag(target, pattern, replacement,
excludeTagType);
}
public static void replacePathExclude(T target,
Pattern pattern, String replacement, List excludeClazz,
List> excludeTagType) {
PathAdjuster.replacePathExclude(target, pattern, replacement,
excludeClazz, excludeTagType);
}
}