Skip to main content
summaryrefslogtreecommitdiffstats
blob: ceed1b552bfbeffcf3ab4d7b17a6b69d40dffccc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*
 * Created on Sep 30, 2011
 *
 * PLACE_YOUR_DISTRIBUTION_STATEMENT_RIGHT_HERE
 */
package org.eclipse.osee.display.api.components;

import org.eclipse.osee.display.api.data.WebArtifact;
import org.eclipse.osee.display.api.data.SearchResultMatch;

public interface SearchResultComponent {

   void setArtifact(WebArtifact artifact);

   void addSearchResultMatch(SearchResultMatch match);
}

Back to the top