serp.bytecode.Synthetic Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of serp Show documentation
Show all versions of serp Show documentation
Serp is an open source framework for manipulating Java bytecode.
The newest version!
package serp.bytecode;
import serp.bytecode.visitor.*;
/**
* Attribute marking a member as synthetic, or not present in the class
* source code.
*
* @author Abe White
*/
public class Synthetic extends Attribute {
Synthetic(int nameIndex, Attributes owner) {
super(nameIndex, owner);
}
public void acceptVisit(BCVisitor visit) {
visit.enterSynthetic(this);
visit.exitSynthetic(this);
}
}