Package io.codemodder
Interface CodeTFProvider
public interface CodeTFProvider
A type that plugins can implement to enrich or modify CodeTF results.
-
Method Summary
Modifier and TypeMethodDescriptiondefault io.codemodder.codetf.CodeTFChange
onChangeCreated
(Path path, String codemod, io.codemodder.codetf.CodeTFChange change) Called when a change is created.default io.codemodder.codetf.CodeTFResult
onResultCreated
(io.codemodder.codetf.CodeTFResult result) Called when a result is created.
-
Method Details
-
onResultCreated
default io.codemodder.codetf.CodeTFResult onResultCreated(io.codemodder.codetf.CodeTFResult result) Called when a result is created. This allows plugins to modify or replace with a new result. -
onChangeCreated
default io.codemodder.codetf.CodeTFChange onChangeCreated(Path path, String codemod, io.codemodder.codetf.CodeTFChange change) Called when a change is created. This allows plugins to modify or replace with a new change.
-