String defectId = (String) resultsTable.getValueAt(row, 0);
// Create and send a request for the defect with the given ID
Request request;
request = Network.getInstance().makeRequest("defecttracker/defect/" + defectId, HttpMethod.GET);
request.addObserver(new RetrieveDefectRequestObserver(this));
request.send();
}
}
}