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

org.mixer2.xhtml.PathAjuster Maven / Gradle / Ivy

There is a newer version: 1.4.2
Show newest version
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);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy