blob: 547ba48eccb4110d1466e2b230d01077a629764c [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2007 IBM Corporation and others.
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identifier: EPL-2.0
*
*******************************************************************************/
package org.eclipse.dltk.compiler.env;
public interface ISourceType extends IGenericType {
/**
* Answer the source end position of the type's declaration.
*/
int getDeclarationSourceEnd();
/**
* Answer the source start position of the type's declaration.
*/
int getDeclarationSourceStart();
/**
* Answer the enclosing type or null if the receiver is a top level type.
*/
ISourceType getEnclosingType();
/**
* Answer the receiver's fields.
*
* NOTE: Multiple fields with the same name can exist in the result.
*/
ISourceField[] getFields();
/**
* Answer the receiver's member types.
*/
ISourceType[] getMemberTypes();
/**
* Answer the receiver's methods.
*
* NOTE: Multiple methods with the same name & parameter types can exist in
* the result.
*/
ISourceMethod[] getMethods();
/**
* Answer the simple source name of the receiver.
*/
char[] getName();
/**
* Answer the source end position of the type's name.
*/
int getNameSourceEnd();
/**
* Answer the source start position of the type's name.
*/
int getNameSourceStart();
/**
* Answer the unresolved name of the receiver's superclass or null if it
* does not have one.
*
* The name is a simple name or a qualified, dot separated name. For
* example, Hashtable or java.util.Hashtable.
*/
char[] getSuperclassName();
/**
* Answer the array of bound names of the receiver's type parameters.
*/
char[][][] getTypeParameterBounds();
/**
* Answer the names of the receiver's type parameters.
*/
char[][] getTypeParameterNames();
}