// Copyright 2007. Adobe Systems Incorporated. All Rights Reserved.
package fl.data {
/**
* The student_ar_fl_data_SimpleCollectionItem class defines a single item in an inspectable
* property that represents a data provider. A student_ar_fl_data_SimpleCollectionItem object
* is a collection list item that contains only label
and
* data
properties--for example, a ComboBox or List component.
*
* @internal Is this revised description correct?
* Adobe: [LM} Yes, its ok.
*
* @includeExample examples/student_ar_fl_data_SimpleCollectionItemExample.as
*
* @langversion 3.0
* @playerversion Flash 9.0.28.0
*/
dynamic public class student_ar_fl_data_SimpleCollectionItem {
[Inspectable()]
/**
* The label
property of the object.
*
* The default value is label(n)
, where n is the ordinal index.
*
* @langversion 3.0
* @playerversion Flash 9.0.28.0
*/
public var label:String;
[Inspectable()]
/**
* The data
property of the object.
*
* @default null
*
* @langversion 3.0
* @playerversion Flash 9.0.28.0
*/
public var data:String;
/**
* Creates a new student_ar_fl_data_SimpleCollectionItem object.
*
* @langversion 3.0
* @playerversion Flash 9.0.28.0
*/
public function student_ar_fl_data_SimpleCollectionItem() {}
/**
* @private
*
* @langversion 3.0
* @playerversion Flash 9.0.28.0
*/
public function toString():String {
return "[student_ar_fl_data_SimpleCollectionItem: "+label+","+data+"]";
}
}
}