blob: ab26c4b75bb06ae231a67710883fd941ff16100b [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2016 IBM Corporation and others.
* 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:
* IBM Corporation - initial API and implementation
*
*******************************************************************************/
package org.eclipse.jdt.internal.compiler.parser;
import org.eclipse.jdt.internal.compiler.ast.OpensStatement;
public class RecoveredOpensStatement extends RecoveredPackageVisibilityStatement {
public RecoveredOpensStatement(OpensStatement opensStatement, RecoveredElement parent, int bracketBalance) {
super(opensStatement, parent, bracketBalance);
}
@Override
public String toString(int tab) {
return tabString(tab) + "Recovered opens stmt: " + super.toString(); //$NON-NLS-1$
}
}