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