Examples of WebJ2EEDeploymentDescriptor


Examples of org.apache.geronimo.st.core.descriptor.WebJ2EEDeploymentDescriptor

    public static AbstractDeploymentDescriptor getDeploymentDescriptor(IProject project) {
        IModelProvider mp = ModelProviderManager.getModelProvider(project);
        Object obj = mp.getModelObject();
        if (obj instanceof org.eclipse.jst.j2ee.webapplication.WebApp) {
            return (new WebJ2EEDeploymentDescriptor((org.eclipse.jst.j2ee.webapplication.WebApp) obj));
        }
        else if (obj instanceof org.eclipse.jst.javaee.web.WebApp) {
            return (new WebJavaEEDeploymentDescriptor((org.eclipse.jst.javaee.web.WebApp) obj));
        }
        else if (obj instanceof org.eclipse.jst.j2ee.application.Application) {
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.