});
// Create a button to move to the next issue
Image nextButton = IMAGES.nextButton().createImage();
nextButton.setStyleName("nextButton");
nextButton.addClickListener(new ClickListener() {
public void onClick(Widget sender) {
int selectedIndex = issueList.getSelectedIndex();
if (selectedIndex < issueList.getItemCount() - 1) {
issueList.setSelectedIndex(selectedIndex + 1);
refreshIssue();