Synthetic_attribute
1078107910801081108210831084
public static void addSyntheticAttribute(CtConstructor ctor) { MethodInfo info = ctor.getMethodInfo(); ConstPool cp = info.getConstPool(); info.addAttribute(new SyntheticAttribute(cp)); }
1085108610871088108910901091
public static void addSyntheticAttribute(CtField field) { FieldInfo info = field.getFieldInfo(); ConstPool cp = info.getConstPool(); info.addAttribute(new SyntheticAttribute(cp)); }
1071107210731074107510761077
} public static void addSyntheticAttribute(MethodInfo info) { ConstPool cp = info.getConstPool(); info.addAttribute(new SyntheticAttribute(cp)); }