1 30 31 package oracle.toplink.libraries.asm.attrs; 32 33 import oracle.toplink.libraries.asm.Attribute; 34 35 40 41 public class Attributes { 42 43 46 47 private Attributes () { 48 } 49 50 57 58 public static Attribute[] getDefaultAttributes () { 59 return new Attribute[] { 60 new AnnotationDefaultAttribute(), 61 new RuntimeInvisibleAnnotations(), 62 new RuntimeInvisibleParameterAnnotations(), 63 new RuntimeVisibleAnnotations(), 64 new RuntimeVisibleParameterAnnotations(), 65 new StackMapAttribute(), 66 new SourceDebugExtensionAttribute(), 67 new SignatureAttribute(), 68 new EnclosingMethodAttribute(), 69 new LocalVariableTypeTableAttribute() 70 }; 71 } 72 } 73 | Popular Tags |