You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@royale.apache.org by ha...@apache.org on 2020/01/17 11:57:50 UTC

[royale-asjs] 01/02: ignores

This is an automated email from the ASF dual-hosted git repository.

harbs pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/royale-asjs.git

commit 8bf1ae7f64909c45360a18ac649ac81b61657f95
Author: Harbs <ha...@in-tools.com>
AuthorDate: Fri Jan 17 13:57:00 2020 +0200

    ignores
---
 .../royale/html/beads/HideComboPopupOnMouseDownBead.as  | 17 ++++++++++++++---
 1 file changed, 14 insertions(+), 3 deletions(-)

diff --git a/frameworks/projects/Basic/src/main/royale/org/apache/royale/html/beads/HideComboPopupOnMouseDownBead.as b/frameworks/projects/Basic/src/main/royale/org/apache/royale/html/beads/HideComboPopupOnMouseDownBead.as
index fba3946..27464c8 100644
--- a/frameworks/projects/Basic/src/main/royale/org/apache/royale/html/beads/HideComboPopupOnMouseDownBead.as
+++ b/frameworks/projects/Basic/src/main/royale/org/apache/royale/html/beads/HideComboPopupOnMouseDownBead.as
@@ -55,8 +55,8 @@ package org.apache.royale.html.beads
 		 *  @playerversion Flash 10.2
 		 *  @playerversion AIR 2.6
 		 *  @productversion Royale 0.0
-		 *  @royaleignorecoercion HTMLInputElement
-		 *  @royaleignorecoercion org.apache.royale.core.UIBase;
+		 *  @royaleignorecoercion org.apache.royale.html.beads.IComboBoxView
+		 *  @royaleignorecoercion org.apache.royale.events.IEventDispatcher
 		 */
 		public function set strand(value:IStrand):void
 		{
@@ -68,7 +68,10 @@ package org.apache.royale.html.beads
 				IEventDispatcher(_strand).addEventListener("viewChanged", finishSetup);
 			}
 		}
-		
+		/**
+		 * @royaleignorecoercion org.apache.royale.html.beads.IComboBoxView
+		 * @royaleignorecoercion org.apache.royale.events.IEventDispatcher
+		 */
 		protected function finishSetup(event:Event):void
 		{
 			if (viewBead == null) {
@@ -83,6 +86,10 @@ package org.apache.royale.html.beads
 			event.stopImmediatePropagation();
 		}
 		
+		/**
+		 * @royaleignorecoercion org.apache.royale.core.IUIBase
+		 * @royaleignorecoercion org.apache.royale.events.IEventDispatcher
+		 */
 		protected function handlePopupShow(event:Event):void
 		{
 			IEventDispatcher(viewBead.popUp).addEventListener(MouseEvent.MOUSE_DOWN, handleControlMouseDown);
@@ -97,6 +104,10 @@ package org.apache.royale.html.beads
 			viewBead.popUpVisible = false;
 		}
 		
+		/**
+		 * @royaleignorecoercion org.apache.royale.core.IUIBase
+		 * @royaleignorecoercion org.apache.royale.events.IEventDispatcher
+		 */
 		protected function handlePopupHide(event:Event):void
 		{
 			IEventDispatcher(viewBead.popUp).removeEventListener(MouseEvent.MOUSE_DOWN, handleControlMouseDown);