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

smartsheet / smartsheet-java-sdk / #45

29 Aug 2023 04:23PM UTC coverage: 50.55%. Remained the same
#45

push

github-actions

web-flow
Make the license header consistent and add checkstyle rule (#63)

* Make the license header consistent and add checkstyle rule

* Make the file license come before the package

* Remove Smartsheet SDK for Java from every file

3448 of 6821 relevant lines covered (50.55%)

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

17
package com.smartsheet.api.models;
18

19
public class SelectionRange {
×
20

21
    /**
22
     * Defines beginning edge of range when specifying one or more columns.
23
     */
24
    private Long sourceColumnId1;
25

26
    /**
27
     * Defines ending edge of range when specifying one or more columns.
28
     */
29
    private Long sourceColumnId2;
30

31
    /**
32
     * Defines beginning edge of range when specifying one or more rows.
33
     */
34
    private Long sourceRowId1;
35

36
    /**
37
     * Defines ending edge of range when specifying one or more rows.
38
     */
39
    private Long sourceRowId2;
40

41
    /**
42
     * Gets the beginning of the range of columns
43
     *
44
     * @return sourceColumnId1
45
     */
46
    public Long getSourceColumnId1() {
47
        return sourceColumnId1;
×
48
    }
49

50
    /**
51
     * Sets the beginning of the range of columns
52
     */
53
    public SelectionRange setSourceColumnId1(Long sourceColumnId1) {
54
        this.sourceColumnId1 = sourceColumnId1;
×
55
        return this;
×
56
    }
57

58
    /**
59
     * Gets the ending of the range of columns
60
     *
61
     * @return sourceColumnId2
62
     */
63
    public Long getSourceColumnId2() {
64
        return sourceColumnId2;
×
65
    }
66

67
    /**
68
     * Sets the ending of the range of columns
69
     */
70
    public SelectionRange setSourceColumnId2(Long sourceColumnId2) {
71
        this.sourceColumnId2 = sourceColumnId2;
×
72
        return this;
×
73
    }
74

75
    /**
76
     * Gets the beginning of the range of rows
77
     *
78
     * @return sourceRowId1
79
     */
80
    public Long getSourceRowId1() {
81
        return sourceRowId1;
×
82
    }
83

84
    /**
85
     * Sets the beginning of the range of rows
86
     */
87
    public SelectionRange setSourceRowId1(Long sourceRowId1) {
88
        this.sourceRowId1 = sourceRowId1;
×
89
        return this;
×
90
    }
91

92
    /**
93
     * Gets the ending of the range of rows
94
     *
95
     * @return sourceRowId2
96
     */
97
    public Long getSourceRowId2() {
98
        return sourceRowId2;
×
99
    }
100

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

© 2025 Coveralls, Inc