Free cookie consent management tool by TermsFeed Policy Generator

Changeset 4961


Ignore:
Timestamp:
11/27/10 10:14:29 (13 years ago)
Author:
mholper
Message:

added Exception to Interface

Location:
branches/OKBJavaConnector/HLOKBWebClient/src/main/java/at/hl/okb
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/OKBJavaConnector/HLOKBWebClient/src/main/java/at/hl/okb/IECJConnector.java

    r4960 r4961  
    1010 */
    1111public interface IECJConnector {
    12   public void initialize(String algorithm, String platform, Map<String, String> algoParams, Map<String,String>problemParams, Object paramFile);
     12  public void initialize(String algorithm, String platform, Map<String, String> algoParams, Map<String,String>problemParams, Object paramFile) throws Exception;
    1313
    14   public void result(List<Object> resultList);
     14  public void result(List<Object> resultList) throws Exception;
    1515}
  • branches/OKBJavaConnector/HLOKBWebClient/src/main/java/at/hl/okb/impl/ECJ19ConnectorImpl.java

    r4960 r4961  
    2727  public void initialize(String algorithm, String platform,
    2828      Map<String, String> algoParams, Map<String, String> problemParams,
    29       Object paramFile) {
     29      Object paramFile) throws Exception {
    3030    // TODO Auto-generated method stub
    3131   
     
    3535   * @see at.hl.okb.IECJConnector#result(java.util.List)
    3636   */
    37   public void result(List<Object> resultList) {
     37  public void result(List<Object> resultList) throws Exception {
    3838    // TODO Auto-generated method stub
    3939
Note: See TracChangeset for help on using the changeset viewer.