Home
last modified time | relevance | path

Searched refs:memberValuePairName (Results 1 – 3 of 3) sorted by relevance

/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.core/org.eclipse.jdt.core/model/org/eclipse/jdt/internal/core/
H A DAnnotation.java34 protected String memberValuePairName; field in Annotation
40 public Annotation(JavaElement parent, String name, String memberValuePairName) { in Annotation() argument
43 this.memberValuePairName = memberValuePairName; in Annotation()
52 if (this.memberValuePairName == null) { in equals()
53 if (other.memberValuePairName != null) in equals()
55 } else if (!this.memberValuePairName.equals(other.memberValuePairName)) { in equals()
143 …result = prime * result + ((this.memberValuePairName == null) ? 0 : this.memberValuePairName.hashC… in hashCode()
H A DClassFileInfo.java64 …lement parent, HashMap newElements, IBinaryAnnotation annotationInfo, String memberValuePairName) { in generateAnnotationInfo() argument
65 generateAnnotationInfo(parent, null, newElements, annotationInfo, memberValuePairName); in generateAnnotationInfo()
67 …parameterName, HashMap newElements, IBinaryAnnotation annotationInfo, String memberValuePairName) { in generateAnnotationInfo() argument
69 Annotation annotation = new Annotation(parent, new String(typeName), memberValuePairName); in generateAnnotationInfo()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.core/org.eclipse.jdt.core/model/org/eclipse/jdt/internal/core/util/
H A DUtil.java2849 …getAnnotation(JavaElement parent, IBinaryAnnotation binaryAnnotation, String memberValuePairName) {
2851 return new Annotation(parent, new String(typeName), memberValuePairName);