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

io.codemodder.remediation.MatchAndFixStrategy Maven / Gradle / Ivy

There is a newer version: 0.98.6
Show newest version
package io.codemodder.remediation;

import com.github.javaparser.ast.Node;

/** Provides matching logic as well as a fix strategy */
public abstract class MatchAndFixStrategy implements RemediationStrategy {

  /**
   * Matches a node against an expected pattern for a fix.
   *
   * @param node
   * @return
   */
  public abstract boolean match(final Node node);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy