blob: 21da44580158fef7d75afc4620c752ba804ccf36 [file] [log] [blame]
/*=============================================================================#
# Copyright (c) 2008, 2019 Stephan Wahlbrink 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
# https://www.eclipse.org/legal/epl-2.0, or the Apache License, Version 2.0
# which is available at https://www.apache.org/licenses/LICENSE-2.0.
#
# SPDX-License-Identifier: EPL-2.0 OR Apache-2.0
#
# Contributors:
# Stephan Wahlbrink <sw@wahlbrink.eu> - initial API and implementation
#=============================================================================*/
package org.eclipse.statet.ltk.model.core.elements;
import org.eclipse.statet.jcommons.collections.ImList;
import org.eclipse.statet.ltk.ast.core.AstInfo;
import org.eclipse.statet.ltk.core.ISourceModelStamp;
/**
* Container for model information of an source unit
*/
public interface ISourceUnitModelInfo {
/**
* Returns the stamp of the model.
*
* @return the stamp
*/
ISourceModelStamp getStamp();
/**
* The AST used to create this info.
*
* @return the AST information
*/
AstInfo getAst();
/**
* The source unit as source structure model element.
*
* @return the element
*/
ISourceStructElement getSourceElement();
void addAttachment(Object data);
void removeAttachment(Object data);
ImList<Object> getAttachments();
}