All Downloads are FREE. Search and download functionalities are using the official Maven repository.

proguard.pass.Pass Maven / Gradle / Ivy

Go to download

ProGuard is a free shrinker, optimizer, obfuscator, and preverifier for Java bytecode

There is a newer version: 7.6.0
Show newest version
/*
 * ProGuard -- shrinking, optimization, obfuscation, and preverification
 *             of Java bytecode.
 *
 * Copyright (c) 2002-2021 Guardsquare NV
 */

package proguard.pass;

import proguard.AppView;

/**
 * The interface each ProGuard pass should implement.
 */
public interface Pass
{
    /**
     * Returns the name of the pass.
     */
    default String getName()
    {
        return getClass().getName();
    }

    /**
     * Executes the pass.
     */
    void execute(AppView appView) throws Exception;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy