blob: 773b6828a4cc9e04cc59ad2b0e55c45f5065a39f [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2011-2012 EclipseSource Muenchen GmbH and others.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Eike Stepper - initial API and implementation
* Jonas Helming - JavaDoc
*******************************************************************************/
package org.eclipse.emf.ecp.spi.core.util;
import org.eclipse.emf.ecp.core.util.ECPElement;
/**
* @author Eike Stepper
* @param <ELEMENT>
* @since 1.1
*/
public interface InternalDescriptor<ELEMENT extends ECPElement> extends InternalRegistryElement {
boolean isResolved();
ELEMENT getResolvedElement();
}