blob: 4c39ba28523c22325ead0dad9bfb28323f7ae76f [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2006 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.team.internal.ccvs.core.client;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.team.internal.ccvs.core.CVSException;
public class ModuleExpansionHandler extends ResponseHandler {
@Override
public String getResponseID() {
return "Module-expansion";//$NON-NLS-1$
}
@Override
public void handle(Session session, String expansion, IProgressMonitor monitor)
throws CVSException {
session.addModuleExpansion(expansion);
}
}