Example usage for org.eclipse.jdt.internal.core PackageDeclaration PackageDeclaration

List of usage examples for org.eclipse.jdt.internal.core PackageDeclaration PackageDeclaration

Introduction

In this page you can find the example usage for org.eclipse.jdt.internal.core PackageDeclaration PackageDeclaration.

Prototype

protected PackageDeclaration(CompilationUnit parent, String name) 

Source Link

Usage

From source file:org.eclipse.jdt.internal.core.CompilationUnit.java

License:Open Source License

/**
 * @see ICompilationUnit#getPackageDeclaration(String)
 */// w  ww . j av  a2 s.com
public IPackageDeclaration getPackageDeclaration(String pkg) {
    return new PackageDeclaration(this, pkg);
}