package caida.otter; /***************************************************************************** * File: FileInterface.java Name: FileInterface * Goal: Because the Dialog class is not implement correctly * I must create this interface to pass the information back to * the Otter. * * Written: Bradley Huffaker (01/21/98) * * for: Cooperative Association for Internet Data Analysis ****************************************************************************** ****************************************************************************** * By accessing this software, FILEINTERFACE, you are duly informed of * and agree to be bound by the conditions described below in * this notice: * * This software product, FILEINTERFACE, is developed by Bradley Huffaker, and * copyrighted(C) 1998 by the University of California, San Diego (UCSD), * with all rights reserved. UCSD administers the NSF grant to CAIDA, * number NCR-9711092, under which this code was developed." * * FILEINTERFACE is a free software. You can redistribute it and/or modify it * under the terms of the GNU Public License v.2 as * published by UCSD and is incorporated by reference herein. FILEINTERFACE is * distributed WITHOUT ANY WARRANTY, IMPLIED OR EXPRESS, OF MERCHANTABILITY * OR FITNESS FOR A PARTICULAR PURPOSE or that the use of it will not * infringe on any third party's intellectual property rights. * * You should have received a copy of the CAIDA General Public * License v.1 along with the FILEINTERFACE program. If for any reason you * have not received a copy, please write to * * University of California, San Diego * SDSC/CAIDA * 9500 Gilman Dr., MS-0505 * La Jolla, CA 92093 - 0505 USA * * Or contact INFO@CAIDA.ORG ******************************************************************************/ public interface FileInterface { public void setFile(String string); public void setFiles(String[] strings); public boolean isApplet(); }