Home
last modified time | relevance | path

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

/external/javapoet/src/main/java/com/squareup/javapoet/
DTypeSpec.java51 public final CodeBlock anonymousTypeArguments; field in TypeSpec
71 this.anonymousTypeArguments = builder.anonymousTypeArguments; in TypeSpec()
102 assert type.anonymousTypeArguments == null; in TypeSpec()
105 this.anonymousTypeArguments = null; in TypeSpec()
168 Builder builder = new Builder(kind, name, anonymousTypeArguments); in toBuilder()
198 if (!anonymousTypeArguments.formatParts.isEmpty()) { in emit()
200 codeWriter.emit(anonymousTypeArguments); in emit()
207 } else if (anonymousTypeArguments != null) { in emit()
210 codeWriter.emit(anonymousTypeArguments); in emit()
338 if (enumName == null && anonymousTypeArguments == null) { in emit()
[all …]