io.codemodder.CodemodIdPair Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of codemodder-base Show documentation
Show all versions of codemodder-base Show documentation
Base framework for writing codemods in Java
package io.codemodder;
/** A codemod and its ID. */
public final class CodemodIdPair {
private final String id;
private final CodeChanger codeChanger;
public CodemodIdPair(final String id, final CodeChanger codeChanger) {
this.id = id;
this.codeChanger = codeChanger;
}
public String getId() {
return id;
}
public CodeChanger getChanger() {
return codeChanger;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy