X-Git-Url: http://git.phpeclipse.com diff --git a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/core/jdom/IDOMImport.java b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/core/jdom/IDOMImport.java index 47a6ffa..67c64c3 100644 --- a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/core/jdom/IDOMImport.java +++ b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/core/jdom/IDOMImport.java @@ -11,34 +11,37 @@ package net.sourceforge.phpdt.core.jdom; /** - * Represents an import declaration. - * The corresponding syntactic unit is ImportDeclaration (JLS2 7.5). - * An import has no children and its parent is a compilation unit. + * Represents an import declaration. The corresponding syntactic unit is + * ImportDeclaration (JLS2 7.5). An import has no children and its parent is a + * compilation unit. *

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

*/ public interface IDOMImport extends IDOMNode { -/** - * The IDOMImport refinement of this IDOMNode - * method returns the name of this import. The syntax for an import name - * corresponds to a fully qualified type name, or to an on-demand package name - * as defined by ImportDeclaration (JLS2 7.5). - */ -public String getName(); -/** - * Returns whether this import declaration ends with ".*". - * - * @return true if this in an on-demand import - */ -public boolean isOnDemand(); -/** - * The IDOMImport refinement of this IDOMNode - * method sets the name of this import. The syntax for an import name - * corresponds to a fully qualified type name, or to an on-demand package name - * as defined by ImportDeclaration (JLS2 7.5). - * - * @exception IllegalArgumentException if null is specified - */ -public void setName(String name); + /** + * The IDOMImport refinement of this IDOMNode + * method returns the name of this import. The syntax for an import name + * corresponds to a fully qualified type name, or to an on-demand package + * name as defined by ImportDeclaration (JLS2 7.5). + */ + public String getName(); + + /** + * Returns whether this import declaration ends with ".*". + * + * @return true if this in an on-demand import + */ + public boolean isOnDemand(); + + /** + * The IDOMImport refinement of this IDOMNode + * method sets the name of this import. The syntax for an import name + * corresponds to a fully qualified type name, or to an on-demand package + * name as defined by ImportDeclaration (JLS2 7.5). + * + * @exception IllegalArgumentException + * if null is specified + */ + public void setName(String name); }