01: // Copyright (C) 2003,2004,2005 by Object Mentor, Inc. All rights reserved.
02: // Released under the terms of the GNU General Public License version 2 or later.
03: package fit;
04:
05: public class NullFixtureListener implements FixtureListener {
06: public void tableFinished(Parse table) {
07: }
08:
09: public void tablesFinished(Counts count) {
10: }
11: }
|