1 /* $Id: Consts.java,v 1.1.1.1 2003/02/11 16:19:40 bures Exp $ */2 package SOFA.SOFAnode.Made.CDL;3 4 /** Class for constants */5 public class Consts {6 public static int repeatCount;7 public static long repeatDelay; // in miliseconds8 9 static {10 repeatCount = 5;11 repeatDelay = 100L;12 } 13 }14