blob: 727a378ec8e7b8bc79677c36a44e621b812ce25d [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.model.declarations;
import com.github.javaparser.symbolsolver.model.typesystem.ReferenceType;
import java.util.List;
/**
* Declaration of a Class (not an interface or an enum).
*
* @author Federico Tomassetti
*/
public interface ClassDeclaration extends ReferenceTypeDeclaration, TypeParametrizable, HasAccessLevel {
/**
* This method should always return true.
*/
@Override
default boolean isClass() {
return true;
}
/**
* This is a ReferenceTypeUsage because it could contain type typeParametersValues.
* For example: class A extends B<Integer, String>.
* <p>
* Note that only the Object class should not have a superclass and therefore
* return null.
*/
ReferenceType getSuperClass();
/**
* Return all the interfaces implemented directly by this class.
* It does not include the interfaces implemented by superclasses or extended
* by the interfaces implemented.
*/
List<ReferenceType> getInterfaces();
/**
* Get all superclasses, with all the type typeParametersValues expressed as functions of the type
* typeParametersValues of this declaration.
*/
List<ReferenceType> getAllSuperClasses();
/**
* Return all the interfaces implemented by this class, either directly or indirectly, including the interfaces
* extended by interfaces it implements.
* <p>
* Get all interfaces, with all the type typeParametersValues expressed as functions of the type
* typeParametersValues of this declaration.
*/
List<ReferenceType> getAllInterfaces();
///
/// Constructors
///
/**
* List of constructors available for the class.
* This list should also include the default constructor.
*/
List<ConstructorDeclaration> getConstructors();
}