-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRelateResult.as
35 lines (27 loc) · 904 Bytes
/
RelateResult.as
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
////////////////////////////////////////////////////////////////////////////////
//
// Copyright (c) 2010 ESRI
//
// All rights reserved under the copyright laws of the United States.
// You may freely redistribute and use this software, with or
// without modification, provided you include the original copyright
// and use restrictions. See use restrictions in the file:
// <install location>/License.txt
//
////////////////////////////////////////////////////////////////////////////////
package widgets.eSearch
{
import flash.events.EventDispatcher;
import widgets.eSearch.SearchResult;
[Bindable]
[RemoteClass(alias="widgets.eSearch.RelateResult")]
public class RelateResult extends EventDispatcher
{
public var name:String;
public var id:Number;
public var fields:XMLList;
public var enableexport:Boolean;
public var oid:Number;
public var icon:String;
}
}