/******************************************************************************* * Copyright (c) 2010 Eteration A.S. 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: * IBM Corporation - initial API and implementation * - This code is based on WTP SDK frameworks and Tomcat Server Adapters * org.eclipse.jst.server.core * org.eclipse.jst.server.ui * * Naci Dai and Murat Yener, Eteration A.S. *******************************************************************************/ package org.eclipse.libra.framework.core.publish; import java.util.ArrayList; import java.util.List; import org.eclipse.wst.server.core.IServer; import org.eclipse.wst.server.core.model.PublishOperation; import org.eclipse.wst.server.core.model.PublishTaskDelegate; public class PublishTask extends PublishTaskDelegate { @Override public PublishOperation[] getTasks(IServer server, int kind, List modules, List kindList) { if (modules == null) return null; List<PublishOperation> tasks = new ArrayList<PublishOperation>(); return tasks.toArray(new PublishOperation[tasks.size()]); } }