Added tab switching into Collection Viewer.

This commit is contained in:
magenoxx 2011-10-15 19:45:16 +04:00
parent 74b21979a5
commit ba19cc7f61
3 changed files with 65 additions and 2 deletions

View file

@ -219,4 +219,10 @@ public class HoverButton extends JPanel implements MouseListener {
this.text = text;
repaint();
}
public void execute() {
if (isEnabled() && observer != null) {
observer.execute();
}
}
}