You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by pe...@apache.org on 2013/05/24 13:58:35 UTC

git commit: [flex-asjs] [refs/heads/develop] - TitleBarBead was removed and needed to be excluded from the FlexJSUIClasses list. ITitleBarBead is also no longer needed.

Updated Branches:
  refs/heads/develop c15c55ef8 -> b0201c8f7


TitleBarBead was removed and needed to be excluded from the FlexJSUIClasses list. ITitleBarBead is also no longer needed.


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

Branch: refs/heads/develop
Commit: b0201c8f7ee477a9380b959755fdf61fe0e3d96c
Parents: c15c55e
Author: Peter Ent <pe...@apache.org>
Authored: Fri May 24 07:58:26 2013 -0400
Committer: Peter Ent <pe...@apache.org>
Committed: Fri May 24 07:58:26 2013 -0400

----------------------------------------------------------------------
 frameworks/as/src/FlexJSUIClasses.as               |    1 -
 .../as/src/org/apache/flex/core/ITitleBarBead.as   |   34 ---------------
 2 files changed, 0 insertions(+), 35 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/b0201c8f/frameworks/as/src/FlexJSUIClasses.as
----------------------------------------------------------------------
diff --git a/frameworks/as/src/FlexJSUIClasses.as b/frameworks/as/src/FlexJSUIClasses.as
index d1d5400..f98497e 100644
--- a/frameworks/as/src/FlexJSUIClasses.as
+++ b/frameworks/as/src/FlexJSUIClasses.as
@@ -38,7 +38,6 @@ internal class FlexJSUIClasses
 	import org.apache.flex.html.staticControls.beads.RadioButtonBead; RadioButtonBead;
 	import org.apache.flex.html.staticControls.beads.ComboBoxBead; ComboBoxBead;
     import org.apache.flex.html.staticControls.beads.ContainerBead; ContainerBead;
-	import org.apache.flex.html.staticControls.beads.TitleBarBead; TitleBarBead;
 	import org.apache.flex.html.staticControls.beads.PanelBead; PanelBead;
 	import org.apache.flex.html.staticControls.beads.models.TextModel; TextModel;
 	import org.apache.flex.html.staticControls.beads.models.ComboBoxModel; ComboBoxModel;

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/b0201c8f/frameworks/as/src/org/apache/flex/core/ITitleBarBead.as
----------------------------------------------------------------------
diff --git a/frameworks/as/src/org/apache/flex/core/ITitleBarBead.as b/frameworks/as/src/org/apache/flex/core/ITitleBarBead.as
deleted file mode 100644
index 67d6af4..0000000
--- a/frameworks/as/src/org/apache/flex/core/ITitleBarBead.as
+++ /dev/null
@@ -1,34 +0,0 @@
-////////////////////////////////////////////////////////////////////////////////
-//
-//  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.flex.core
-{
-	import org.apache.flex.html.staticControls.beads.IContainerBead;
-
-	public interface ITitleBarBead extends IContainerBead
-	{
-		function get text():String;
-		function set text(value:String):void;
-		
-		function get html():String;
-		function set html(value:String):void;
-		
-		function get showCloseButton() : Boolean;
-		function set showCloseButton(value:Boolean):void;
-	}
-}
\ No newline at end of file