/* * @(#)Demo.java 1.0 May 20, 2009 * * Copyright 2009-2009 ETH Zurich. All Rights Reserved. * * This software is the proprietary information of ETH Zurich. * Use is subject to license terms. * * @(#) $Id$ */ package ch.ethz.globis.demo; import java.io.FileNotFoundException; import java.io.IOException; /** * Interface for demonstration purposes. * * @author Michael Grossnikaus <grossniklaus@inf.ethz.ch> * @version 1.0 */ public interface Demo { void foo() throws DemoException, IOException, FileNotFoundException; void bar() throws IOException, FileNotFoundException, IllegalArgumentException; }