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

box / box-java-sdk-gen / #226

20 Jun 2025 03:14PM UTC coverage: 35.609% (-0.2%) from 35.816%
#226

push

github

web-flow
feat: Shorten builder names in Java (box/box-codegen#742) (#334)

367 of 1570 new or added lines in 984 files covered. (23.38%)

674 existing lines in 370 files now uncovered.

16125 of 45284 relevant lines covered (35.61%)

0.36 hits per line

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

22.22
/src/main/java/com/box/sdkgen/managers/usercollaborations/GetCollaborationByIdQueryParams.java
1
package com.box.sdkgen.managers.comments;
2

3
import java.util.List;
4

5
public class UpdateCommentByIdQueryParams {
6

7
  public List<String> fields;
8

9
  public UpdateCommentByIdQueryParams() {}
1✔
10

NEW
11
  protected UpdateCommentByIdQueryParams(Builder builder) {
×
12
    this.fields = builder.fields;
×
13
  }
×
14

15
  public List<String> getFields() {
16
    return fields;
1✔
17
  }
18

NEW
19
  public static class Builder {
×
20

21
    protected List<String> fields;
22

23
    public Builder fields(List<String> fields) {
24
      this.fields = fields;
×
25
      return this;
×
26
    }
27

28
    public UpdateCommentByIdQueryParams build() {
29
      return new UpdateCommentByIdQueryParams(this);
×
30
    }
31
  }
32
}
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