package net;

import java.io.Serializable;

public interface ComputableObject
    extends Serializable {
  public Object compute();
}