X-Git-Url: http://git.phpeclipse.com diff --git a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/core/IImportContainer.java b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/core/IImportContainer.java index f7e3095..956af01 100644 --- a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/core/IImportContainer.java +++ b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/core/IImportContainer.java @@ -11,21 +11,25 @@ package net.sourceforge.phpdt.core; /** - * Represents an import container is a child of a Java compilation unit that contains - * all (and only) the import declarations. If a compilation unit has no import - * declarations, no import container will be present. + * Represents an import container is a child of a Java compilation unit that + * contains all (and only) the import declarations. If a compilation unit has no + * import declarations, no import container will be present. *

* This interface is not intended to be implemented by clients. *

*/ -public interface IImportContainer extends IJavaElement, IParent, ISourceReference { -/** - * Returns the first import declaration in this import container with the given name. - * This is a handle-only method. The import declaration may or may not exist. - * - * @param name the given name - * - * @return the first import declaration in this import container with the given name - */ -IImportDeclaration getImport(String name); +public interface IImportContainer extends IJavaElement, IParent, + ISourceReference { + /** + * Returns the first import declaration in this import container with the + * given name. This is a handle-only method. The import declaration may or + * may not exist. + * + * @param name + * the given name + * + * @return the first import declaration in this import container with the + * given name + */ + IImportDeclaration getImport(String name); }