tEditorPane.setEditable(false);
MechSummary ms = m_mechsCurrent[m_mechList.getSelectedIndex()];
try {
Entity e = new MechFileParser(ms.getSourceFile(), ms
.getEntryName()).getEntity();
e.calculateBattleValue();
tEditorPane.setText(e.getBVText());
} catch (Exception e) {
}
tEditorPane.setCaretPosition(0);
JScrollPane tScroll = new JScrollPane(tEditorPane,