You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@royale.apache.org by ca...@apache.org on 2020/04/24 16:53:29 UTC

[royale-asjs] branch develop updated: Core: add IBeadKeyController

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

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


The following commit(s) were added to refs/heads/develop by this push:
     new f40be40  Core: add IBeadKeyController
f40be40 is described below

commit f40be4071e1db52b9e323e6cf1b35e9674aa3b65
Author: Carlos Rovira <ca...@apache.org>
AuthorDate: Fri Apr 24 18:53:24 2020 +0200

    Core: add IBeadKeyController
---
 .../projects/Core/src/main/royale/CoreClasses.as   |  1 +
 .../org/apache/royale/core/IBeadKeyController.as   | 37 ++++++++++++++++++++++
 2 files changed, 38 insertions(+)

diff --git a/frameworks/projects/Core/src/main/royale/CoreClasses.as b/frameworks/projects/Core/src/main/royale/CoreClasses.as
index 0910aa3..2d3e8c0 100644
--- a/frameworks/projects/Core/src/main/royale/CoreClasses.as
+++ b/frameworks/projects/Core/src/main/royale/CoreClasses.as
@@ -26,6 +26,7 @@ package {
  */
 internal class CoreClasses
 {
+	import org.apache.royale.core.IBeadKeyController; IBeadKeyController;
 	import org.apache.royale.core.IFocusable; IFocusable;
 	import org.apache.royale.core.IId; IId;
 	import org.apache.royale.core.HTMLElementWrapper; HTMLElementWrapper;
diff --git a/frameworks/projects/Core/src/main/royale/org/apache/royale/core/IBeadKeyController.as b/frameworks/projects/Core/src/main/royale/org/apache/royale/core/IBeadKeyController.as
new file mode 100644
index 0000000..a38ce9f
--- /dev/null
+++ b/frameworks/projects/Core/src/main/royale/org/apache/royale/core/IBeadKeyController.as
@@ -0,0 +1,37 @@
+////////////////////////////////////////////////////////////////////////////////
+//
+//  Licensed to the Apache Software Foundation (ASF) under one or more
+//  contributor license agreements.  See the NOTICE file distributed with
+//  this work for additional information regarding copyright ownership.
+//  The ASF licenses this file to You under the Apache License, Version 2.0
+//  (the "License"); you may not use this file except in compliance with
+//  the License.  You may obtain a copy of the License at
+//
+//      http://www.apache.org/licenses/LICENSE-2.0
+//
+//  Unless required by applicable law or agreed to in writing, software
+//  distributed under the License is distributed on an "AS IS" BASIS,
+//  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+//  See the License for the specific language governing permissions and
+//  limitations under the License.
+//
+////////////////////////////////////////////////////////////////////////////////
+package org.apache.royale.core
+{
+    /**
+     *  The IBeadKeyController interface is a "marker" interface for beads that 
+     *  are controllers.  A marker interface has no addtional APIs.
+     *  It is used to find the controller on the strand via calls to getBeadByType.
+     * 
+     *  @see org.apache.royale.core.IStrand#getBeadByType
+     *  
+     *  @langversion 3.0
+     *  @playerversion Flash 10.2
+     *  @playerversion AIR 2.6
+     *  @productversion Royale 0.9.8
+     */
+	public interface IBeadKeyController extends IBead
+	{
+		
+	}
+}