1 12 13 package org.w3c.dom.stylesheets; 14 15 import org.w3c.dom.DOMException ; 16 17 27 public interface MediaList { 28 37 public String getMediaText(); 38 public void setMediaText(String mediaText) 39 throws DOMException ; 40 41 45 public int getLength(); 46 47 56 public String item(int index); 57 58 66 public void deleteMedium(String oldMedium) 67 throws DOMException ; 68 69 78 public void appendMedium(String newMedium) 79 throws DOMException ; 80 81 } 82 | Popular Tags |