blob: 65525cf94c9414d24c4db63ad65370e621f13df8 [file] [log] [blame]
/***************************************************************************************************
* Copyright (c) 2003, 2004 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.wst.web.internal.deployables;
import org.eclipse.core.resources.IProject;
import org.eclipse.wst.server.core.IModule;
import org.eclipse.wst.server.core.model.ModuleDelegate;
import org.eclipse.wst.server.core.util.ProjectModuleFactoryDelegate;
import org.eclipse.wst.web.internal.ISimpleWebNatureConstants;
import org.eclipse.wst.web.internal.operation.IBaseWebNature;
public class StaticWebDeployableFactory extends ProjectModuleFactoryDelegate {
private static final String ID = "org.eclipse.jst.j2ee.internal.internal.internal.web.deployables.static"; //$NON-NLS-1$
/*
* @see DeployableProjectFactoryDelegate#getFactoryID()
*/
public String getFactoryId() {
return ID;
}
/**
* Returns true if the project represents a deployable project of this type.
*
* @param project
* org.eclipse.core.resources.IProject
* @return boolean
*/
protected boolean isValidModule(IProject project) {
try {
return project.hasNature(ISimpleWebNatureConstants.STATIC_NATURE_ID);
} catch (Exception e) {
}
return false;
}
/**
* Creates the deployable project for the given project.
*
* @param project
* org.eclipse.core.resources.IProject
* @return com.ibm.etools.server.core.model.IDeployableProject
*/
protected IModule createModule(IProject project) {
try {
IModule deployable = null;
StaticWebDeployable projectModule;
IBaseWebNature nature = (IBaseWebNature) project.getNature(ISimpleWebNatureConstants.STATIC_NATURE_ID);
deployable = nature.getModule();
if (deployable == null) {
projectModule = new StaticWebDeployable(nature.getProject());
deployable = projectModule.getModule();
}
return deployable;
} catch (Exception e) {
}
return null;
}
/* (non-Javadoc)
* @see org.eclipse.wst.server.core.model.ModuleFactoryDelegate#getModuleDelegate(org.eclipse.wst.server.core.IModule)
*/
public ModuleDelegate getModuleDelegate(IModule module) {
// TODO Auto-generated method stub
return null;
}
/* (non-Javadoc)
* @see org.eclipse.wst.server.core.model.ModuleFactoryDelegate#getModules()
*/
public IModule[] getModules() {
// TODO Auto-generated method stub
return null;
}
}