Skip to main content
summaryrefslogtreecommitdiffstats
blob: 12939afd9bccc850f08cbe6b2685600d00bb2c80 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package org.eclipse.jst.javaee.application;

import org.eclipse.emf.ecore.EObject;

public interface IApplicationResource {

	/**
	 * Return the first element in the EList.
	 */
	public abstract EObject getRootObject();

	/**
	 * Return the ear
	 */
	public abstract Application getApplication();

}

Back to the top