blob: fb7646092c4bc571c33dbdd97e94d50d4b1ee01a [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
*
* This is an implementation of an early-draft specification developed under the Java
* Community Process (JCP) and is made available for testing and evaluation purposes
* only. The code is not compatible with any specification of the JCP.
*
* Contributors:
* IBM Corporation - initial API and implementation
*
*******************************************************************************/
package org.eclipse.jdt.internal.compiler.parser;
import org.eclipse.jdt.internal.compiler.ast.ProvidesStatement;
import org.eclipse.jdt.internal.compiler.ast.SingleTypeReference;
import org.eclipse.jdt.internal.compiler.ast.TypeReference;
public class RecoveredProvidesStatement extends RecoveredModuleStatement {
SingleTypeReference impl;
public RecoveredProvidesStatement(ProvidesStatement providesStatement, RecoveredElement parent, int bracketBalance) {
super(providesStatement, parent, bracketBalance);
}
public RecoveredElement add(SingleTypeReference impl1, int bracketBalance1) {
this.impl = impl1;
return this;
}
public String toString(int tab) {
return tabString(tab) + "Recovered Provides: " + super.toString(); //$NON-NLS-1$
}
public ProvidesStatement updatedProvidesStatement(){
ProvidesStatement providesStatement = (ProvidesStatement) this.moduleStatement;
if (providesStatement.implementations == null) { // only for with - actual impl by normal parse
providesStatement.implementations = this.impl != null ? new TypeReference[] {this.impl} : new TypeReference[0]; // dummy for completion
}
return providesStatement;
}
public void updateParseTree(){
updatedProvidesStatement();
}
}