fileMananger fm;
ImageIcon viewIcon = null;
public JPanel createView() {
JPanel tmp = new JPanel();
wowfile f = (wowfile)fm.getActiveFile().obj;
String text = "";
if(f instanceof adt) text = "ADT File";
else if(f instanceof dbc) text = "DBC File";
else text = f.getClass().toString();
tmp.add(new JLabel(text), "Center");
return tmp;
}