blob: 2a1a802286b27345c85430a95856886742d5b072 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2016 Red Hat, Inc.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* Contributors:
* Red Hat Inc. - initial API and implementation and/or initial documentation
*******************************************************************************/
package org.eclipse.wst.jsdt.js.common.build.system;
import org.eclipse.core.resources.IFile;
/**
* @author "Ilya Buziuk (ibuziuk)"
*/
public interface ITask {
String getName();
boolean isDefault();
IFile getBuildFile();
Location getLocation();
}