Package com.alexecollins.vbox.ant

Source Code of com.alexecollins.vbox.ant.SuspendTask

package com.alexecollins.vbox.ant;

import com.alexecollins.vbox.core.VBox;
import com.alexecollins.vbox.core.task.Suspend;
import org.apache.tools.ant.BuildException;

/**
* @author alexec (alex.e.c@gmail.com)
*/
public class SuspendTask extends AbstractTask {

  @Override
  public void execute() throws BuildException {
    if (dir == null) {
      throw new BuildException("dir is null");
    }
    try {
      new Suspend(new VBox(context(), dir.toURI())).call();
    } catch (Exception e) {
      throw new BuildException(e);
    }
  }
}
TOP

Related Classes of com.alexecollins.vbox.ant.SuspendTask

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.