| java.lang.Object de.uka.ilkd.key.java.abstraction.Package
Package | public class Package implements ClassTypeContainer(Code) | | A program model element representing packages.
author: AL author: RN |
Constructor Summary | |
public | Package(String name) Creates a new package with the given name, organized by
the given program model info. |
Package | public Package(String name)(Code) | | Creates a new package with the given name, organized by
the given program model info.
Parameters: name - the name of the package. |
getContainer | public ClassTypeContainer getContainer()(Code) | | Returns the enclosing package or class type, or method.
null . |
getFullName | public String getFullName()(Code) | | Returns the name of this package.
the full name of this program model element. |
getName | public String getName()(Code) | | Returns the name of this package.
the name of this package. |
getPackage | public Package getPackage()(Code) | | Returns the enclosing package.
null . |
|
|