001/*
002** Authored by Timothy Gerard Endres
003** <mailto:time@gjt.org>  <http://www.trustice.com>
004** 
005** This work has been placed into the public domain.
006** You may use this work in any way and for any purpose you wish.
007**
008** THIS SOFTWARE IS PROVIDED AS-IS WITHOUT WARRANTY OF ANY KIND,
009** NOT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY. THE AUTHOR
010** OF THIS SOFTWARE, ASSUMES _NO_ RESPONSIBILITY FOR ANY
011** CONSEQUENCE RESULTING FROM THE USE, MODIFICATION, OR
012** REDISTRIBUTION OF THIS SOFTWARE. 
013** 
014*/
015
016package com.ice.tar;
017
018/**
019 * This interface is provided to TarArchive to display progress
020 * information during operation. This is required to display the
021 * results of the 'list' operation.
022 */
023
024public interface
025TarProgressDisplay
026        {
027        /**
028         * Display a progress message.
029         *
030         * @param msg The message to display.
031         */
032
033        public void
034                showTarProgressMessage( String msg );
035        }
036