public void show(TreePath treePath) {
int constantPoolIndex = constantPoolIndex(treePath);
try {
ConstantDoubleInfo entry = (ConstantDoubleInfo)services.getClassFile().getConstantPoolEntry(constantPoolIndex, ConstantDoubleInfo.class);
lblHighBytes.setText(entry.getFormattedHighBytes());
lblLowBytes.setText(entry.getFormattedLowBytes());
lblDouble.setText(entry.getDouble());
} catch (InvalidByteCodeException ex) {
lblComment.setText(MESSAGE_INVALID_CONSTANT_POOL_ENTRY);
}
super.show(treePath);