Home | History | Annotate | Download | only in body

Lines Matching refs:type

25 import com.github.javaparser.ast.type.Type;
35 private Type type;
42 public Parameter(Type type, VariableDeclaratorId id) {
44 setType(type);
47 public Parameter(int modifiers, Type type, VariableDeclaratorId id) {
49 setType(type);
52 public Parameter(int beginLine, int beginColumn, int endLine, int endColumn, int modifiers, List<AnnotationExpr> annotations, Type type, boolean isVarArgs, VariableDeclaratorId id) {
54 setType(type);
68 public Type getType() {
69 return type;
76 public void setType(Type type) {
77 this.type = type;
78 setAsParentNodeOf(this.type);