MCPcopy Create free account
hub / github.com/GateNLP/gate-core / getValueAt

Method getValueAt

src/main/java/gate/swing/XJTable.java:719–730  ·  view source on GitHub ↗
(int row, int column)

Source from the content-addressed store, hash-verified

717 }
718
719 @Override
720 public Object getValueAt(int row, int column){
721 try{
722 return sourceModel.getValueAt(targetToSource(row), column);
723 }catch(IndexOutOfBoundsException iobe){
724 //this can occur because of multithreaded access -> some threads empties
725 //the data while some other thread tries to update the display.
726 //this error is safe to ignore as the GUI will get updated by another
727 //event once the change to the data has been effected
728 return null;
729 }
730 }
731
732 /**
733 * Sorts the table using the values in the specified column and sorting order.

Callers

nothing calls this directly

Calls 2

targetToSourceMethod · 0.95
getValueAtMethod · 0.65

Tested by

no test coverage detected