Package io.codemodder
Interface CodemodPackageUpdateResult
public interface CodemodPackageUpdateResult
A model of a codemod's updating of packages.
-
Method Summary
Modifier and TypeMethodDescriptionThe set of files that we attempted to update, but failed.static CodemodPackageUpdateResult
from
(List<io.codemodder.codetf.CodeTFPackageAction> packageActions, List<io.codemodder.codetf.CodeTFChangesetEntry> manifestChanges, Set<Path> filesFailedToChange) List<io.codemodder.codetf.CodeTFChangesetEntry>
The changes that were made to the manifest file.List<io.codemodder.codetf.CodeTFPackageAction>
A structured description of what we were able to do.
-
Method Details
-
packageActions
List<io.codemodder.codetf.CodeTFPackageAction> packageActions()A structured description of what we were able to do. -
manifestChanges
List<io.codemodder.codetf.CodeTFChangesetEntry> manifestChanges()The changes that were made to the manifest file. -
filesFailedToChange
The set of files that we attempted to update, but failed. -
from
static CodemodPackageUpdateResult from(List<io.codemodder.codetf.CodeTFPackageAction> packageActions, List<io.codemodder.codetf.CodeTFChangesetEntry> manifestChanges, Set<Path> filesFailedToChange)
-