@@ -21,7 +21,7 @@ public abstract class VTable extends VType {
2121 *
2222 * @return the number of columns
2323 */
24- abstract int getColumnCount ();
24+ public abstract int getColumnCount ();
2525
2626 /**
2727 * The number of rows in the table.
@@ -33,7 +33,7 @@ public abstract class VTable extends VType {
3333 *
3434 * @return the number of rows
3535 */
36- abstract int getRowCount ();
36+ public abstract int getRowCount ();
3737
3838 /**
3939 * The type of the elements in the column. The column array will be an array of
@@ -44,15 +44,15 @@ public abstract class VTable extends VType {
4444 * @param column the column index
4545 * @return the type of this column
4646 */
47- abstract Class <?> getColumnType (int column );
47+ public abstract Class <?> getColumnType (int column );
4848
4949 /**
5050 * The name of the given column.
5151 *
5252 * @param column the column index
5353 * @return the name of the column
5454 */
55- abstract String getColumnName (int column );
55+ public abstract String getColumnName (int column );
5656
5757 /**
5858 * The data for the given column.
@@ -63,7 +63,7 @@ public abstract class VTable extends VType {
6363 * @param column the column index
6464 * @return the data of the column
6565 */
66- abstract Object getColumnData (int column );
66+ public abstract Object getColumnData (int column );
6767
6868 /**
6969 * Create a new VTable
0 commit comments