blob: a3d2855253b2b4dc41a426565d65d2751f73188e [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
* http://www.eclipse.org/legal/epl-v10.html
*
* 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 abstract class AbstractTask implements ITask {
private String name;
private boolean isDefault;
private IFile buildFile;
private Location location;
public AbstractTask(String name, IFile buildFile, boolean isDefault, Location location) {
this.name = name;
this.buildFile = buildFile;
this.isDefault = isDefault;
this.location = location;
}
@Override
public String getName() {
return name;
}
@Override
public boolean isDefault() {
return isDefault;
}
@Override
public IFile getBuildFile() {
return buildFile;
}
@Override
public Location getLocation() {
return location;
}
}