public void actionPerformed(ActionEvent e) {
SortedMap<Integer, Animation> animations = character.accessSynchCache();
Animation anim = animations.get(modelPanel.currentRecordKey.get(ModelAnimBrowser.CURRENTRECORDKEY));
if (anim instanceof Animation) {
anim.stop();
anim.rewind();
JComponent comp = modelPanel.currentRecord.get(ModelAnimBrowser.CURRENTRECORD);
if (comp instanceof JComponent) {
comp.repaint();
}