/* Colored.java * * Copyright (c) 2003 by Asko Soukka * * This file is part of Gzz. * * Gzz is free software; you can redistribute it and/or modify it under * the terms of the GNU Lesser General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * Gzz is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General * Public License for more details. * * You should have received a copy of the GNU Lesser General * Public License along with Gzz; if not, write to the Free * Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, * MA 02111-1307 USA * * */ /* * Written by Asko Soukka */ package gzz.vob; import java.awt.Color; import java.util.List; import java.util.ArrayList; /** Interface for multiple background colors, which are shown * e.g. as parallel vertical stripes inside the Vob. */ public interface Colored { public static final String rcsid = "$Id: Colored.java,v 1.1 2003/03/10 14:11:57 humppake Exp $"; /** Add one more color to be drawn inside the Vob. */ void addColor(Color c); /** Return the List of colors to be drawn inside the Vob. */ List getColors(); }