Added @eventType tags to the event type constants.

AsDoc is crappy: the @eventType tag has two different syntaxes, depending on whether
you're using it to comment an [Event] declared by a class, or the type constant.
Also: this is pointless, asdoc should be able to get this value using the other
@eventType tag, but instead we have to be redundant, possibly making a mistake.


git-svn-id: svn+ssh://src.earth.threerings.net/vilya/trunk@547 c613c5cb-e716-0410-b11b-feb51c14d237
This commit is contained in:
Ray Greenwell
2008-01-11 19:16:12 +00:00
parent 4d12a7f65e
commit b542ed3afc
6 changed files with 50 additions and 11 deletions
@@ -29,7 +29,11 @@ import flash.events.Event;
*/
public class PropertyChangedEvent extends EZEvent
{
/** The type of a property change event. */
/**
* The type of a property change event.
*
* @eventType PropChanged
*/
public static const PROPERTY_CHANGED :String = "PropChanged";
/**