|
1 | 1 | /* |
2 | | - * Copyright 2018 IBM Corp. All Rights Reserved. |
| 2 | + * (C) Copyright IBM Corp. 2019. |
3 | 3 | * |
4 | 4 | * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with |
5 | 5 | * the License. You may obtain a copy of the License at |
@@ -35,17 +35,17 @@ public class BodyCells extends GenericModel { |
35 | 35 | @SerializedName("column_index_end") |
36 | 36 | private Long columnIndexEnd; |
37 | 37 | @SerializedName("row_header_ids") |
38 | | - private List<RowHeaderIds> rowHeaderIds; |
| 38 | + private List<String> rowHeaderIds; |
39 | 39 | @SerializedName("row_header_texts") |
40 | | - private List<RowHeaderTexts> rowHeaderTexts; |
| 40 | + private List<String> rowHeaderTexts; |
41 | 41 | @SerializedName("row_header_texts_normalized") |
42 | | - private List<RowHeaderTextsNormalized> rowHeaderTextsNormalized; |
| 42 | + private List<String> rowHeaderTextsNormalized; |
43 | 43 | @SerializedName("column_header_ids") |
44 | | - private List<ColumnHeaderIds> columnHeaderIds; |
| 44 | + private List<String> columnHeaderIds; |
45 | 45 | @SerializedName("column_header_texts") |
46 | | - private List<ColumnHeaderTexts> columnHeaderTexts; |
| 46 | + private List<String> columnHeaderTexts; |
47 | 47 | @SerializedName("column_header_texts_normalized") |
48 | | - private List<ColumnHeaderTextsNormalized> columnHeaderTextsNormalized; |
| 48 | + private List<String> columnHeaderTextsNormalized; |
49 | 49 | private List<Attribute> attributes; |
50 | 50 |
|
51 | 51 | /** |
@@ -129,54 +129,68 @@ public Long getColumnIndexEnd() { |
129 | 129 | /** |
130 | 130 | * Gets the rowHeaderIds. |
131 | 131 | * |
| 132 | + * An array that contains the `id` value of a row header that is applicable to this body cell. |
| 133 | + * |
132 | 134 | * @return the rowHeaderIds |
133 | 135 | */ |
134 | | - public List<RowHeaderIds> getRowHeaderIds() { |
| 136 | + public List<String> getRowHeaderIds() { |
135 | 137 | return rowHeaderIds; |
136 | 138 | } |
137 | 139 |
|
138 | 140 | /** |
139 | 141 | * Gets the rowHeaderTexts. |
140 | 142 | * |
| 143 | + * An array that contains the `text` value of a row header that is applicable to this body cell. |
| 144 | + * |
141 | 145 | * @return the rowHeaderTexts |
142 | 146 | */ |
143 | | - public List<RowHeaderTexts> getRowHeaderTexts() { |
| 147 | + public List<String> getRowHeaderTexts() { |
144 | 148 | return rowHeaderTexts; |
145 | 149 | } |
146 | 150 |
|
147 | 151 | /** |
148 | 152 | * Gets the rowHeaderTextsNormalized. |
149 | 153 | * |
| 154 | + * If you provide customization input, the normalized version of the row header texts according to the customization; |
| 155 | + * otherwise, the same value as `row_header_texts`. |
| 156 | + * |
150 | 157 | * @return the rowHeaderTextsNormalized |
151 | 158 | */ |
152 | | - public List<RowHeaderTextsNormalized> getRowHeaderTextsNormalized() { |
| 159 | + public List<String> getRowHeaderTextsNormalized() { |
153 | 160 | return rowHeaderTextsNormalized; |
154 | 161 | } |
155 | 162 |
|
156 | 163 | /** |
157 | 164 | * Gets the columnHeaderIds. |
158 | 165 | * |
| 166 | + * An array that contains the `id` value of a column header that is applicable to the current cell. |
| 167 | + * |
159 | 168 | * @return the columnHeaderIds |
160 | 169 | */ |
161 | | - public List<ColumnHeaderIds> getColumnHeaderIds() { |
| 170 | + public List<String> getColumnHeaderIds() { |
162 | 171 | return columnHeaderIds; |
163 | 172 | } |
164 | 173 |
|
165 | 174 | /** |
166 | 175 | * Gets the columnHeaderTexts. |
167 | 176 | * |
| 177 | + * An array that contains the `text` value of a column header that is applicable to the current cell. |
| 178 | + * |
168 | 179 | * @return the columnHeaderTexts |
169 | 180 | */ |
170 | | - public List<ColumnHeaderTexts> getColumnHeaderTexts() { |
| 181 | + public List<String> getColumnHeaderTexts() { |
171 | 182 | return columnHeaderTexts; |
172 | 183 | } |
173 | 184 |
|
174 | 185 | /** |
175 | 186 | * Gets the columnHeaderTextsNormalized. |
176 | 187 | * |
| 188 | + * If you provide customization input, the normalized version of the column header texts according to the |
| 189 | + * customization; otherwise, the same value as `column_header_texts`. |
| 190 | + * |
177 | 191 | * @return the columnHeaderTextsNormalized |
178 | 192 | */ |
179 | | - public List<ColumnHeaderTextsNormalized> getColumnHeaderTextsNormalized() { |
| 193 | + public List<String> getColumnHeaderTextsNormalized() { |
180 | 194 | return columnHeaderTextsNormalized; |
181 | 195 | } |
182 | 196 |
|
|
0 commit comments