Skip to main content
summaryrefslogtreecommitdiffstats
blob: 4c41dd201051898bf66c37ef14bb97694e4b2064 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/*******************************************************************************
 * Copyright (c) 2011 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.ats.ui.api.view;

import org.eclipse.osee.ats.ui.api.data.AtsSearchParameters;
import org.eclipse.osee.display.api.components.SearchHeaderComponent;
import org.eclipse.osee.display.api.data.ViewId;

/**
 * @author John R. Misinco
 */
public interface AtsSearchHeaderComponent extends SearchHeaderComponent {

   void addProgram(ViewId program);

   void clearBuilds();

   void addBuild(ViewId build);

   void setSearchCriteria(AtsSearchParameters params);

}

Back to the top