org.eclipse.jdt.internal.core.util.Util.getAnnotation()方法的使用及代码示例

x33g5p2x  于2022-02-01 转载在 其他  
字(10.3k)|赞(0)|评价(0)|浏览(226)

本文整理了Java中org.eclipse.jdt.internal.core.util.Util.getAnnotation()方法的一些代码示例,展示了Util.getAnnotation()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Util.getAnnotation()方法的具体详情如下:
包路径:org.eclipse.jdt.internal.core.util.Util
类名称:Util
方法名:getAnnotation

Util.getAnnotation介绍

暂无

代码示例

代码示例来源:origin: org.eclipse.jdt/org.eclipse.jdt.core

  1. private IAnnotation[] getAnnotations(JavaElement annotationParent, IBinaryAnnotation[] binaryAnnotations) {
  2. if (binaryAnnotations == null) return Annotation.NO_ANNOTATIONS;
  3. int length = binaryAnnotations.length;
  4. IAnnotation[] annotations = new IAnnotation[length];
  5. for (int i = 0; i < length; i++) {
  6. annotations[i] = Util.getAnnotation(annotationParent, binaryAnnotations[i], null);
  7. }
  8. return annotations;
  9. }
  10. @Override

代码示例来源:origin: org.eclipse.scout.sdk.deps/org.eclipse.jdt.core

  1. } else if (binaryValue instanceof IBinaryAnnotation) {
  2. memberValuePair.valueKind = IMemberValuePair.K_ANNOTATION;
  3. return getAnnotation(parent, (IBinaryAnnotation) binaryValue, memberValuePair.getMemberName());
  4. } else if (binaryValue instanceof ClassSignature) {
  5. memberValuePair.valueKind = IMemberValuePair.K_CLASS;

代码示例来源:origin: com.vaadin/vaadin-client-compiler-deps

  1. } else if (binaryValue instanceof IBinaryAnnotation) {
  2. memberValuePair.valueKind = IMemberValuePair.K_ANNOTATION;
  3. return getAnnotation(parent, (IBinaryAnnotation) binaryValue, memberValuePair.getMemberName());
  4. } else if (binaryValue instanceof ClassSignature) {
  5. memberValuePair.valueKind = IMemberValuePair.K_CLASS;

代码示例来源:origin: org.eclipse.scout.sdk.deps/org.eclipse.jdt.core

  1. private IAnnotation[] getAnnotations(JavaElement annotationParent, IBinaryAnnotation[] binaryAnnotations) {
  2. if (binaryAnnotations == null) return Annotation.NO_ANNOTATIONS;
  3. int length = binaryAnnotations.length;
  4. IAnnotation[] annotations = new IAnnotation[length];
  5. for (int i = 0; i < length; i++) {
  6. annotations[i] = Util.getAnnotation(annotationParent, binaryAnnotations[i], null);
  7. }
  8. return annotations;
  9. }
  10. public IMemberValuePair getDefaultValue() throws JavaModelException {

代码示例来源:origin: org.eclipse.tycho/org.eclipse.jdt.core

  1. } else if (binaryValue instanceof IBinaryAnnotation) {
  2. memberValuePair.valueKind = IMemberValuePair.K_ANNOTATION;
  3. return getAnnotation(parent, (IBinaryAnnotation) binaryValue, memberValuePair.getMemberName());
  4. } else if (binaryValue instanceof ClassSignature) {
  5. memberValuePair.valueKind = IMemberValuePair.K_CLASS;

代码示例来源:origin: com.google.code.maven-play-plugin.org.eclipse.jdt/org.eclipse.jdt.core

  1. private IAnnotation[] getAnnotations(JavaElement annotationParent, IBinaryAnnotation[] binaryAnnotations) {
  2. if (binaryAnnotations == null) return Annotation.NO_ANNOTATIONS;
  3. int length = binaryAnnotations.length;
  4. IAnnotation[] annotations = new IAnnotation[length];
  5. for (int i = 0; i < length; i++) {
  6. annotations[i] = Util.getAnnotation(annotationParent, binaryAnnotations[i], null);
  7. }
  8. return annotations;
  9. }
  10. public IMemberValuePair getDefaultValue() throws JavaModelException {

代码示例来源:origin: org.jibx.config.3rdparty.org.eclipse/org.eclipse.jdt.core

  1. } else if (binaryValue instanceof IBinaryAnnotation) {
  2. memberValuePair.valueKind = IMemberValuePair.K_ANNOTATION;
  3. return getAnnotation(parent, (IBinaryAnnotation) binaryValue, memberValuePair.getMemberName());
  4. } else if (binaryValue instanceof ClassSignature) {
  5. memberValuePair.valueKind = IMemberValuePair.K_CLASS;

代码示例来源:origin: org.eclipse.tycho/org.eclipse.jdt.core

  1. private IAnnotation[] getAnnotations(JavaElement annotationParent, IBinaryAnnotation[] binaryAnnotations) {
  2. if (binaryAnnotations == null) return Annotation.NO_ANNOTATIONS;
  3. int length = binaryAnnotations.length;
  4. IAnnotation[] annotations = new IAnnotation[length];
  5. for (int i = 0; i < length; i++) {
  6. annotations[i] = Util.getAnnotation(annotationParent, binaryAnnotations[i], null);
  7. }
  8. return annotations;
  9. }
  10. public IMemberValuePair getDefaultValue() throws JavaModelException {

代码示例来源:origin: com.google.code.maven-play-plugin.org.eclipse.jdt/org.eclipse.jdt.core

  1. } else if (binaryValue instanceof IBinaryAnnotation) {
  2. memberValuePair.valueKind = IMemberValuePair.K_ANNOTATION;
  3. return getAnnotation(parent, (IBinaryAnnotation) binaryValue, memberValuePair.getMemberName());
  4. } else if (binaryValue instanceof ClassSignature) {
  5. memberValuePair.valueKind = IMemberValuePair.K_CLASS;

代码示例来源:origin: trylimits/Eclipse-Postfix-Code-Completion

  1. private IAnnotation[] getAnnotations(JavaElement annotationParent, IBinaryAnnotation[] binaryAnnotations) {
  2. if (binaryAnnotations == null) return Annotation.NO_ANNOTATIONS;
  3. int length = binaryAnnotations.length;
  4. IAnnotation[] annotations = new IAnnotation[length];
  5. for (int i = 0; i < length; i++) {
  6. annotations[i] = Util.getAnnotation(annotationParent, binaryAnnotations[i], null);
  7. }
  8. return annotations;
  9. }
  10. public IMemberValuePair getDefaultValue() throws JavaModelException {

代码示例来源:origin: trylimits/Eclipse-Postfix-Code-Completion

  1. } else if (binaryValue instanceof IBinaryAnnotation) {
  2. memberValuePair.valueKind = IMemberValuePair.K_ANNOTATION;
  3. return getAnnotation(parent, (IBinaryAnnotation) binaryValue, memberValuePair.getMemberName());
  4. } else if (binaryValue instanceof ClassSignature) {
  5. memberValuePair.valueKind = IMemberValuePair.K_CLASS;

代码示例来源:origin: org.jibx.config.3rdparty.org.eclipse/org.eclipse.jdt.core

  1. private IAnnotation[] getAnnotations(JavaElement annotationParent, IBinaryAnnotation[] binaryAnnotations, long tagBits) {
  2. IAnnotation[] standardAnnotations = getStandardAnnotations(tagBits);
  3. if (binaryAnnotations == null)
  4. return standardAnnotations;
  5. int length = binaryAnnotations.length;
  6. int standardLength = standardAnnotations.length;
  7. IAnnotation[] annotations = new IAnnotation[length + standardLength];
  8. for (int i = 0; i < length; i++) {
  9. annotations[i] = Util.getAnnotation(annotationParent, binaryAnnotations[i], null);
  10. }
  11. System.arraycopy(standardAnnotations, 0, annotations, length, standardLength);
  12. return annotations;
  13. }
  14. public IMemberValuePair getDefaultValue() throws JavaModelException {

代码示例来源:origin: org.eclipse.jdt/org.eclipse.jdt.core

  1. } else if (binaryValue instanceof IBinaryAnnotation) {
  2. memberValuePair.valueKind = IMemberValuePair.K_ANNOTATION;
  3. return getAnnotation(parent, (IBinaryAnnotation) binaryValue, memberValuePair.getMemberName());
  4. } else if (binaryValue instanceof ClassSignature) {
  5. memberValuePair.valueKind = IMemberValuePair.K_CLASS;

代码示例来源:origin: org.eclipse.jdt/org.eclipse.jdt.core

  1. protected IAnnotation[] getAnnotations(IBinaryAnnotation[] binaryAnnotations, long tagBits) {
  2. IAnnotation[] standardAnnotations = getStandardAnnotations(tagBits);
  3. if (binaryAnnotations == null)
  4. return standardAnnotations;
  5. int length = binaryAnnotations.length;
  6. int standardLength = standardAnnotations.length;
  7. int fullLength = length + standardLength;
  8. if (fullLength == 0) {
  9. return Annotation.NO_ANNOTATIONS;
  10. }
  11. IAnnotation[] annotations = new IAnnotation[fullLength];
  12. for (int i = 0; i < length; i++) {
  13. annotations[i] = Util.getAnnotation(this, binaryAnnotations[i], null);
  14. }
  15. System.arraycopy(standardAnnotations, 0, annotations, length, standardLength);
  16. return annotations;
  17. }
  18. private IAnnotation getAnnotation(char[][] annotationName) {

代码示例来源:origin: org.eclipse.tycho/org.eclipse.jdt.core

  1. protected IAnnotation[] getAnnotations(IBinaryAnnotation[] binaryAnnotations, long tagBits) {
  2. IAnnotation[] standardAnnotations = getStandardAnnotations(tagBits);
  3. if (binaryAnnotations == null)
  4. return standardAnnotations;
  5. int length = binaryAnnotations.length;
  6. int standardLength = standardAnnotations.length;
  7. int fullLength = length + standardLength;
  8. if (fullLength == 0) {
  9. return Annotation.NO_ANNOTATIONS;
  10. }
  11. IAnnotation[] annotations = new IAnnotation[fullLength];
  12. for (int i = 0; i < length; i++) {
  13. annotations[i] = Util.getAnnotation(this, binaryAnnotations[i], null);
  14. }
  15. System.arraycopy(standardAnnotations, 0, annotations, length, standardLength);
  16. return annotations;
  17. }
  18. private IAnnotation getAnnotation(char[][] annotationName) {

代码示例来源:origin: org.eclipse.scout.sdk.deps/org.eclipse.jdt.core

  1. protected IAnnotation[] getAnnotations(IBinaryAnnotation[] binaryAnnotations, long tagBits) {
  2. IAnnotation[] standardAnnotations = getStandardAnnotations(tagBits);
  3. if (binaryAnnotations == null)
  4. return standardAnnotations;
  5. int length = binaryAnnotations.length;
  6. int standardLength = standardAnnotations.length;
  7. int fullLength = length + standardLength;
  8. if (fullLength == 0) {
  9. return Annotation.NO_ANNOTATIONS;
  10. }
  11. IAnnotation[] annotations = new IAnnotation[fullLength];
  12. for (int i = 0; i < length; i++) {
  13. annotations[i] = Util.getAnnotation(this, binaryAnnotations[i], null);
  14. }
  15. System.arraycopy(standardAnnotations, 0, annotations, length, standardLength);
  16. return annotations;
  17. }
  18. private IAnnotation getAnnotation(char[][] annotationName) {

代码示例来源:origin: com.google.code.maven-play-plugin.org.eclipse.jdt/org.eclipse.jdt.core

  1. protected IAnnotation[] getAnnotations(IBinaryAnnotation[] binaryAnnotations, long tagBits) {
  2. IAnnotation[] standardAnnotations = getStandardAnnotations(tagBits);
  3. if (binaryAnnotations == null)
  4. return standardAnnotations;
  5. int length = binaryAnnotations.length;
  6. int standardLength = standardAnnotations.length;
  7. int fullLength = length + standardLength;
  8. if (fullLength == 0) {
  9. return Annotation.NO_ANNOTATIONS;
  10. }
  11. IAnnotation[] annotations = new IAnnotation[fullLength];
  12. for (int i = 0; i < length; i++) {
  13. annotations[i] = Util.getAnnotation(this, binaryAnnotations[i], null);
  14. }
  15. System.arraycopy(standardAnnotations, 0, annotations, length, standardLength);
  16. return annotations;
  17. }
  18. private IAnnotation getAnnotation(char[][] annotationName) {

代码示例来源:origin: org.jibx.config.3rdparty.org.eclipse/org.eclipse.jdt.core

  1. protected IAnnotation[] getAnnotations(IBinaryAnnotation[] binaryAnnotations, long tagBits) {
  2. IAnnotation[] standardAnnotations = getStandardAnnotations(tagBits);
  3. if (binaryAnnotations == null)
  4. return standardAnnotations;
  5. int length = binaryAnnotations.length;
  6. int standardLength = standardAnnotations.length;
  7. int fullLength = length + standardLength;
  8. if (fullLength == 0) {
  9. return Annotation.NO_ANNOTATIONS;
  10. }
  11. IAnnotation[] annotations = new IAnnotation[fullLength];
  12. for (int i = 0; i < length; i++) {
  13. annotations[i] = Util.getAnnotation(this, binaryAnnotations[i], null);
  14. }
  15. System.arraycopy(standardAnnotations, 0, annotations, length, standardLength);
  16. return annotations;
  17. }
  18. private IAnnotation getAnnotation(char[][] annotationName) {

代码示例来源:origin: trylimits/Eclipse-Postfix-Code-Completion

  1. protected IAnnotation[] getAnnotations(IBinaryAnnotation[] binaryAnnotations, long tagBits) {
  2. IAnnotation[] standardAnnotations = getStandardAnnotations(tagBits);
  3. if (binaryAnnotations == null)
  4. return standardAnnotations;
  5. int length = binaryAnnotations.length;
  6. int standardLength = standardAnnotations.length;
  7. int fullLength = length + standardLength;
  8. if (fullLength == 0) {
  9. return Annotation.NO_ANNOTATIONS;
  10. }
  11. IAnnotation[] annotations = new IAnnotation[fullLength];
  12. for (int i = 0; i < length; i++) {
  13. annotations[i] = Util.getAnnotation(this, binaryAnnotations[i], null);
  14. }
  15. System.arraycopy(standardAnnotations, 0, annotations, length, standardLength);
  16. return annotations;
  17. }
  18. private IAnnotation getAnnotation(char[][] annotationName) {

相关文章

Util类方法