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