source: trunk/src/org/expeditee/gui/FrameCache.java@ 214

Last change on this file since 214 was 214, checked in by ra33, 16 years ago

Added charts

File size: 303 bytes
Line 
1package org.expeditee.gui;
2
3import java.util.HashMap;
4
5public class FrameCache extends HashMap<String, Frame> {
6
7 /**
8 *
9 */
10 private static final long serialVersionUID = 1L;
11
12 public Frame remove(String key) {
13 Frame toRemove = super.remove(key);
14 toRemove.dispose();
15 return toRemove;
16 }
17}
Note: See TracBrowser for help on using the repository browser.