KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > gjt > jclasslib > browser > detail > attributes > GenericAttributeDetailPane


1 /*
2     This library is free software; you can redistribute it and/or
3     modify it under the terms of the GNU General Public
4     License as published by the Free Software Foundation; either
5     version 2 of the license, or (at your option) any later version.
6 */

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.AttributeInfo;
13 import org.gjt.jclasslib.util.ExtendedJLabel;
14
15 import javax.swing.tree.TreePath JavaDoc;
16
17 /**
18     Detail pane showing the generic information which applies to all attribute.
19
20     @author <a HREF="mailto:jclasslib@ej-technologies.com">Ingo Kegel</a>
21     @version $Revision: 1.5 $ $Date: 2003/08/18 08:18:35 $
22 */

23 public class GenericAttributeDetailPane extends FixedListDetailPane {
24
25     // Visual components
26

27     private ExtendedJLabel lblNameIndex;
28     private ExtendedJLabel lblLength;
29     
30     /**
31         Constructor.
32         @param services the associated browser services.
33      */

34     public GenericAttributeDetailPane(BrowserServices services) {
35         super(services);
36     }
37     
38     protected void setupLabels() {
39         
40         addDetailPaneEntry(normalLabel("Attribute name index:"),
41                            lblNameIndex = linkLabel(),
42                            null);
43
44         addDetailPaneEntry(normalLabel("Attribute length:"),
45                            lblLength = highlightLabel());
46     
47     }
48
49     public void show(TreePath JavaDoc treePath) {
50         
51         AttributeInfo attribute = findAttribute(treePath);
52
53         constantPoolHyperlink(lblNameIndex,
54                               null,
55                               attribute.getAttributeNameIndex());
56         
57         lblLength.setText(attribute.getAttributeLength());
58         
59         super.show(treePath);
60     }
61     
62 }
63
64
Popular Tags