001/*
002 * Version 0.70 01/04/2002
003 *
004 * Visit my url for update: http://www.geocities.com/beapetrovicova/
005 * 
006 * jFtp was developed by Bea Petrovicova <beapetrovicova@yahoo.com>.
007 * The design and implementation of jFtp are available for royalty-free 
008 * adoption and use. This software is provided 'as is' without any 
009 * guarantees. Copyright is retained by Bea Petrovicova. Redistribution 
010 * of any part of jFtp or any derivative works must include this notice.
011 * 
012 */  
013
014package cz.dhl.ui;
015
016/**
017 * Defines interface to display file status.
018 * 
019 * @Version 0.70 01/04/2002
020 * @author Bea Petrovicova <beapetrovicova@yahoo.com>
021 * @see cz.dhl.io.CoFile
022 */
023public interface CoStatus 
024{     
025   /** Display size. */
026   abstract public void setSize(String s);
027   /** Display date. */
028   abstract public void setDate(String s);
029}