package net;

public class ComputeMe implements
    net.ComputableObject {
  public Object compute() {
    return "I have changed on the fly!";
  }
}