SVGPointList.java :  » XML » xml-commons-external-1.4.01 » org » w3c » dom » svg » Java Open Source

Java Open Source » XML » xml commons external 1.4.01 
xml commons external 1.4.01 » org » w3c » dom » svg » SVGPointList.java

package org.w3c.dom.svg;

import org.w3c.dom.DOMException;

public interface SVGPointList {
  public int getNumberOfItems( );

  public void   clear (  )
                  throws DOMException;
  public SVGPoint initialize ( SVGPoint newItem )
                  throws DOMException, SVGException;
  public SVGPoint getItem ( int index )
                  throws DOMException;
  public SVGPoint insertItemBefore ( SVGPoint newItem, int index )
                  throws DOMException, SVGException;
  public SVGPoint replaceItem ( SVGPoint newItem, int index )
                  throws DOMException, SVGException;
  public SVGPoint removeItem ( int index )
                  throws DOMException;
  public SVGPoint appendItem ( SVGPoint newItem )
                  throws DOMException, SVGException;
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.