@@ -270,8 +270,8 @@ public interface Table<C extends Column<? extends T>, T> extends List<C> {
270270 /**
271271 * Appends the specified column to the end of the table.
272272 * <p>
273- * No checking is done to ensure the new column has the same number of rows as
274- * the other existing columns.
273+ * Updates the row count if this column has more rows than current table and
274+ * scales the existing columns to have the same number of rows .
275275 * </p>
276276 */
277277 @ Override
@@ -298,8 +298,8 @@ public interface Table<C extends Column<? extends T>, T> extends List<C> {
298298 * table, in the order that they are returned by the specified collection's
299299 * iterator.
300300 * <p>
301- * No checking is done to ensure the new columns have the same number of rows
302- * as the other existing columns .
301+ * Updates the row count if necessary, and scales the columns to match the row
302+ * count if necessary .
303303 * </p>
304304 *
305305 * @return <tt>true</tt> if the table changed as a result of the call
@@ -311,8 +311,8 @@ public interface Table<C extends Column<? extends T>, T> extends List<C> {
311311 * Inserts all of the columns in the specified collection into this list at
312312 * the specified position.
313313 * <p>
314- * No checking is done to ensure the new columns have the same number of rows
315- * as the other existing columns .
314+ * Updates the row count if necessary, and scales the columns to match the row
315+ * count if necessary .
316316 * </p>
317317 *
318318 * @return <tt>true</tt> if the table changed as a result of the call
@@ -371,8 +371,8 @@ public interface Table<C extends Column<? extends T>, T> extends List<C> {
371371 /**
372372 * Inserts the specified column at the specified position in the table.
373373 * <p>
374- * No checking is done to ensure the new column has the same number of rows as
375- * the other existing columns.
374+ * Updates the row count if this column has more rows than current table and
375+ * scales the existing columns to have the same number of rows .
376376 * </p>
377377 */
378378 @ Override
0 commit comments