Free cookie consent management tool by TermsFeed Policy Generator

source: branches/OKBJavaConnector/HLOKBWebClient/src/main/java/at/hl/okb/IECJConnector.java @ 4961

Last change on this file since 4961 was 4961, checked in by mholper, 14 years ago

added Exception to Interface

File size: 401 bytes
Line 
1package at.hl.okb;
2
3import java.util.List;
4import java.util.Map;
5
6/**
7 * Interface for ECJ Connector
8 * @author HolperM
9 *
10 */
11public interface IECJConnector {
12  public void initialize(String algorithm, String platform, Map<String, String> algoParams, Map<String,String>problemParams, Object paramFile) throws Exception;
13
14  public void result(List<Object> resultList) throws Exception;
15}
Note: See TracBrowser for help on using the repository browser.