blob: 1c34e4c1145541019348a45e10c5efe762a004fc [file] [log] [blame]
/*
* Copyright 2016 Federico Tomassetti
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.github.javaparser.symbolsolver.javaparsermodel.declarations;
import com.github.javaparser.symbolsolver.model.declarations.*;
import com.github.javaparser.symbolsolver.model.resolution.TypeSolver;
import java.util.List;
import java.util.stream.Collectors;
/**
* @author Federico Tomassetti
*/
public class JavaParserConstructorDeclaration implements ConstructorDeclaration {
private ClassDeclaration classDeclaration;
private com.github.javaparser.ast.body.ConstructorDeclaration wrappedNode;
private TypeSolver typeSolver;
public JavaParserConstructorDeclaration(ClassDeclaration classDeclaration, com.github.javaparser.ast.body.ConstructorDeclaration wrappedNode,
TypeSolver typeSolver) {
this.classDeclaration = classDeclaration;
this.wrappedNode = wrappedNode;
this.typeSolver = typeSolver;
}
@Override
public ClassDeclaration declaringType() {
return classDeclaration;
}
@Override
public int getNumberOfParams() {
return this.wrappedNode.getParameters().size();
}
@Override
public ParameterDeclaration getParam(int i) {
if (i < 0 || i >= getNumberOfParams()) {
throw new IllegalArgumentException(String.format("No param with index %d. Number of params: %d", i, getNumberOfParams()));
}
return new JavaParserParameterDeclaration(wrappedNode.getParameters().get(i), typeSolver);
}
@Override
public String getName() {
return this.classDeclaration.getName();
}
/**
* Returns the JavaParser node associated with this JavaParserConstructorDeclaration.
*
* @return A visitable JavaParser node wrapped by this object.
*/
public com.github.javaparser.ast.body.ConstructorDeclaration getWrappedNode() {
return wrappedNode;
}
@Override
public AccessLevel accessLevel() {
return Helper.toAccessLevel(wrappedNode.getModifiers());
}
@Override
public List<TypeParameterDeclaration> getTypeParameters() {
return this.wrappedNode.getTypeParameters().stream().map((astTp) -> new JavaParserTypeParameter(astTp, typeSolver)).collect(Collectors.toList());
}
}