List of usage examples for org.eclipse.jdt.internal.core PackageDeclaration PackageDeclaration
protected PackageDeclaration(CompilationUnit parent, String name)
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); }