KickJava   Java API By Example, From Geeks To Geeks.

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


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  * Detail pane showing a <tt>LocalVariableTypeTable</tt> attribute.
14  *
15  * @author <a HREF="mailto:vitor.carreira@gmail.com">Vitor Carreira</a>
16  * @version $Revision: 1.1 $ $Date: 2004/12/28 13:04:30 $
17  */

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

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