blob: 5ce2abca679b8e7cc6dff1f57bd0787c7cb48aec [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2015, 2017 1C-Soft LLC.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Vladimir Piskarev (1C) - initial API and implementation
*******************************************************************************/
package org.eclipse.handly.examples.javamodel;
/**
* Represents a package declaration in Java compilation unit.
*/
public interface IPackageDeclaration
extends IJavaSourceConstruct
{
@Override
default ICompilationUnit getParent()
{
return (ICompilationUnit)IJavaSourceConstruct.super.getParent();
}
}