@Override
public int getColumnCount () {
- // Deligate this call to contact manager
- return this.getManager().getColumnCount();
+ // Unfinished
+ throw new UnsupportedOperationException("Unfinished method.");
}
@Override
public String getColumnName (final int columnIndex) {
- // Deligate this call to contact manager
- return this.getManager().getTranslatedColumnName(columnIndex);
+ // Unfinished
+ throw new UnsupportedOperationException("Unfinished method.");
}
@Override
public int getRowCount () {
- try {
- // Deligate this call to contact manager
- return this.getManager().size();
- } catch (final IOException ex) {
- // Log warning
- this.logException(ex);
-
- // Return zero
- return 0;
- }
+ // Unfinished
+ throw new UnsupportedOperationException("Unfinished method.");
}
@Override
public Object getValueAt (final int rowIndex, final int columnIndex) {
- // Init value
- Object value = null;
-
- try {
- // Deligate this call to contact manager
- value = this.getManager().getValueFromRowColumn(rowIndex, columnIndex);
- } catch (final NoSuchMethodException | IllegalAccessException | InvocationTargetException ex) {
- // Abort here
- this.abortProgramWithException(ex);
- }
-
- // Return it
- return value;
+ // Unfinished
+ throw new UnsupportedOperationException("Unfinished method.");
}
@Override