blob: 4dcf958a5bda53fd0dc8648e3baa8cb09d4e620f [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - Initial API and implementation
*******************************************************************************/
package org.eclipse.jst.server.core.tests.impl;
import org.eclipse.core.runtime.IPath;
import org.eclipse.jst.server.core.IEnterpriseApplication;
import org.eclipse.jst.server.core.IJ2EEModule;
import org.eclipse.wst.server.core.IModule;
public class TestEnterpriseApplication implements IEnterpriseApplication {
public String getJ2EESpecificationVersion() {
return null;
}
public IPath getLocation() {
return null;
}
public IModule[] getModules() {
return null;
}
public String getURI(IJ2EEModule module) {
return null;
}
public boolean containsLooseModules() {
return false;
}
}