-
Notifications
You must be signed in to change notification settings - Fork 0
/
field.go
96 lines (85 loc) · 2.03 KB
/
field.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
package parser
type Field struct {
AccessFlags AccessFlags
NameIndex uint16
DescriptorIndex uint16
Attributes []Attribute
}
func (f *Field) Name(c *ConstantPool) (string, error) {
name, err := c.GetConstantUtf8(f.NameIndex)
if err != nil {
return "", err
}
return name.String(), nil
}
func (f *Field) Descriptor(c *ConstantPool) (string, error) {
name, err := c.GetConstantUtf8(f.DescriptorIndex)
if err != nil {
return "", err
}
return name.String(), nil
}
func (f *Field) ConstantValue() *AttributeConstantValue {
for _, e := range f.Attributes {
if attr, ok := e.(*AttributeConstantValue); ok {
return attr
}
}
return nil
}
func (f *Field) Synthetic() *AttributeSynthetic {
for _, e := range f.Attributes {
if attr, ok := e.(*AttributeSynthetic); ok {
return attr
}
}
return nil
}
func (f *Field) Deprecated() *AttributeDeprecated {
for _, e := range f.Attributes {
if attr, ok := e.(*AttributeDeprecated); ok {
return attr
}
}
return nil
}
func (f *Field) Signature() *AttributeSignature {
for _, e := range f.Attributes {
if attr, ok := e.(*AttributeSignature); ok {
return attr
}
}
return nil
}
func (f *Field) RuntimeVisibleAnnotations() *AttributeRuntimeVisibleAnnotations {
for _, e := range f.Attributes {
if attr, ok := e.(*AttributeRuntimeVisibleAnnotations); ok {
return attr
}
}
return nil
}
func (f *Field) RuntimeInvisibleAnnotations() *AttributeRuntimeInvisibleAnnotations {
for _, e := range f.Attributes {
if attr, ok := e.(*AttributeRuntimeInvisibleAnnotations); ok {
return attr
}
}
return nil
}
func (f *Field) RuntimeVisibleTypeAnnotations() *AttributeRuntimeVisibleTypeAnnotations {
for _, e := range f.Attributes {
if attr, ok := e.(*AttributeRuntimeVisibleTypeAnnotations); ok {
return attr
}
}
return nil
}
func (f *Field) RuntimeInvisibleTypeAnnotations() *AttributeRuntimeInvisibleTypeAnnotations {
for _, e := range f.Attributes {
if attr, ok := e.(*AttributeRuntimeInvisibleTypeAnnotations); ok {
return attr
}
}
return nil
}