package org.biomoby.client.util;

/**
 * Simple util other BioMoby classes can use to set the status of a 
 * splash screen, if one is present in an application and reads this status
 * to keep the user imformed (e.g. ca.ucalgary.seahawk.gui.MobyContentGUI).  
 */
public class SplashScreenStatus{
    private static String splashStatus = "Starting program";

    public static void setStatus(String text){
	splashStatus = text;
    }
    public static String getStatus(){
        return splashStatus;
    }
}
