1 7 8 package org.gjt.jclasslib.browser.detail.attributes; 9 10 import org.gjt.jclasslib.browser.BrowserServices; 11 import org.gjt.jclasslib.browser.detail.FixedListDetailPane; 12 import org.gjt.jclasslib.structures.attributes.ConstantValueAttribute; 13 import org.gjt.jclasslib.util.ExtendedJLabel; 14 15 import javax.swing.tree.TreePath ; 16 17 23 public class ConstantValueAttributeDetailPane extends FixedListDetailPane { 24 25 27 private ExtendedJLabel lblValue; 28 private ExtendedJLabel lblVerbose; 29 30 34 public ConstantValueAttributeDetailPane(BrowserServices services) { 35 super(services); 36 } 37 38 protected void setupLabels() { 39 40 addDetailPaneEntry(normalLabel("Constant value index:"), 41 lblValue = linkLabel(), 42 lblVerbose = highlightLabel()); 43 } 44 45 public void show(TreePath treePath) { 46 47 ConstantValueAttribute attribute = (ConstantValueAttribute)findAttribute(treePath); 48 49 constantPoolHyperlink(lblValue, 50 lblVerbose, 51 attribute.getConstantvalueIndex()); 52 53 super.show(treePath); 54 } 55 56 } 57 58 | Popular Tags |