HomeSort by relevance Sort by last modified time
    Searched refs:implementedTypes (Results 1 - 11 of 11) sorted by null

  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/body/
EnumDeclaration.java 55 private NodeList<ClassOrInterfaceType> implementedTypes;
68 public EnumDeclaration(EnumSet<Modifier> modifiers, NodeList<AnnotationExpr> annotations, SimpleName name, NodeList<ClassOrInterfaceType> implementedTypes, NodeList<EnumConstantDeclaration> entries, NodeList<BodyDeclaration<?>> members) {
69 this(null, modifiers, annotations, name, implementedTypes, entries, members);
76 public EnumDeclaration(TokenRange tokenRange, EnumSet<Modifier> modifiers, NodeList<AnnotationExpr> annotations, SimpleName name, NodeList<ClassOrInterfaceType> implementedTypes, NodeList<EnumConstantDeclaration> entries, NodeList<BodyDeclaration<?>> members) {
78 setImplementedTypes(implementedTypes);
116 return implementedTypes;
134 public EnumDeclaration setImplementedTypes(final NodeList<ClassOrInterfaceType> implementedTypes) {
135 assertNotNull(implementedTypes);
136 if (implementedTypes == this.implementedTypes) {
    [all...]
ClassOrInterfaceDeclaration.java 68 private NodeList<ClassOrInterfaceType> implementedTypes;
79 public ClassOrInterfaceDeclaration(final EnumSet<Modifier> modifiers, final NodeList<AnnotationExpr> annotations, final boolean isInterface, final SimpleName name, final NodeList<TypeParameter> typeParameters, final NodeList<ClassOrInterfaceType> extendedTypes, final NodeList<ClassOrInterfaceType> implementedTypes, final NodeList<BodyDeclaration<?>> members) {
80 this(null, modifiers, annotations, isInterface, name, typeParameters, extendedTypes, implementedTypes, members);
87 public ClassOrInterfaceDeclaration(TokenRange tokenRange, EnumSet<Modifier> modifiers, NodeList<AnnotationExpr> annotations, boolean isInterface, SimpleName name, NodeList<TypeParameter> typeParameters, NodeList<ClassOrInterfaceType> extendedTypes, NodeList<ClassOrInterfaceType> implementedTypes, NodeList<BodyDeclaration<?>> members) {
92 setImplementedTypes(implementedTypes);
115 return implementedTypes;
143 public ClassOrInterfaceDeclaration setImplementedTypes(final NodeList<ClassOrInterfaceType> implementedTypes) {
144 assertNotNull(implementedTypes);
145 if (implementedTypes == this.implementedTypes) {
    [all...]
  /external/dagger2/compiler/src/main/java/dagger/internal/codegen/writer/
TypeWriter.java 31 final List<TypeName> implementedTypes;
38 this.implementedTypes = Lists.newArrayList();
82 implementedTypes.add(typeReference);
86 implementedTypes.add(ClassName.fromTypeElement(typeElement));
InterfaceWriter.java 55 Iterator<TypeName> implementedTypesIterator = implementedTypes.iterator();
82 .append(implementedTypes)
ClassWriter.java 104 Writables.join(", ", implementedTypes, " implements ", "", appendable, context);
146 .append(implementedTypes)
EnumWriter.java 67 Iterator<TypeName> implementedTypesIterator = implementedTypes.iterator();
131 .append(implementedTypes)
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/visitor/
CloneVisitor.java 96 NodeList<ClassOrInterfaceType> implementedTypes = cloneList(n.getImplementedTypes(), arg);
102 ClassOrInterfaceDeclaration r = new ClassOrInterfaceDeclaration(n.getTokenRange().orElse(null), n.getModifiers(), annotations, n.isInterface(), name, typeParameters, extendedTypes, implementedTypes, members);
111 NodeList<ClassOrInterfaceType> implementedTypes = cloneList(n.getImplementedTypes(), arg);
116 EnumDeclaration r = new EnumDeclaration(n.getTokenRange().orElse(null), n.getModifiers(), annotations, name, implementedTypes, entries, members);
    [all...]
ModifierVisitor.java 250 NodeList<ClassOrInterfaceType> implementedTypes = modifyList(n.getImplementedTypes(), arg);
259 n.setImplementedTypes(implementedTypes);
416 NodeList<ClassOrInterfaceType> implementedTypes = modifyList(n.getImplementedTypes(), arg);
424 n.setImplementedTypes(implementedTypes);
    [all...]
  /external/annotation-tools/asmx/
janino.jar 
  /prebuilts/tools/common/m2/repository/com/google/dagger/dagger-compiler/2.0/
dagger-compiler-2.0.jar 
  /external/annotation-tools/asmx/test/lib/
janino-2.3.4.jar 

Completed in 294 milliseconds