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

📄 classpathelement.java

📁 proguard 一个java的混淆器
💻 JAVA
字号:
/* * ProGuard -- shrinking, optimization, obfuscation, and preverification *             of Java bytecode. * * Copyright (c) 2002-2007 Eric Lafortune (eric@graphics.cornell.edu) * * This program 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. * * This program is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */package proguard.ant;import org.apache.tools.ant.*;import org.apache.tools.ant.types.*;import proguard.*;import java.io.File;/** * This FileSet represents a class path entry (or a set of class path entries) * in Ant. * * @author Eric Lafortune */public class ClassPathElement extends Path{    private String filter;    private String jarFilter;    private String warFilter;    private String earFilter;    private String zipFilter;    /**     * @see Path#Path(Project)     */    public ClassPathElement(Project project)    {        super(project);    }    /**     * Adds the contents of this class path element to the given class path.     * @param classPath the class path to be extended.     * @param output    specifies whether this is an output entry or not.     */    public void appendClassPathEntriesTo(ClassPath classPath, boolean output)    {        File     baseDir = getProject().getBaseDir();        String[] fileNames;        if (isReference())        {            // Get the referenced path or file set.            Object referencedObject = getCheckedRef(DataType.class,                                                    DataType.class.getName());            if (referencedObject instanceof Path)            {                Path path = (Path)referencedObject;                // Get the names of the files in the referenced path.                fileNames = path.list();            }            else if (referencedObject instanceof AbstractFileSet)            {                AbstractFileSet fileSet = (AbstractFileSet)referencedObject;                // Get the names of the existing input files in the referenced file set.                DirectoryScanner scanner = fileSet.getDirectoryScanner(getProject());                baseDir   = scanner.getBasedir();                fileNames = scanner.getIncludedFiles();            }            else            {                throw new BuildException("The refid attribute doesn't point to a <path> element or a <fileset> element");            }        }        else        {            // Get the names of the files in this path.            fileNames = list();        }        if (output)        {            if (fileNames.length != 1)            {                throw new BuildException("The <outjar> element must specify exactly one file or directory ["+fileNames.length+"]");            }        }        else        {            if (fileNames.length < 1)            {                throw new BuildException("The <injar> element must specify at least one file or directory");            }        }        for (int index = 0; index < fileNames.length; index++)        {            // Create a new class path entry, with the proper file name and            // any filters.            String fileName = fileNames[index];            File   file     = new File(fileName);            ClassPathEntry entry =                new ClassPathEntry(file.isAbsolute() ? file : new File(baseDir, fileName),                                   output);            entry.setFilter(filter);            entry.setJarFilter(jarFilter);            entry.setWarFilter(warFilter);            entry.setEarFilter(earFilter);            entry.setZipFilter(zipFilter);            // Add it to the class path.            classPath.add(entry);        }    }    // Ant task attributes.    /**     * @deprecated Use {@link #setLocation(File)} instead.     */    public void setFile(File file)    {        setLocation(file);    }    /**     * @deprecated Use {@link #setLocation(File)} instead.     */    public void setDir(File file)    {        setLocation(file);    }    /**     * @deprecated Use {@link #setLocation(File)} instead.     */    public void setName(File file)    {        setLocation(file);    }    public void setFilter(String filter)    {        this.filter = filter;    }    public void setJarfilter(String jarFilter)    {        this.jarFilter = jarFilter;    }    public void setWarfilter(String warFilter)    {        this.warFilter = warFilter;    }    public void setEarfilter(String earFilter)    {        this.earFilter = earFilter;    }    public void setZipfilter(String zipFilter)    {        this.zipFilter = zipFilter;    }}

⌨️ 快捷键说明

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