*/
package org.mxchange.jcoreswing.model.swing.contact;
+import java.text.MessageFormat;
import javax.swing.table.TableModel;
import org.mxchange.jcontacts.contact.Contact;
import org.mxchange.jcore.facade.Facade;
@Override
public int getColumnCount () {
// Unfinished
- throw new UnsupportedOperationException("Unfinished method.");
+ throw new UnsupportedOperationException("Unfinished method."); //NOI18N
}
@Override
public String getColumnName (final int columnIndex) {
// Unfinished
- throw new UnsupportedOperationException("Unfinished method.");
+ throw new UnsupportedOperationException("Unfinished method."); //NOI18N
}
@Override
public int getRowCount () {
// Unfinished
- throw new UnsupportedOperationException("Unfinished method.");
+ throw new UnsupportedOperationException("Unfinished method."); //NOI18N
}
@Override
public Object getValueAt (final int rowIndex, final int columnIndex) {
// Unfinished
- throw new UnsupportedOperationException("Unfinished method.");
+ throw new UnsupportedOperationException("Unfinished method."); //NOI18N
}
@Override
public boolean isCellEditable (final int rowIndex, final int columnIndex) {
- throw new UnsupportedOperationException("Not supported yet. rowIndex=" + rowIndex + ",columnIndex=" + columnIndex); //To change body of generated methods, choose Tools | Templates.
+ throw new UnsupportedOperationException(MessageFormat.format("Not supported yet. rowIndex={0},columnIndex={1}", rowIndex, columnIndex)); //To change body of generated methods, choose Tools | Templates. //NOI18N
}
@Override
public void setValueAt (final Object value, final int rowIndex, final int columnIndex) {
- throw new UnsupportedOperationException("Not supported yet. value=" + value + ",rowIndex=" + rowIndex + ",columnIndex=" + columnIndex); //To change body of generated methods, choose Tools | Templates.
+ throw new UnsupportedOperationException(MessageFormat.format("Not supported yet. value={0},rowIndex={1},columnIndex={2}", value, rowIndex, columnIndex)); //To change body of generated methods, choose Tools | Templates. //NOI18N
}
}