1 18 package org.apache.batik.swing.svg; 19 20 import java.util.EventObject ; 21 22 import org.w3c.dom.svg.SVGDocument; 23 24 31 public class SVGDocumentLoaderEvent extends EventObject { 32 33 36 protected SVGDocument svgDocument; 37 38 44 public SVGDocumentLoaderEvent(Object source, SVGDocument doc) { 45 super(source); 46 svgDocument = doc; 47 } 48 49 53 public SVGDocument getSVGDocument() { 54 return svgDocument; 55 } 56 } 57 | Popular Tags |