⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 abstractattributelistdetailpane.java

📁 Java Bytecode Editor 是一个 JAVA 的字节码反汇编和修改器。它可以很方便的修改已经编译成 Class 文件的 JAVA 文件。
💻 JAVA
字号:
/*
 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 ee.ioc.cs.jbe.browser.detail.attributes;

import org.gjt.jclasslib.structures.AttributeInfo;

import ee.ioc.cs.jbe.browser.BrowserServices;
import ee.ioc.cs.jbe.browser.detail.ListDetailPane;


import javax.swing.*;
import javax.swing.table.*;
import javax.swing.tree.TreePath;

import java.util.WeakHashMap;

/**
 * Base class for all detail panes showing specific information for a specific
 * attribute tree node selected in <tt>BrowserTreePane</tt> which can be
 * displayed as a list of row entries with the same number of columns.
 * 
 * @author <a href="mailto:jclasslib@ej-technologies.com">Ingo Kegel</a>
 * @version $Revision: 1.3 $ $Date: 2006/09/04 15:43:18 $
 */
public abstract class AbstractAttributeListDetailPane extends ListDetailPane {

    /** Default width in pixels for a column displaying a number. */
    protected static final int NUMBER_COLUMN_WIDTH = 60;

    /** Default width in pixels for a column displaying a hyperlink. */
    protected static final int LINK_COLUMN_WIDTH = 80;

    /** Default width in pixels for a column displaying a verbose entry. */
    protected static final int VERBOSE_COLUMN_WIDTH = 250;

    private static final int COLUMN_MIN_WIDTH = 20;

    private static final int ROW_NUMBER_COLUMN_WIDTH = 35;

    private static WeakHashMap attributeToTableModel = new WeakHashMap();

    private AbstractAttributeTableModel tableModel;

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

    protected TableModel getTableModel(TreePath treePath) {
        AttributeInfo attribute = findAttribute(treePath);

        tableModel = getCachedTableModel(attribute);
        return tableModel;
    }

    protected void link(int row, int column) {
        tableModel.link(row, column);
    }

    /**
     * Create the table model for a specific attribute. This method is called by
     * <tt>getTableModel()</tt>.
     * 
     * @param attribute
     *            the attribute
     * @return the table model
     */
    protected abstract AbstractAttributeTableModel createTableModel(
            AttributeInfo attribute);

    /**
     * Get the width in pixels for a specific column.
     * 
     * @param column
     *            the index of the column in the model
     * @return the width
     */
    protected int getColumnWidth(int column) {
        return tableModel.getColumnWidth(column);
    }

    protected void createTableColumnModel(JTable table, TableModel tableModel) {
        AbstractAttributeTableModel attributeTableModel = (AbstractAttributeTableModel) tableModel;

        TableColumnModel tableColumnModel = attributeTableModel
                .getTableColumnModel();
        if (tableColumnModel == null) {
            table.createDefaultColumnsFromModel();
            tableColumnModel = table.getColumnModel();
            attributeTableModel.setTableColumnModel(tableColumnModel);

        } else {
            table.setColumnModel(tableColumnModel);
        }
        adjustColumns(table, tableColumnModel);
    }

    private void adjustColumns(JTable table, TableColumnModel tableColumnModel) {

        TableColumn tableColumn;
        for (int i = 0; i < tableColumnModel.getColumnCount(); i++) {
            tableColumn = tableColumnModel.getColumn(i);
            tableColumn.setMinWidth(COLUMN_MIN_WIDTH);

            int width = (i == 0) ? ROW_NUMBER_COLUMN_WIDTH : getColumnWidth(i);

            tableColumn.setWidth(width);
            tableColumn.setPreferredWidth(width);

        }

    }

    private AbstractAttributeTableModel getCachedTableModel(
            AttributeInfo attribute) {

        AbstractAttributeTableModel tableModel = (AbstractAttributeTableModel) attributeToTableModel
                .get(attribute);

        if (tableModel == null) {
            tableModel = createTableModel(attribute);

            attributeToTableModel.put(attribute, tableModel);

        }

        return tableModel;
    }

  
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -