blob: 824c65d3a919f754b3d5fc1883766bc6dde3c29e [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2016 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
* IBM Corporation - added J2SE 1.5 support
*******************************************************************************/
package org.eclipse.dltk.core;
/**
* Represents an import declaration in Java compilation unit.
*
* @noimplement This interface is not intended to be implemented by clients.
* @since 2.0
*/
public interface IImportDeclaration extends IModelElement, ISourceReference {
/**
* Returns the name that has been imported. For an on-demand import, this
* includes the trailing <code>".*"</code>. For example, for the statement
* <code>"import java.util.*"</code>, this returns
* <code>"java.util.*"</code>. For the statement
* <code>"import java.util.Hashtable"</code>, this returns
* <code>"java.util.Hashtable"</code>.
*
* @return the name that has been imported
*/
@Override
String getElementName();
String getVersion();
/**
* Alternate import name
*
* @since 5.2
*/
String getAlias();
/**
* Element type
*
* @see {IModelElement}
* @since 5.2
*/
int getType();
/**
* Import modifiers, if any
*
* @since 5.2
*/
int getFlags();
}