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

com.appland.appmap.util.AppMapBehavior Maven / Gradle / Ivy

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;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy