public void show(TreePath treePath) {
int constantPoolIndex = constantPoolIndex(treePath);
try {
ConstantFloatInfo entry = (ConstantFloatInfo)services.getClassFile().getConstantPoolEntry(constantPoolIndex, ConstantFloatInfo.class);
lblBytes.setText(entry.getFormattedBytes());
lblFloat.setText(entry.getFloat());
} catch (InvalidByteCodeException ex) {
lblComment.setText(MESSAGE_INVALID_CONSTANT_POOL_ENTRY);
}
super.show(treePath);