blob: 7b72fe8be50ae8be7be073cf22d6a078ed807b50 [file] [log] [blame]
/*
* Created on Jan 5, 2004
*
* To change the template for this generated file go to
* Window - Preferences - Java - Code Generation - Code and Comments
*/
package org.eclipse.wtp.j2ee.headless.tests.web.verifiers;
import org.eclipse.jst.j2ee.internal.J2EEVersionConstants;
import org.eclipse.wst.common.frameworks.datamodel.IDataModel;
import org.eclipse.wtp.j2ee.headless.tests.j2ee.verifiers.ModuleExportDataModelVerifier;
/**
* @author Administrator
*
* To change the template for this generated type comment go to
* Window - Preferences - Java - Code Generation - Code and Comments
*/
public class WebExportDataModelVerifier extends ModuleExportDataModelVerifier {
@Override
public void verify(IDataModel model) throws Exception {
super.verify(model);
}
@Override
protected int getExportType() {
return J2EEVersionConstants.WEB_TYPE;
}
}