Skip to main content
summaryrefslogtreecommitdiffstats
blob: a8b86b874f026858c6c8cbe443e32283d3a62e46 (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
31
32
33
/*******************************************************************************
 * 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.api.components;

import org.eclipse.osee.display.api.components.SearchHeaderComponent;
import org.eclipse.osee.display.api.data.WebId;

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

   void addProgram(WebId program);

   void clearBuilds();

   void addBuild(WebId build);

   void setSearchCriteria(WebId program, WebId build, boolean nameOnly, String searchPhrase);

   void setProgram(WebId program);

   void setBuild(WebId build);

}

Back to the top