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

de.firemage.autograder.agent.AnalysisAgent Maven / Gradle / Ivy

There is a newer version: 0.5.35
Show newest version
package de.firemage.autograder.agent;

import java.lang.instrument.Instrumentation;
import java.nio.file.Path;

public class AnalysisAgent {
    public static void premain(String args, Instrumentation instrumentation) {
        EventRecorder.setOutPath(Path.of("/home/student/codelinter_events.txt"));
        instrumentation.addTransformer(new ClassTransformer());
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy