blob: 1f8c44d5438831a375b137ad05a22e00e6c930d4 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2003, 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.j2ee.internal.archive.operations;
import org.eclipse.jst.j2ee.applicationclient.componentcore.util.AppClientArtifactEdit;
import org.eclipse.wst.common.componentcore.ArtifactEdit;
import org.eclipse.wst.common.componentcore.resources.IVirtualComponent;
public class AppClientComponentLoadStrategyImpl extends ComponentLoadStrategyImpl {
public AppClientComponentLoadStrategyImpl(IVirtualComponent vComponent) {
super(vComponent);
}
@Override
protected synchronized ArtifactEdit getArtifactEditForRead() {
if(artifactEdit == null){
artifactEdit = AppClientArtifactEdit.getAppClientArtifactEditForRead(vComponent);
}
return artifactEdit;
}
}