• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

jiangxincode / ApkToolBoxGUI / #1147

30 Aug 2025 08:56AM UTC coverage: 3.018% (-0.004%) from 3.022%
#1147

push

jiangxincode
Merge branch 'master' of https://github.com/jiangxincode/ApkToolBoxGUI

248 of 8217 relevant lines covered (3.02%)

0.03 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/src/main/java/edu/jiangxin/apktoolbox/convert/protobuf/unsupervised/DecoderResult.java
1
package edu.jiangxin.apktoolbox.convert.protobuf.unsupervised;
2

3
import java.util.List;
4

5
public class DecoderResult {
×
6

7
    /**
8
     * 字节范围
9
     */
10
    private List<Integer> byteRange;
11
    /**
12
     * 字段数字
13
     */
14
    private int fieldNumber;
15
    /**
16
     * 字段类型
17
     */
18
    private int type;
19
    /**
20
     * 字段对应的值
21
     */
22
    private Object content;
23
    /**
24
     * 字段对应的值的解码结果
25
     */
26
    private List<DecoderResult> subResults;
27

28
    public List<Integer> getByteRange() {
29
        return byteRange;
×
30
    }
31

32
    public void setByteRange(List<Integer> byteRange) {
33
        this.byteRange = byteRange;
×
34
    }
×
35

36
    public int getFieldNumber() {
37
        return fieldNumber;
×
38
    }
39

40
    public void setFieldNumber(int fieldNumber) {
41
        this.fieldNumber = fieldNumber;
×
42
    }
×
43

44
    public int getType() {
45
        return type;
×
46
    }
47

48
    public void setType(int type) {
49
        this.type = type;
×
50
    }
×
51

52
    public Object getContent() {
53
        return content;
×
54
    }
55

56
    public void setContent(Object content) {
57
        this.content = content;
×
58
    }
×
59

60
    public List<DecoderResult> getSubResults() {
61
        return subResults;
×
62
    }
63

64
    public void setSubResults(List<DecoderResult> subResults) {
65
        this.subResults = subResults;
×
66
    }
×
67
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc