Module: nagvis Branch: master Commit: 03ff11d856cb2e8574444aa5281f58202cb58db8 URL: http://nagvis.git.sourceforge.net/git/gitweb.cgi?p=nagvis/nagvis/commit/?id=03ff11d856cb2e8574444aa5281f58202cb58db8
Author: Roman Kyrylych <[email protected]> Date: Tue Aug 18 11:57:23 2009 +0300 gmap: Extended the client-side Link class Signed-off-by: Roman Kyrylych <[email protected]> --- uifx/src/modules/gmap/domain/Link.as | 10 ++++++++++ 1 files changed, 10 insertions(+), 0 deletions(-) diff --git a/uifx/src/modules/gmap/domain/Link.as b/uifx/src/modules/gmap/domain/Link.as index 5d19702..1cad574 100644 --- a/uifx/src/modules/gmap/domain/Link.as +++ b/uifx/src/modules/gmap/domain/Link.as @@ -25,10 +25,20 @@ package modules.gmap.domain [RemoteClass(alias="Link")] public class Link { + public static const STATE_UNKNOWN : Number = 0; + public static const STATE_OK : Number = 1; + public static const STATE_WARNING : Number = 2; + public static const STATE_ERROR : Number = 3; + public var id1 : String; public var location1 : Location; public var id2 : String; public var location2:Location; + + private var description : String; + private var action : String; + private var object : Object; + private var state : Number; } } ------------------------------------------------------------------------------ Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day trial. Simplify your report design, integration and deployment - and focus on what you do best, core application coding. Discover what's new with Crystal Reports now. http://p.sf.net/sfu/bobj-july _______________________________________________ Nagvis-checkins mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/nagvis-checkins
