All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.w3c.dom.svg.SVGStringList Maven / Gradle / Ivy

There is a newer version: 0.4.3
Show newest version

package org.w3c.dom.svg;

import org.w3c.dom.DOMException;

public interface SVGStringList {
  public int getNumberOfItems( );

  public void   clear (  )
                  throws DOMException;
  public String initialize ( String newItem )
                  throws DOMException, SVGException;
  public String getItem ( int index )
                  throws DOMException;
  public String insertItemBefore ( String newItem, int index )
                  throws DOMException, SVGException;
  public String replaceItem ( String newItem, int index )
                  throws DOMException, SVGException;
  public String removeItem ( int index )
                  throws DOMException;
  public String appendItem ( String newItem )
                  throws DOMException, SVGException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy