licensing update to APSL 2.0
[org.ibex.js.git] / src / org / ibex / js / Task.java
1 // Copyright 2000-2005 the Contributors, as shown in the revision logs.
2 // Licensed under the Apache Public Source License 2.0 ("the License").
3 // You may not use this file except in compliance with the License.
4
5 package org.ibex.js;
6 import org.ibex.util.*;
7 import java.io.IOException;
8
9 public interface Task {
10     public abstract void perform() throws IOException, JSExn;
11 }