You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by ah...@apache.org on 2014/11/15 07:34:01 UTC

[7/7] git commit: [flex-asjs] [refs/heads/develop] - needed default prop to compile FlexJSStore correctly

needed default prop to compile FlexJSStore correctly


Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/b703fbe3
Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/b703fbe3
Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/b703fbe3

Branch: refs/heads/develop
Commit: b703fbe3df887dca821c2fb4e6dd3372113a8a76
Parents: f14ea0a
Author: Alex Harui <ah...@apache.org>
Authored: Fri Nov 14 08:47:38 2014 -0800
Committer: Alex Harui <ah...@apache.org>
Committed: Fri Nov 14 22:29:52 2014 -0800

----------------------------------------------------------------------
 .../flex/html/supportClasses/UIItemRendererBase.as    | 14 +++++++++++++-
 1 file changed, 13 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/b703fbe3/frameworks/as/projects/FlexJSUI/src/org/apache/flex/html/supportClasses/UIItemRendererBase.as
----------------------------------------------------------------------
diff --git a/frameworks/as/projects/FlexJSUI/src/org/apache/flex/html/supportClasses/UIItemRendererBase.as b/frameworks/as/projects/FlexJSUI/src/org/apache/flex/html/supportClasses/UIItemRendererBase.as
index 01cd47f..44208c1 100644
--- a/frameworks/as/projects/FlexJSUI/src/org/apache/flex/html/supportClasses/UIItemRendererBase.as
+++ b/frameworks/as/projects/FlexJSUI/src/org/apache/flex/html/supportClasses/UIItemRendererBase.as
@@ -24,7 +24,9 @@ package org.apache.flex.html.supportClasses
 	import org.apache.flex.events.Event;
 	import org.apache.flex.utils.MXMLDataInterpreter;
 	
-	/**
+    [DefaultProperty("mxmlContent")]
+
+    /**
 	 *  The UIItemRendererBase class is the base class for all itemRenderers. An itemRenderer is used to
 	 *  display a single datum within a collection of data. Components such as a List use itemRenderers to 
 	 *  show their dataProviders.
@@ -89,6 +91,16 @@ package org.apache.flex.html.supportClasses
 			_itemRendererParent = value;
 		}
 		
+        /**
+         *  @copy org.apache.flex.core.ItemRendererClassFactory#mxmlContent
+         *  
+         *  @langversion 3.0
+         *  @playerversion Flash 10.2
+         *  @playerversion AIR 2.6
+         *  @productversion FlexJS 0.0
+         */
+        public var mxmlContent:Array;
+        
 		/**
 		 * @private
 		 */