// we need to pull it's list of questions and then remove the selected
// one from it's list and re-persist
if (gevent != null)
{
Question quest = (Question) lstGradedEventQuestions.getSelectedValue();
if (gevent.removeQuestion(quest))
{
JOptionPane.showMessageDialog(this, "Question " + quest.getName()
+ " removed from Graded Event " + gevent.getAssignment(),
"Success", JOptionPane.INFORMATION_MESSAGE);
modGradedEventQuestions.remove(lstGradedEventQuestions.getSelectedIndex());