blob: df12a46df695bde2ceaffd8f40dde1103fe26be8 [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 java.util.Set;
import org.eclipse.wst.jsdt.core.dom.ASTVisitor;;
/**
* @author "Ilya Buziuk (ibuziuk)"
*/
public abstract class BuildSystemVisitor extends ASTVisitor {
public abstract Set<ITask> getTasks();
}