/* Copyright 1996 Matthew Freedman and University of Washington mattf@cac.washington.edu This program may be freely used, modified, or redistributed for any non-commercial purpose as long as credit is given. This file contains the NinaController interface. */ import java.awt.*; import java.util.*; /* A trivial interface, which defines a stub for the do_update() routine that Nina calls in its controlling object to get the NinaParams updated. */ public interface NinaController { public void do_update(); }