1 package serp.bytecode;
2
3 import serp.bytecode.visitor.*;
4
5 /***
6 * Attribute marking a member as synthetic, or not present in the class
7 * source code.
8 *
9 * @author Abe White
10 */
11 public class Synthetic extends Attribute {
12 Synthetic(int nameIndex, Attributes owner) {
13 super(nameIndex, owner);
14 }
15
16 public void acceptVisit(BCVisitor visit) {
17 visit.enterSynthetic(this);
18 visit.exitSynthetic(this);
19 }
20 }