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
@@ -25,7 +25,14 @@ import flash.events.Event;
public class OccupantChangedEvent extends EZEvent
{
/**
* @eventType OccupantEntered
*/
public static const OCCUPANT_ENTERED :String = "OccupantEntered";
/**
* @eventType OccupantLeft
*/
public static const OCCUPANT_LEFT :String = "OccupantLeft";
/** The occupantId of the occupant that entered or left. */