1 package de.webman.wminstaller.app;2 3 4 5 /**6 * Collects the available events in the system7 *8 * @author <a HREF="mailto:gregor@webman.de">Gregor Klinke</a>9 * @version $Revision: 1.1 $10 **/11 public abstract class EventConstants {12 /* $Id: EventConstants.java,v 1.1 2002/02/11 18:21:43 gregor Exp $ */13 14 public static final String ENTER_SCREEN = "enter-screen";15 public static final String LEAVE_SCREEN = "leave-screen";16 17 }18