blob: 626dccd9f2796b1d7cc67d6b991e56d134f71aa8 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007 WSO2 Inc. 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:
* WSO2 Inc. - initial API and implementation
* yyyymmdd bug Email and other contact information
* -------- -------- -----------------------------------------------------------
* 20070110 168762 sandakith@wso2.com - Lahiru Sandakith, Initial code to introduse the Axis2 runtime to the framework for 168762
* 20070426 183046 sandakith@wso2.com - Lahiru Sandakith
* 20070507 185686 sandakith@wso2.com - Lahiru Sandakith
*******************************************************************************/
package org.eclipse.jst.ws.axis2.creation.core.command;
//import org.apache.xerces.impl.validation.ValidationManager;
import org.eclipse.core.resources.IProject;
import org.eclipse.core.resources.IncrementalProjectBuilder;
import org.eclipse.core.resources.ResourcesPlugin;
import org.eclipse.core.runtime.IAdaptable;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.core.runtime.IStatus;
import org.eclipse.core.runtime.NullProgressMonitor;
import org.eclipse.core.runtime.OperationCanceledException;
import org.eclipse.core.runtime.Status;
import org.eclipse.core.runtime.jobs.Job;
import org.eclipse.wst.common.frameworks.datamodel.AbstractDataModelOperation;
public class Axis2BuildProjectCommand extends
AbstractDataModelOperation {
// private ValidationManager validationManager;
private IProject project;
private boolean forceBuild;
/**
* Default CTOR;
*/
public Axis2BuildProjectCommand(){
}
public Axis2BuildProjectCommand(IProject project){
this.project = project;
}
public Axis2BuildProjectCommand(IProject project, boolean forceBuild){
this.project = project;
this.forceBuild = forceBuild;
}
/**
* Execute the command
*/
public IStatus execute( IProgressMonitor monitor, IAdaptable adaptable )
{
try
{
if (forceBuild)
project.build(IncrementalProjectBuilder.INCREMENTAL_BUILD, new NullProgressMonitor());
// else if (validationManager == null)
// project.build(IncrementalProjectBuilder.INCREMENTAL_BUILD, new NullProgressMonitor());
// else if (validationManager.getWorkspaceAutoBuildPreference())
// project.build(IncrementalProjectBuilder.INCREMENTAL_BUILD, new NullProgressMonitor());
}
catch (Exception e){
}
try{
Job.getJobManager().join(ResourcesPlugin.FAMILY_AUTO_BUILD,
new NullProgressMonitor());
}
catch (InterruptedException ie){
// continue execution
}
catch (OperationCanceledException oce){
// continue execution
}
return Status.OK_STATUS;
}
/**
* @param forceBuild The forceBuild to set.
*/
public void setForceBuild(boolean forceBuild) {
this.forceBuild = forceBuild;
}
/**
* @param project The project to set.
*/
public void setProject(IProject project) {
this.project = project;
}
// /**
// * @param validationManager The validationManager to set.
// */
// public void setValidationManager(ValidationManager validationManager) {
// this.validationManager = validationManager;
// }
}