KickJava   Java API By Example, From Geeks To Geeks.

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


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 package org.gjt.jclasslib.browser.detail.attributes;
8
9 import org.gjt.jclasslib.browser.BrowserServices;
10 import org.gjt.jclasslib.structures.AttributeInfo;
11
12
13 /**
14  * Detail pane showing a <tt>LocalVariableTable</tt> attribute.
15  *
16  * @author <a HREF="mailto:jclasslib@ej-technologies.com">Ingo Kegel</a>, <a HREF="mailto:vitor.carreira@gmail.com">Vitor Carreira</a>
17  * @version $Revision: 1.6 $ $Date: 2004/12/28 13:04:30 $
18  */

19 public class LocalVariableTableAttributeDetailPane extends LocalVariableCommonAttributeDetailPane {
20     /**
21      * Constructor.
22      *
23      * @param services the associated browser services.
24      */

25     public LocalVariableTableAttributeDetailPane(BrowserServices services) {
26         super(services);
27     }
28
29     protected AbstractAttributeTableModel createTableModel(AttributeInfo attribute) {
30         return createTableModel(attribute, "descriptor");
31     }
32 }
33
Popular Tags