blob: 34250c34c9f56e93ead5dc718ce5da40e9c0453f [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005, 2007 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.jee.model.internal;
import org.eclipse.core.resources.IProject;
import org.eclipse.core.runtime.IPath;
import org.eclipse.core.runtime.Path;
import org.eclipse.emf.ecore.EObject;
import org.eclipse.emf.ecore.xmi.impl.XMLResourceImpl;
import org.eclipse.jst.j2ee.internal.J2EEConstants;
import org.eclipse.jst.j2ee.internal.J2EEVersionConstants;
import org.eclipse.jst.javaee.applicationclient.ApplicationClient;
import org.eclipse.jst.javaee.applicationclient.ApplicationClientDeploymentDescriptor;
import org.eclipse.jst.javaee.applicationclient.ApplicationclientFactory;
import org.eclipse.jst.javaee.applicationclient.IApplicationClientResource;
import org.eclipse.jst.javaee.core.DisplayName;
import org.eclipse.jst.javaee.core.JavaeeFactory;
public class AppClient5ModelProvider extends JEE5ModelProvider {
private static final String APPCLIENT5_CONTENT_TYPE = "org.eclipse.jst.jee.ee5appclientDD"; //$NON-NLS-1$
public AppClient5ModelProvider(IProject proj) {
super();
this.proj = proj;
setDefaultResourcePath(new Path(J2EEConstants.APP_CLIENT_DD_URI));
}
/* (non-Javadoc)
* @see org.eclipse.jst.j2ee.model.IModelProvider#getModelObject(org.eclipse.core.runtime.IPath)
*/
public Object getModelObject(IPath modelPath) {
IApplicationClientResource appRes = (IApplicationClientResource)getModelResource(modelPath);
if (appRes != null && appRes.getRootObject() != null)
return appRes.getApplicationClient();
return null;
}
protected String getContentTypeDescriber() {
return APPCLIENT5_CONTENT_TYPE;
}
public void populateRoot(XMLResourceImpl res, String name) {
ApplicationClientDeploymentDescriptor dd = ApplicationclientFactory.eINSTANCE.createApplicationClientDeploymentDescriptor();
dd.getXMLNSPrefixMap().put("", J2EEConstants.JAVAEE_NS_URL); //$NON-NLS-1$
dd.getXMLNSPrefixMap().put("xsi", J2EEConstants.XSI_NS_URL); //$NON-NLS-1$
dd.getXSISchemaLocation().put(J2EEConstants.JAVAEE_NS_URL, J2EEConstants.APP_CLIENT_SCHEMA_LOC_5);
ApplicationClient client = ApplicationclientFactory.eINSTANCE.createApplicationClient();
DisplayName dn = JavaeeFactory.eINSTANCE.createDisplayName();
dn.setValue(name);
client.getDisplayNames().add(dn);
dd.setApplicationClient(client);
client.setVersion(J2EEVersionConstants.VERSION_5_TEXT);
res.getContents().add((EObject) dd);
}
}