001/*
002 * Cobertura - http://cobertura.sourceforge.net/
003 *
004 * Cobertura is free software; you can redistribute it and/or modify
005 * it under the terms of the GNU General Public License as published
006 * by the Free Software Foundation; either version 2 of the License,
007 * or (at your option) any later version.
008 *
009 * Cobertura is distributed in the hope that it will be useful, but
010 * WITHOUT ANY WARRANTY; without even the implied warranty of
011 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
012 * General Public License for more details.
013 *
014 * You should have received a copy of the GNU General Public License
015 * along with Cobertura; if not, write to the Free Software
016 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
017 * USA
018 * 
019 * Alternatively, the contents may be licensed with:
020 * 
021 * The Apache Software License, Version 1.1
022 *
023 * Copyright (C) 2000-2002 The Apache Software Foundation.  All rights
024 * reserved.
025 * Copyright (C) 2009 John Lewis
026 *
027 * Redistribution and use in source and binary forms, with or without
028 * modification, are permitted provided that the following conditions
029 * are met:
030 *
031 * 1. Redistributions of source code must retain the above copyright
032 *    notice, this list of conditions and the following disclaimer.
033 *
034 * 2. Redistributions in binary form must reproduce the above copyright
035 *    notice, this list of conditions and the following disclaimer in
036 *    the documentation and/or other materials provided with the
037 *    distribution.
038 *
039 * 3. The end-user documentation included with the redistribution, if
040 *    any, must include the following acknowlegement:
041 *       "This product includes software developed by the
042 *        Apache Software Foundation (http://www.apache.org/)."
043 *    Alternately, this acknowlegement may appear in the software itself,
044 *    if and wherever such third-party acknowlegements normally appear.
045 *
046 * 4. The names "Ant" and "Apache Software
047 *    Foundation" must not be used to endorse or promote products derived
048 *    from this software without prior written permission. For written
049 *    permission, please contact apache@apache.org.
050 *
051 * 5. Products derived from this software may not be called "Apache"
052 *    nor may "Apache" appear in their names without prior written
053 *    permission of the Apache Group.
054 *
055 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
056 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
057 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
058 * DISCLAIMED.  IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
059 * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
060 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
061 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
062 * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
063 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
064 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
065 * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
066 * SUCH DAMAGE.
067 * ====================================================================
068 *
069 * This software consists of voluntary contributions made by many
070 * individuals on behalf of the Apache Software Foundation.  For more
071 * information on the Apache Software Foundation, please see
072 * <http://www.apache.org/>.
073 */
074
075package net.sourceforge.cobertura.javancss.ccl;
076
077
078public interface Exitable
079{
080        public abstract void setExit();
081}