/******************************************************************************* * Copyright (c) 2000, 2003 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Common Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/cpl-v10.html * * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ package net.sourceforge.phpdt.core.jdom; /** * Represents a package declaration. The corresponding syntactic unit is * PackageDeclaration (JLS2 7.4). A Package has no children, and its parent is a * compilation unit. *

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

*/ public interface IDOMPackage extends IDOMNode { /** * The IDOMPackage refinement of this IDOMNode * method returns the name of this package declaration, or null * if it has none. The syntax for a package name corresponds to PackageName * as defined by PackageDeclaration (JLS2 7.4). */ public String getName(); /** * The IDOMPackage refinement of this IDOMNode * method sets the name of this package declaration. The syntax for a * package name corresponds to PackageName as defined by PackageDeclaration * (JLS2 7.4). A null name indicates an empty package * declaration; that is, getContents returns the empty * string. */ public void setName(String name); }