soot.jimple.infoflow.android.results.xml.XmlConstants 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.results.xml;
/**
* Class containing the tag and attribute names for serializing data flow
* results to XML.
*
* @author Steven Arzt
*
*/
class XmlConstants {
class Tags {
// presently not used
}
class Attributes {
public static final String systemCategory = "SystemCategory";
public static final String userCategory = "UserCategory";
}
class Values {
public static final String TRUE = "true";
public static final String FALSE = "false";
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy