Updated Branches: refs/heads/develop 2ec361ab4 -> c8d4d49d9
shim IStateClient2 to make SWF compiler happy Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/35cb7062 Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/35cb7062 Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/35cb7062 Branch: refs/heads/develop Commit: 35cb70628f7d255d16b9270d6e208ba5b47cce3d Parents: 2ec361a Author: Alex Harui <[email protected]> Authored: Fri Nov 15 13:30:25 2013 -0800 Committer: Alex Harui <[email protected]> Committed: Mon Nov 18 10:02:54 2013 -0800 ---------------------------------------------------------------------- frameworks/as/src/FlexJSUIClasses.as | 1 + frameworks/as/src/mx/core/IStateClient2.as | 26 +++++++++++++++++++++++++ 2 files changed, 27 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/35cb7062/frameworks/as/src/FlexJSUIClasses.as ---------------------------------------------------------------------- diff --git a/frameworks/as/src/FlexJSUIClasses.as b/frameworks/as/src/FlexJSUIClasses.as index 1fe8a69..af54171 100644 --- a/frameworks/as/src/FlexJSUIClasses.as +++ b/frameworks/as/src/FlexJSUIClasses.as @@ -91,6 +91,7 @@ internal class FlexJSUIClasses import org.apache.flex.utils.Timer; Timer; import org.apache.flex.core.SimpleStatesImpl; SimpleStatesImpl; + import mx.core.IStateClient2; IStateClient2; import mx.states.AddItems; AddItems; import mx.states.SetProperty; SetProperty; import mx.states.State; State; http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/35cb7062/frameworks/as/src/mx/core/IStateClient2.as ---------------------------------------------------------------------- diff --git a/frameworks/as/src/mx/core/IStateClient2.as b/frameworks/as/src/mx/core/IStateClient2.as new file mode 100644 index 0000000..70882fe --- /dev/null +++ b/frameworks/as/src/mx/core/IStateClient2.as @@ -0,0 +1,26 @@ +//////////////////////////////////////////////////////////////////////////////// +// +// 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. +// +//////////////////////////////////////////////////////////////////////////////// + +// shim the mx classes for states +package mx.core +{ + public interface IStateClient2 + { + } +} \ No newline at end of file
