blob: 3a89682bdd0d1755ede08d6a3d321f559caaa79b [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2013 itemis AG (http://www.itemis.eu) and others.
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identifier: EPL-2.0
*******************************************************************************/
package org.eclipse.xtend.lib.macro.declaration;
/**
*
* @author Sven Efftinge
* @noimplement This interface is not intended to be implemented by clients.
*/
public interface MutableInterfaceDeclaration extends MutableTypeParameterDeclarator, MutableTypeDeclaration, InterfaceDeclaration {
/**
* @param isStrictFloatingPoint
*/
void setStrictFloatingPoint(boolean isStrictFloatingPoint);
/**
* @param superinterfaces the interfaces this class implements, must be not <code>null</code>
* @exception IllegalArgumentException if <code>superinterfaces</code> is <code>null</code> or contains <code>null</code>
*/
public void setExtendedInterfaces(Iterable<? extends TypeReference> superinterfaces);
}