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
package com.appland.appmap.util;
import java.lang.reflect.Modifier;
import javassist.CtBehavior;
import com.appland.appmap.config.Properties;
public class AppMapBehavior {
private final CtBehavior behavior_;
public AppMapBehavior(CtBehavior behavior) {
behavior_ = behavior;
}
public Boolean isRecordable() {
return !Modifier.isPrivate(behavior_.getModifiers()) || Properties.RecordPrivate;
}
}