Home | History | Annotate | Download | only in body

Lines Matching defs:decl

37         AnnotationMemberDeclaration decl = new AnnotationMemberDeclaration();
39 decl.setName(name);
41 assertTrue(decl == name.getParentNode().get());
46 AnnotationMemberDeclaration decl = new AnnotationMemberDeclaration();
48 decl.setName(name);
50 decl.removeDefaultValue();
52 assertFalse(decl.getDefaultValue().isPresent());
57 AnnotationMemberDeclaration decl = new AnnotationMemberDeclaration();
59 decl.setName(name);
61 decl.setDefaultValue(defaultValue);
63 decl.removeDefaultValue();