01: package com.xoetrope.resource;
02:
03: /**
04: * An interface for feeeding pack the download status
05: * <p> Copyright (c) Xoetrope Ltd., 2001-2007, This software is licensed under
06: * the GNU Public License (GPL), please see license.txt for more details. If
07: * you make commercial use of this software you must purchase a commercial
08: * license from Xoetrope.</p>
09: * @author Luan O'Carroll
10: */
11: public interface XResourceLoaderStatus {
12: public void setProgress(int percent);
13:
14: public void setProgressMessage(String msg);
15:
16: public void updateFileProgress();
17: }
|