soot.jimple.infoflow.android.manifest.binary.BinaryManifestBroadcastReceiver Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of soot-infoflow-android Show documentation
Show all versions of soot-infoflow-android Show documentation
Android-specific components of FlowDroid
package soot.jimple.infoflow.android.manifest.binary;
import soot.jimple.infoflow.android.axml.AXmlNode;
import soot.jimple.infoflow.android.manifest.BaseProcessManifest;
import soot.jimple.infoflow.android.manifest.IBroadcastReceiver;
/**
* A broadcast receiver loaded from a binary Android manifest
*
* @author Steven Arzt
*
*/
public class BinaryManifestBroadcastReceiver extends AbstractBinaryAndroidComponent implements IBroadcastReceiver {
/**
* Creates a new instance of the {@link BinaryManifestBroadcastReceiver} class
*
* @param node The binary XML node
* @param manifest The manifest
*/
public BinaryManifestBroadcastReceiver(AXmlNode node, BaseProcessManifest, ?, ?, ?> manifest) {
super(node, manifest);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy