/** * UpdateMsg.java 1.00 11.13.97 Michael Shoffner * * Copyright (c) 1997 Michael Shoffner. All Rights Reserved. * * Permission to use, copy, modify, and distribute this software * for non-commercial purposes and without fee is hereby granted * provided that this copyright notice appears in all copies. * * shoffner@prominence.com */ package shoffner.step.jan; public class UpdateMsg implements org.merlin.step.dec.socket.DListMsg { int updateCount; public UpdateMsg (int updateCount) { this.updateCount = updateCount; } public int getUpdateCount () { return updateCount; } }