1 package net.compute;
2
3
4 import java.io.Serializable;
5
6 /**
7 * Created by IntelliJ IDEA.
8 * User: dlyon
9 * Date: Nov 5, 2003
10 * Time: 2:07:36 PM
11 * To change this template use Options | File Templates.
12 */
13
14 public class Hello implements ComputableObject {
15
16 public Serializable compute(){
17 return null;
18 }
19 }
20