1 /* 2 * (c) COPYRIGHT 1999 World Wide Web Consortium 3 * (Massachusetts Institute of Technology, Institut National de Recherche 4 * en Informatique et en Automatique, Keio University). 5 * All Rights Reserved. http://www.w3.org/Consortium/Legal/ 6 * 7 * $Id: SACMediaList.java,v 1.1.1.1 2003/12/28 21:23:53 davidsch Exp $ 8 */ 9 package org.w3c.css.sac; 10 11 /** 12 * @version $Revision: 1.1.1.1 $ 13 * @author Philippe Le Hegaret 14 */ 15 public interface SACMediaList { 16 17 /** 18 * Returns the length of this media list 19 */ 20 public int getLength(); 21 22 /** 23 * Returns the medium at the specified index, or <code>null</code> if this 24 * is not a valid index. 25 */ 26 public String item(int index); 27 } 28