2.6.1 What's an Object?

An Object is an autonomous entity having state manipulable only by a set of methods
public interface BankAccount extends Remote {
   public void deposit(float amount) 
      throws RemoteException;

   public void withdraw(float amount) 
      throws RemoteException;

   public float balance() 
      throws RemoteException;
}

Ian Wakeman 2005-02-22