com.appland.appmap.util.AppMapBehavior Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of appmap-agent Show documentation
Show all versions of appmap-agent Show documentation
Inspect and record the execution of Java for use with App Land
The newest version!
package com.appland.appmap.util;
import java.lang.reflect.Modifier;
import com.appland.appmap.config.Properties;
import javassist.CtBehavior;
public class AppMapBehavior {
public static Boolean isRecordable(CtBehavior behavior) {
return !Modifier.isPrivate(behavior.getModifiers()) || Properties.RecordPrivate;
}
}