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

serp.bytecode.Deprecated Maven / Gradle / Ivy

There is a newer version: 4.0.0
Show newest version
package serp.bytecode;

import serp.bytecode.visitor.*;

/**
 * Attribute signifying that a method or class is deprecated.
 *
 * @author Abe White
 */
public class Deprecated extends Attribute {
    Deprecated(int nameIndex, Attributes owner) {
        super(nameIndex, owner);
    }

    public void acceptVisit(BCVisitor visit) {
        visit.enterDeprecated(this);
        visit.exitDeprecated(this);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy