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

smartsheet / smartsheet-java-sdk / #43

24 Aug 2023 10:26PM UTC coverage: 50.427% (-0.02%) from 50.442%
#43

push

github-actions

web-flow
Fix Checkstyle violations in api/models Classes (#57)

This will fix ~900 violations

189 of 189 new or added lines in 59 files covered. (100.0%)

3423 of 6788 relevant lines covered (50.43%)

0.5 hits per line

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

0.0
/src/main/java/com/smartsheet/api/models/SelectionRange.java
1
package com.smartsheet.api.models;
2

3
/*
4
 * #[license]
5
 * Smartsheet Java SDK
6
 * %%
7
 * Copyright (C) 2023 Smartsheet
8
 * %%
9
 * Licensed under the Apache License, Version 2.0 (the "License");
10
 * you may not use this file except in compliance with the License.
11
 * You may obtain a copy of the License at
12
 *
13
 *      http://www.apache.org/licenses/LICENSE-2.0
14
 *
15
 * Unless required by applicable law or agreed to in writing, software
16
 * distributed under the License is distributed on an "AS IS" BASIS,
17
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18
 * See the License for the specific language governing permissions and
19
 * limitations under the License.
20
 * %[license]
21
 */
22

23
public class SelectionRange {
×
24

25
    /**
26
     * Defines beginning edge of range when specifying one or more columns.
27
     */
28
    private Long sourceColumnId1;
29

30
    /**
31
     * Defines ending edge of range when specifying one or more columns.
32
     */
33
    private Long sourceColumnId2;
34

35
    /**
36
     * Defines beginning edge of range when specifying one or more rows.
37
     */
38
    private Long sourceRowId1;
39

40
    /**
41
     * Defines ending edge of range when specifying one or more rows.
42
     */
43
    private Long sourceRowId2;
44

45
    /**
46
     * Gets the beginning of the range of columns
47
     *
48
     * @return sourceColumnId1
49
     */
50
    public Long getSourceColumnId1() {
51
        return sourceColumnId1;
×
52
    }
53

54
    /**
55
     * Sets the beginning of the range of columns
56
     */
57
    public SelectionRange setSourceColumnId1(Long sourceColumnId1) {
58
        this.sourceColumnId1 = sourceColumnId1;
×
59
        return this;
×
60
    }
61

62
    /**
63
     * Gets the ending of the range of columns
64
     *
65
     * @return sourceColumnId2
66
     */
67
    public Long getSourceColumnId2() {
68
        return sourceColumnId2;
×
69
    }
70

71
    /**
72
     * Sets the ending of the range of columns
73
     */
74
    public SelectionRange setSourceColumnId2(Long sourceColumnId2) {
75
        this.sourceColumnId2 = sourceColumnId2;
×
76
        return this;
×
77
    }
78

79
    /**
80
     * Gets the beginning of the range of rows
81
     *
82
     * @return sourceRowId1
83
     */
84
    public Long getSourceRowId1() {
85
        return sourceRowId1;
×
86
    }
87

88
    /**
89
     * Sets the beginning of the range of rows
90
     */
91
    public SelectionRange setSourceRowId1(Long sourceRowId1) {
92
        this.sourceRowId1 = sourceRowId1;
×
93
        return this;
×
94
    }
95

96
    /**
97
     * Gets the ending of the range of rows
98
     *
99
     * @return sourceRowId2
100
     */
101
    public Long getSourceRowId2() {
102
        return sourceRowId2;
×
103
    }
104

105
    /**
106
     * Sets the ending of the range of rows
107
     */
108
    public SelectionRange setSourceRowId2(Long sourceRowId2) {
109
        this.sourceRowId2 = sourceRowId2;
×
110
        return this;
×
111
    }
112
}
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