/* * StatusDisplay.java * * Copyright (c) 2003-2004 Digi International * This program and the information contained in it is confidential and * proprietary to Digi International and may not be used, copied, or re- * produced without the prior written permission of Digi International. * */ package com.digi.config.util; /** * This interface defines operations to display status within a UI. */ public interface StatusDisplay { /** * Update the status of the UI. * @param busy if true status should indicate a busy state. * @param text status text to be displayed. */ public void updateStatus(boolean busy, String text); /** * Get the current status text. * @return the current status text. */ public String getStatusText(); }