blob: c9459639bec5925afe191fbd9494f46e58e44d28 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2013 itemis AG (http://www.itemis.eu) and others.
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identifier: EPL-2.0
*******************************************************************************/
/*******************************************************************************
* Copyright (c) 2013 itemis AG (http://www.itemis.eu) and others.
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identifier: EPL-2.0
*******************************************************************************/
package org.eclipse.xtend.lib.macro.declaration;
import com.google.common.annotations.Beta;
/**
* @author Sven Efftinge
* @noimplement This interface is not intended to be implemented by clients.
*/
@Beta
public interface TypeDeclaration extends Type, MemberDeclaration {
/**
* @return the members directly declared and contained in the type declaration
*/
Iterable<? extends MemberDeclaration> getDeclaredMembers();
/**
* @return the methods directly declared and contained in the type declaration
*/
Iterable<? extends MethodDeclaration> getDeclaredMethods();
/**
* @return the fields directly declared and contained in the type declaration
*/
Iterable<? extends FieldDeclaration> getDeclaredFields();
/**
* @return the constructors directly declared and contained in the type declaration
*/
Iterable<? extends ConstructorDeclaration> getDeclaredConstructors();
/**
* @return the classes directly declared and contained in the type declaration
*/
Iterable<? extends ClassDeclaration> getDeclaredClasses();
/**
* @return the interfaces directly declared and contained in the type declaration
*/
Iterable<? extends InterfaceDeclaration> getDeclaredInterfaces();
/**
* @return the enumeration types directly declared and contained in this type declaration
* @since 2.8
*/
Iterable<? extends EnumerationTypeDeclaration> getDeclaredEnumerationTypes();
/**
* @return the annotation types directly declared and contained in this type declaration
* @since 2.8
*/
Iterable<? extends AnnotationTypeDeclaration> getDeclaredAnnotationTypes();
/**
* @return the types directly declared and contained in this type declaration
* @since 2.8
*/
Iterable<? extends TypeDeclaration> getDeclaredTypes();
/**
* @param name of the feature
* @return the declared field with the given name or <code>null</code> of no such field exists.
*/
FieldDeclaration findDeclaredField(String name);
/**
* @param name of the nested type
* @return the declared, nested type with the given name or <code>null</code> of no such type exists.
* @since 2.8
*/
TypeDeclaration findDeclaredType(String name);
/**
* @param name of the method
* @param parameterTypes - the types of the method
* @return the declared method with the given name and the specified parameter types or <code>null</code> if no such method exists.
*/
MethodDeclaration findDeclaredMethod(String name, TypeReference... parameterTypes);
/**
* @param parameterTypes - the parameter types of the constructor
* @return the declared constructor with the exact same parameter types or <code>null</code> if no such constructors exists.
*/
ConstructorDeclaration findDeclaredConstructor(TypeReference... parameterTypes);
}