os info found
| 4 | * os info found |
| 5 | */ |
| 6 | public 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 | } |
nothing calls this directly
no outgoing calls
no test coverage detected