Home
last modified time | relevance | path

Searched refs:annotationSpec (Results 1 – 5 of 5) sorted by relevance

/external/javapoet/src/main/java/com/squareup/javapoet/
DParameterSpec.java135 for (AnnotationSpec annotationSpec : annotationSpecs) { in addAnnotations()
136 this.annotations.add(annotationSpec); in addAnnotations()
141 public Builder addAnnotation(AnnotationSpec annotationSpec) { in addAnnotation() argument
142 this.annotations.add(annotationSpec); in addAnnotation()
DFieldSpec.java135 for (AnnotationSpec annotationSpec : annotationSpecs) { in addAnnotations()
136 this.annotations.add(annotationSpec); in addAnnotations()
141 public Builder addAnnotation(AnnotationSpec annotationSpec) { in addAnnotation() argument
142 this.annotations.add(annotationSpec); in addAnnotation()
DCodeWriter.java159 for (AnnotationSpec annotationSpec : annotations) { in emitAnnotations()
160 annotationSpec.emit(this, inline); in emitAnnotations()
340 AnnotationSpec annotationSpec = (AnnotationSpec) o; in emitLiteral() local
341 annotationSpec.emit(this, true); in emitLiteral()
DMethodSpec.java313 for (AnnotationSpec annotationSpec : annotationSpecs) { in addAnnotations()
314 this.annotations.add(annotationSpec); in addAnnotations()
319 public Builder addAnnotation(AnnotationSpec annotationSpec) { in addAnnotation() argument
320 this.annotations.add(annotationSpec); in addAnnotation()
DTypeSpec.java431 for (AnnotationSpec annotationSpec : annotationSpecs) { in addAnnotations()
432 this.annotations.add(annotationSpec); in addAnnotations()
437 public Builder addAnnotation(AnnotationSpec annotationSpec) { in addAnnotation() argument
438 checkNotNull(annotationSpec, "annotationSpec == null"); in addAnnotation()
439 this.annotations.add(annotationSpec); in addAnnotation()