Package org.gjt.jclasslib.browser.detail.attributes

Source Code of org.gjt.jclasslib.browser.detail.attributes.RuntimeAnnotationsAttributeDetailPane

/*
    This library is free software; you can redistribute it and/or
    modify it under the terms of the GNU General Public
    License as published by the Free Software Foundation; either
    version 2 of the license, or (at your option) any later version.
*/
package org.gjt.jclasslib.browser.detail.attributes;

import org.gjt.jclasslib.browser.BrowserServices;
import org.gjt.jclasslib.browser.detail.FixedListDetailPane;
import org.gjt.jclasslib.structures.attributes.RuntimeAnnotationsAttribute;
import org.gjt.jclasslib.util.ExtendedJLabel;

import javax.swing.tree.TreePath;

/**
* Detail pane showing <tt>VisibleRuntimeAnnotations</tt>  and
* <tt>InvisibleRuntimeAnnotations</tt> attribute.
*
* @author <a href="mailto:vitor.carreira@gmail.com">Vitor Carreira</a>
* @version $Revision: 1.1 $ $Date: 2004-12-28 13:04:30 $
*/
public class RuntimeAnnotationsAttributeDetailPane extends FixedListDetailPane {

    private ExtendedJLabel lblAnnotationEntries;

    /**
     * Constructor.
     *
     * @param services the associated browser services.
     */
    public RuntimeAnnotationsAttributeDetailPane(BrowserServices services) {
        super(services);
    }


    protected void setupLabels() {
        addDetailPaneEntry(normalLabel("Number of annotations:"),
                lblAnnotationEntries = highlightLabel());
    }

    public void show(TreePath treePath) {
        RuntimeAnnotationsAttribute raa =
                (RuntimeAnnotationsAttribute)findAttribute(treePath);

        lblAnnotationEntries.setText(String.valueOf(raa.getRuntimeAnnotations().length));

        super.show(treePath);

    }
}
TOP

Related Classes of org.gjt.jclasslib.browser.detail.attributes.RuntimeAnnotationsAttributeDetailPane

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.