blob: cda1b8d48442323a8b785576d6360bd7c857aaa2 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 2007 Boeing.
* 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:
* Boeing - initial API and implementation
*******************************************************************************/
package org.eclipse.osee.framework.ui.skynet.widgets;
import org.eclipse.jface.viewers.LabelProvider;
import org.eclipse.jface.viewers.ViewerSorter;
import org.eclipse.osee.framework.db.connection.exception.OseeCoreException;
import org.eclipse.osee.framework.logging.OseeLevel;
import org.eclipse.osee.framework.logging.OseeLog;
import org.eclipse.osee.framework.skynet.core.artifact.Branch;
import org.eclipse.osee.framework.skynet.core.artifact.BranchManager;
import org.eclipse.osee.framework.ui.skynet.SkynetGuiPlugin;
/**
* @author Jeff C. Phillips
*/
public abstract class XTypeListViewer extends XListViewer {
public XTypeListViewer(String name) {
super(name);
setLabelProvider(new LabelProvider());
setSorter(new ViewerSorter());
}
public Branch resolveBranch(String keyedBranchName) {
try {
if (keyedBranchName != null) {
return BranchManager.getKeyedBranch(keyedBranchName);
}
} catch (OseeCoreException ex) {
OseeLog.log(SkynetGuiPlugin.class, OseeLevel.SEVERE_POPUP, ex);
}
return BranchManager.getLastBranch();
}
}