Class CodeTF

java.lang.Object
io.codemodder.codetf.v3.CodeTF

public final class CodeTF extends Object
Top level reporting object for CodeTF v3. This is the root object to be deserialized from an input stream.

Applications should deserialize this object using a centralized ObjectMapper:


 ObjectMapper mapper = new ObjectMapper();
 // Configure the mapper as needed
 CodeTF report = mapper.readValue(inputStream, CodeTF.class);
 
  • Constructor Details

  • Method Details

    • getRun

      public Run getRun()
    • getResults

      public List<FixResult> getResults()
    • hasCodeChanges

      public boolean hasCodeChanges()
      Returns true if the CodeTF describes any changes made to the code.