Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 645f4e668fcb053dd3b333d2b108b8f2e672453f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/*******************************************************************************
 * Copyright (c) 2008 Borland Software Corporation and others.
 * 
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v2.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v20.html
 * 
 * Contributors:
 *     Borland Software Corporation - initial API and implementation
 *******************************************************************************/
package org.eclipse.m2m.internal.qvt.oml.ast.env;

import java.util.List;

import org.eclipse.emf.ecore.EObject;

/**
 * This interface provides read-only access to the contents of a model extent.
 */
public interface ModelExtentContents {
	/**
	 * Gets the elements which were initially contained at the creation time of this extent.
	 */
	List<EObject> getInitialElements();
	/**
	 * Gets all the root objects of the current extent contents.
	 * Note: The result may include the original objects if not removed or moved to container.
	 */
	List<EObject> getAllRootElements();
}

Back to the top