blob: ce067da5388edcd85af76aef7f2c4d525340227e [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;
import com.google.common.annotations.Beta;
/**
* @author Sven Efftinge
* @noimplement This interface is not intended to be implemented by clients.
*/
@Beta
public interface MutableNamedElement extends NamedElement, MutableElement {
/**
* @param simpleName the simple name of this element, must not be <code>null</code>
* @exception IllegalArgumentException if the <code>simpleName</code> is <code>null</code>
*/
void setSimpleName(String simpleName);
}