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

📄 classpathentry.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.config.classpath;

import javax.swing.tree.DefaultTreeModel;
import java.io.File;
import java.io.IOException;

/**
    Base class for classpath entries.

    @author <a href="mailto:jclasslib@ej-technologies.com">Ingo Kegel</a>
    @version $Revision: 1.2 $ $Date: 2006/09/25 16:00:58 $
*/
public abstract class ClasspathEntry implements ClasspathComponent {

    /** Suffix for class files. */
    protected static final String CLASSFILE_SUFFIX = ".class";

    private String fileName;
    private File file;

    /**
     * Get the name of the classpath entry.
     * @return the name
     */
    public String getFileName() {
        return fileName;
    }

    /**
     * Set the name of the classpath entry.
     * @param fileName the name.
     */
    public void setFileName(String fileName) {

        this.fileName = fileName;
        file = new File(fileName);
        try {
            file = file.getCanonicalFile();
        } catch (IOException e) {
            file = null;
        }
    }

    public boolean equals(Object other) {

        if (this == other) {
            return true;
        }
        if (other.getClass() != getClass()) {
            return false;
        }

        return fileName.equals(((ClasspathEntry)other).fileName);
    }

    public int hashCode() {
        return fileName.hashCode();
    }

    // classpath entries are immutable
    public void addClasspathChangeListener(ClasspathChangeListener listener) {
    }

    public void removeClasspathChangeListener(ClasspathChangeListener listener) {
    }

    /**
     * Get the file for the classpath entry. May be <tt>null</tt> if the entry is invalid.
     * @return the file.
     */
    protected File getFile() {
        return file;
    }

    /**
     * Convenience method to get a node or add a new class of package node to
     * a parent node. New nodes will be added in correct sort order, packages first.
     * @param newNodeName the name of the new node.
     * @param parentNode the parent node.
     * @param packageNode whether the new node is a package node or not.
     * @param model the tree model.
     * @param reset whether a reset operation is in progress.
     * @return the fould or created node.
     */
    protected ClassTreeNode addOrFindNode(String newNodeName,
                                          ClassTreeNode parentNode,
                                          boolean packageNode,
                                          DefaultTreeModel model,
                                          boolean reset)
    {
        int childCount = parentNode.getChildCount();

        ClassTreeNode newNode = new ClassTreeNode(newNodeName, packageNode);
        for (int i = 0; i < childCount; i++) {
            ClassTreeNode childNode = (ClassTreeNode)parentNode.getChildAt(i);
            String childNodeName = childNode.toString();
            if (childNode.getChildCount() > 0 && !packageNode) {
                continue;
            } else if (childNode.getChildCount() == 0 && packageNode) {
                insertNode(newNode, parentNode, i, model, reset);
                return newNode;
            } else if (newNodeName.equals(childNodeName)) {
                return childNode;
            } else if (newNodeName.compareTo(childNodeName) < 0) {
                insertNode(newNode, parentNode, i, model, reset);
                return newNode;
            }
        }
        insertNode(newNode, parentNode, childCount, model, reset);

        return newNode;
    }

    /**
     * Strip the class suffix from the supplied file name.
     * @param name the file name.
     * @return the stripped name.
     */
    protected String stripClassSuffix(String name) {
        return name.substring(0, name.length() - CLASSFILE_SUFFIX.length());
    }

    private void insertNode(ClassTreeNode newNode,
                              ClassTreeNode parentNode,
                              int insertionIndex,
                              DefaultTreeModel model,
                              boolean reset)
    {
        parentNode.insert(newNode, insertionIndex);
        if (!reset) {
            model.nodesWereInserted(parentNode, new int[] {insertionIndex});
        }
    }

}

⌨️ 快捷键说明

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