|
1 | 1 | /* |
2 | | - * (C) Copyright IBM Corp. 2019, 2023. |
| 2 | + * (C) Copyright IBM Corp. 2024. |
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 |
@@ -38,22 +38,22 @@ public class TableBodyCells extends GenericModel { |
38 | 38 | protected Long columnIndexEnd; |
39 | 39 |
|
40 | 40 | @SerializedName("row_header_ids") |
41 | | - protected List<TableRowHeaderIds> rowHeaderIds; |
| 41 | + protected List<String> rowHeaderIds; |
42 | 42 |
|
43 | 43 | @SerializedName("row_header_texts") |
44 | | - protected List<TableRowHeaderTexts> rowHeaderTexts; |
| 44 | + protected List<String> rowHeaderTexts; |
45 | 45 |
|
46 | 46 | @SerializedName("row_header_texts_normalized") |
47 | | - protected List<TableRowHeaderTextsNormalized> rowHeaderTextsNormalized; |
| 47 | + protected List<String> rowHeaderTextsNormalized; |
48 | 48 |
|
49 | 49 | @SerializedName("column_header_ids") |
50 | | - protected List<TableColumnHeaderIds> columnHeaderIds; |
| 50 | + protected List<String> columnHeaderIds; |
51 | 51 |
|
52 | 52 | @SerializedName("column_header_texts") |
53 | | - protected List<TableColumnHeaderTexts> columnHeaderTexts; |
| 53 | + protected List<String> columnHeaderTexts; |
54 | 54 |
|
55 | 55 | @SerializedName("column_header_texts_normalized") |
56 | | - protected List<TableColumnHeaderTextsNormalized> columnHeaderTextsNormalized; |
| 56 | + protected List<String> columnHeaderTextsNormalized; |
57 | 57 |
|
58 | 58 | protected List<DocumentAttribute> attributes; |
59 | 59 |
|
@@ -140,66 +140,68 @@ public Long getColumnIndexEnd() { |
140 | 140 | /** |
141 | 141 | * Gets the rowHeaderIds. |
142 | 142 | * |
143 | | - * <p>A list of table row header ids. |
| 143 | + * <p>A list of ID values that represent the table row headers that are associated with this body |
| 144 | + * cell. |
144 | 145 | * |
145 | 146 | * @return the rowHeaderIds |
146 | 147 | */ |
147 | | - public List<TableRowHeaderIds> getRowHeaderIds() { |
| 148 | + public List<String> getRowHeaderIds() { |
148 | 149 | return rowHeaderIds; |
149 | 150 | } |
150 | 151 |
|
151 | 152 | /** |
152 | 153 | * Gets the rowHeaderTexts. |
153 | 154 | * |
154 | | - * <p>A list of table row header texts. |
| 155 | + * <p>A list of row header values that are associated with this body cell. |
155 | 156 | * |
156 | 157 | * @return the rowHeaderTexts |
157 | 158 | */ |
158 | | - public List<TableRowHeaderTexts> getRowHeaderTexts() { |
| 159 | + public List<String> getRowHeaderTexts() { |
159 | 160 | return rowHeaderTexts; |
160 | 161 | } |
161 | 162 |
|
162 | 163 | /** |
163 | 164 | * Gets the rowHeaderTextsNormalized. |
164 | 165 | * |
165 | | - * <p>A list of table row header texts normalized. |
| 166 | + * <p>A list of normalized row header values that are associated with this body cell. |
166 | 167 | * |
167 | 168 | * @return the rowHeaderTextsNormalized |
168 | 169 | */ |
169 | | - public List<TableRowHeaderTextsNormalized> getRowHeaderTextsNormalized() { |
| 170 | + public List<String> getRowHeaderTextsNormalized() { |
170 | 171 | return rowHeaderTextsNormalized; |
171 | 172 | } |
172 | 173 |
|
173 | 174 | /** |
174 | 175 | * Gets the columnHeaderIds. |
175 | 176 | * |
176 | | - * <p>A list of table column header ids. |
| 177 | + * <p>A list of ID values that represent the column headers that are associated with this body |
| 178 | + * cell. |
177 | 179 | * |
178 | 180 | * @return the columnHeaderIds |
179 | 181 | */ |
180 | | - public List<TableColumnHeaderIds> getColumnHeaderIds() { |
| 182 | + public List<String> getColumnHeaderIds() { |
181 | 183 | return columnHeaderIds; |
182 | 184 | } |
183 | 185 |
|
184 | 186 | /** |
185 | 187 | * Gets the columnHeaderTexts. |
186 | 188 | * |
187 | | - * <p>A list of table column header texts. |
| 189 | + * <p>A list of column header values that are associated with this body cell. |
188 | 190 | * |
189 | 191 | * @return the columnHeaderTexts |
190 | 192 | */ |
191 | | - public List<TableColumnHeaderTexts> getColumnHeaderTexts() { |
| 193 | + public List<String> getColumnHeaderTexts() { |
192 | 194 | return columnHeaderTexts; |
193 | 195 | } |
194 | 196 |
|
195 | 197 | /** |
196 | 198 | * Gets the columnHeaderTextsNormalized. |
197 | 199 | * |
198 | | - * <p>A list of table column header texts normalized. |
| 200 | + * <p>A list of normalized column header values that are associated with this body cell. |
199 | 201 | * |
200 | 202 | * @return the columnHeaderTextsNormalized |
201 | 203 | */ |
202 | | - public List<TableColumnHeaderTextsNormalized> getColumnHeaderTextsNormalized() { |
| 204 | + public List<String> getColumnHeaderTextsNormalized() { |
203 | 205 | return columnHeaderTextsNormalized; |
204 | 206 | } |
205 | 207 |
|
|
0 commit comments