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

CyclopsMC / IntegratedDynamics / 16552051255

27 Jul 2025 01:58PM UTC coverage: 53.206% (+8.0%) from 45.161%
16552051255

push

github

rubensworks
Resolve minor TODOs

2888 of 8740 branches covered (33.04%)

Branch coverage included in aggregate %.

17341 of 29280 relevant lines covered (59.22%)

3.08 hits per line

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

0.0
/src/main/java/org/cyclops/integrateddynamics/infobook/pageelement/OperatorAppendix.java
1
package org.cyclops.integrateddynamics.infobook.pageelement;
2

3
import org.cyclops.cyclopscore.infobook.IInfoBook;
4
import org.cyclops.cyclopscore.infobook.InfoBookParser;
5
import org.cyclops.cyclopscore.infobook.InfoSection;
6
import org.cyclops.cyclopscore.infobook.pageelement.SectionAppendix;
7
import org.cyclops.integrateddynamics.api.evaluate.operator.IOperator;
8

9
/**
10
 * Operator appendix.
11
 * @author rubensworks
12
 */
13
public class OperatorAppendix extends SectionAppendix<OperatorAppendixClient> {
14

15
    private final IOperator operator;
16

17
    public OperatorAppendix(IInfoBook infoBook, IOperator operator) throws InfoBookParser.InvalidAppendixException {
18
        super(infoBook);
×
19
        this.operator = operator;
×
20
    }
×
21

22
    public IOperator getOperator() {
23
        return operator;
×
24
    }
25

26
    @Override
27
    protected int getOffsetY() {
28
        return 5;
×
29
    }
30

31
    @Override
32
    protected int getWidth() {
33
        return 100;
×
34
    }
35

36
    @Override
37
    protected int getHeight() {
38
        return 46 + (operator.getInputTypes().length) * 8;
×
39
    }
40

41
    @Override
42
    public OperatorAppendixClient constructSectionAppendixClient() {
43
        return new OperatorAppendixClient(this);
×
44
    }
45

46
    @Override
47
    public void preBakeElement(InfoSection infoSection) {
48

49
    }
×
50

51
    @Override
52
    public void bakeElement(InfoSection infoSection) {
53

54
    }
×
55

56
}
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