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

serp.bytecode.Deprecated Maven / Gradle / Ivy

The 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 - 2025 Weber Informatics LLC | Privacy Policy