1 /* 2 * Copyright (c) 2001-2003 The XDoclet team 3 * All rights reserved. 4 */ 5 package xjavadoc.event; 6 7 import java.util.EventObject; 8 import xjavadoc.XTag; 9 10 /*** 11 * Describe what this class does 12 * 13 * @author Aslak Hellesøy 14 * @created 30. januar 2002 15 * @todo-javadoc Write javadocs 16 */ 17 public class XTagEvent extends EventObject 18 { 19 /*** 20 * create new event containing tag object. 21 * 22 * @param tag object to wrap 23 */ 24 public XTagEvent( XTag tag ) 25 { 26 super( tag ); 27 } 28 }