MCPcopy Index your code
hub / github.com/cSploit/android / Os

Class Os

cSploit/src/org/csploit/android/events/Os.java:6–20  ·  view source on GitHub ↗

os info found

Source from the content-addressed store, hash-verified

4 * os info found
5 */
6public class Os implements Event {
7 public final short accuracy;
8 public final String os;
9 public final String type;
10
11 public Os(short accuracy, String os, String type) {
12 this.accuracy = accuracy;
13 this.os = os;
14 this.type = type;
15 }
16
17 public String toString() {
18 return String.format("Os: { accuracy=%d, os='%s', type='%s' }", accuracy, os, type);
19 }
20}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected