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

knowledgepixels / nanodash / 17837235071

18 Sep 2025 05:58PM UTC coverage: 13.87%. Remained the same
17837235071

push

github

tkuhn
chore: Remove serialVersionUIDs

443 of 4022 branches covered (11.01%)

Branch coverage included in aggregate %.

1133 of 7341 relevant lines covered (15.43%)

0.68 hits per line

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

0.0
src/main/java/com/knowledgepixels/nanodash/connector/ConnectorOptionGroup.java
1
package com.knowledgepixels.nanodash.connector;
2

3
import java.io.Serializable;
4

5
/**
6
 * Represents a group of connector options, each with a title and an array of options.
7
 */
8
public class ConnectorOptionGroup implements Serializable {
9

10
    private final String title;
11
    private final ConnectorOption[] options;
12

13
    /**
14
     * Creates a new ConnectorOptionGroup with the specified title and options.
15
     *
16
     * @param title   the title of the option group
17
     * @param options the array of ConnectorOption objects that belong to this group
18
     */
19
    public ConnectorOptionGroup(String title, ConnectorOption... options) {
×
20
        this.title = title;
×
21
        this.options = options;
×
22
    }
×
23

24
    /**
25
     * Returns the title of this option group.
26
     *
27
     * @return the title of the option group
28
     */
29
    public String getTitle() {
30
        return title;
×
31
    }
32

33
    /**
34
     * Returns the array of ConnectorOption objects that belong to this group.
35
     *
36
     * @return the array of ConnectorOption objects
37
     */
38
    public ConnectorOption[] getOptions() {
39
        return options;
×
40
    }
41

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