1 7 8 package org.gjt.jclasslib.browser.detail.constants; 9 10 import org.gjt.jclasslib.browser.BrowserServices; 11 import org.gjt.jclasslib.browser.detail.FixedListDetailPane; 12 13 import javax.swing.tree.TreePath ; 14 15 21 public abstract class AbstractConstantInfoDetailPane extends FixedListDetailPane { 22 23 24 protected static final String MESSAGE_INVALID_CONSTANT_POOL_ENTRY = "invalid constant pool entry"; 25 26 30 protected AbstractConstantInfoDetailPane(BrowserServices services) { 31 super(services); 32 } 33 34 40 protected int constantPoolIndex(TreePath treePath) { 41 return getIndex(treePath); 42 } 43 44 } 45 46 47 | Popular Tags |