1 18 19 package org.apache.batik.dom.svg; 20 21 import java.util.List ; 22 23 import org.w3c.dom.svg.SVGRect; 24 import org.w3c.dom.Element ; 25 26 36 public interface SVGSVGContext extends SVGContext { 37 38 43 public List getIntersectionList(SVGRect svgRect, Element end); 44 45 50 public List getEnclosureList (SVGRect rect, Element end ); 51 52 56 public boolean checkIntersection (Element element, SVGRect rect ); 57 58 62 public boolean checkEnclosure (Element element, SVGRect rect ); 63 64 68 public void deselectAll(); 69 70 }; 71 | Popular Tags |