blob: a15e5c3f8a6ba1e50b8e8370b0c69ba2a90ab86d [file] [log] [blame]
/*********************************************************************
* Copyright (c) 2021 Boeing
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
* which is available at https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Boeing - initial API and implementation
**********************************************************************/
package org.eclipse.osee.ats.ide.util.widgets;
import org.eclipse.osee.ats.api.data.AtsRelationTypes;
import org.eclipse.osee.framework.core.data.RelationTypeSide;
/**
* Select and persist with clear button
*
* @author Donald G. Dunne
*/
public class XTargetedVersionWithPersistWidget extends XHyperlabelVersionSelectionWithPersist {
public static final String WIDGET_ID = XTargetedVersionWithPersistWidget.class.getSimpleName();
public static RelationTypeSide TARGETED_VERSION_RELATION = AtsRelationTypes.TeamWorkflowTargetedForVersion_Version;
public XTargetedVersionWithPersistWidget() {
this("Targeted Version");
}
public XTargetedVersionWithPersistWidget(String label) {
super(label, TARGETED_VERSION_RELATION);
}
}