blob: a6befebc000c1b49858cc0d2bcd54db7b1e73386 [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.ui.model;
import org.eclipse.team.internal.ccvs.core.ICVSRemoteResource;
public abstract class RemoteResourceElement extends CVSModelElement {
/**
* Initial implementation: return the resource's name
*/
public String getLabel(Object o) {
if (!(o instanceof ICVSRemoteResource)) return null;
return ((ICVSRemoteResource)o).getName();
}
/**
* Return null.
*/
public Object getParent(Object o) {
if (!(o instanceof ICVSRemoteResource)) return null;
ICVSRemoteResource rr = (ICVSRemoteResource)o;
return rr.getParent();
}
}