1 18 package org.apache.batik.swing.svg; 19 20 import java.util.EventObject ; 21 22 import org.w3c.dom.svg.SVGAElement; 23 24 31 public class LinkActivationEvent extends EventObject { 32 33 36 protected String referencedURI; 37 38 45 public LinkActivationEvent(Object source, SVGAElement link, String uri) { 46 super(source); 47 referencedURI = uri; 48 } 49 50 53 public String getReferencedURI() { 54 return referencedURI; 55 } 56 } 57 | Popular Tags |