need to move these
Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/b7e9b708 Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/b7e9b708 Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/b7e9b708 Branch: refs/heads/mavenfolders Commit: b7e9b708a7f811aca8a94a7dc65cb4a4cfb24d9e Parents: 8563f0c Author: Alex Harui <[email protected]> Authored: Wed Feb 3 09:29:22 2016 -0800 Committer: Alex Harui <[email protected]> Committed: Wed Feb 3 09:29:22 2016 -0800 ---------------------------------------------------------------------- .../org/apache/flex/events/ItemAddedEvent.as | 88 -------------- .../org/apache/flex/events/ItemClickedEvent.as | 115 ------------------- .../org/apache/flex/events/ItemRemovedEvent.as | 88 -------------- .../org/apache/flex/events/ItemAddedEvent.as | 88 ++++++++++++++ .../org/apache/flex/events/ItemClickedEvent.as | 115 +++++++++++++++++++ .../org/apache/flex/events/ItemRemovedEvent.as | 88 ++++++++++++++ 6 files changed, 291 insertions(+), 291 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/b7e9b708/frameworks/projects/HTML/as/src/org/apache/flex/events/ItemAddedEvent.as ---------------------------------------------------------------------- diff --git a/frameworks/projects/HTML/as/src/org/apache/flex/events/ItemAddedEvent.as b/frameworks/projects/HTML/as/src/org/apache/flex/events/ItemAddedEvent.as deleted file mode 100644 index 24707c0..0000000 --- a/frameworks/projects/HTML/as/src/org/apache/flex/events/ItemAddedEvent.as +++ /dev/null @@ -1,88 +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.events -{ - - import org.apache.flex.events.CustomEvent; - - /** - * The ItemAddedEvent is dispatched by IItemRendererParent objects whenenver an - * itemRenderer is added. - * - * @langversion 3.0 - * @playerversion Flash 10.2 - * @playerversion AIR 2.6 - * @productversion FlexJS 0.0 - */ - public class ItemAddedEvent extends CustomEvent - { - - //-------------------------------------- - // Constructor - //-------------------------------------- - - /** - * Constructor. - * - * @param type The name of the event. - * @param bubbles Whether the event bubbles. - * @param cancelable Whether the event can be canceled. - * - * @langversion 3.0 - * @playerversion Flash 10.2 - * @playerversion AIR 2.6 - * @productversion FlexJS 0.0 - */ - public function ItemAddedEvent(type:String, bubbles:Boolean=false, cancelable:Boolean=false) - { - COMPILE::AS3 - { - super(type, bubbles, cancelable); - } - COMPILE::JS - { - super(type); - } - - item = null; - } - - /** - * The item being added. - * - * @export - * @langversion 3.0 - * @playerversion Flash 10.2 - * @playerversion AIR 2.6 - * @productversion FlexJS 0.0 - */ - public var item:Object; - - /** - * @private - */ - override public function cloneEvent():org.apache.flex.events.Event - { - var newEvent:ItemAddedEvent = new ItemAddedEvent(type); - newEvent.item = item; - return newEvent; - } - } -} http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/b7e9b708/frameworks/projects/HTML/as/src/org/apache/flex/events/ItemClickedEvent.as ---------------------------------------------------------------------- diff --git a/frameworks/projects/HTML/as/src/org/apache/flex/events/ItemClickedEvent.as b/frameworks/projects/HTML/as/src/org/apache/flex/events/ItemClickedEvent.as deleted file mode 100644 index ac943b0..0000000 --- a/frameworks/projects/HTML/as/src/org/apache/flex/events/ItemClickedEvent.as +++ /dev/null @@ -1,115 +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.events -{ - - import org.apache.flex.events.CustomEvent; - - /** - * The ItemClickedEvent is a custom event issued by an itemRenderer to - * convey information about itself when it has determined that the - * event(s) happening to it constitute a 'click' on itself. - * - * @langversion 3.0 - * @playerversion Flash 10.2 - * @playerversion AIR 2.6 - * @productversion FlexJS 0.0 - */ - public class ItemClickedEvent extends CustomEvent - { - - //-------------------------------------- - // Constructor - //-------------------------------------- - - /** - * Constructor. - * - * @param type The name of the event. - * @param bubbles Whether the event bubbles. - * @param cancelable Whether the event can be canceled. - * - * @langversion 3.0 - * @playerversion Flash 10.2 - * @playerversion AIR 2.6 - * @productversion FlexJS 0.0 - */ - public function ItemClickedEvent(type:String, bubbles:Boolean=false, cancelable:Boolean=false) - { - COMPILE::AS3 - { - super(type, bubbles, cancelable); - } - COMPILE::JS - { - super(type); - } - - index = -1; - data = null; - multipleSelection = false; - } - - /** - * The index of the item beginning with zero. - * - * @export - * @langversion 3.0 - * @playerversion Flash 10.2 - * @playerversion AIR 2.6 - * @productversion FlexJS 0.0 - */ - public var index:Number; - - /** - * The data of the item. - * - * @export - * @langversion 3.0 - * @playerversion Flash 10.2 - * @playerversion AIR 2.6 - * @productversion FlexJS 0.0 - */ - public var data:Object; - - /** - * Whether or not this click is part of a multi-selection sequence. - * - * @export - * @langversion 3.0 - * @playerversion Flash 10.2 - * @playerversion AIR 2.6 - * @productversion FlexJS 0.0 - */ - public var multipleSelection:Boolean; - - /** - * @private - */ - override public function cloneEvent():org.apache.flex.events.Event - { - var newEvent:ItemClickedEvent = new ItemClickedEvent(type); - newEvent.index = index; - newEvent.data = data; - newEvent.multipleSelection = multipleSelection; - return newEvent; - } - } -} http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/b7e9b708/frameworks/projects/HTML/as/src/org/apache/flex/events/ItemRemovedEvent.as ---------------------------------------------------------------------- diff --git a/frameworks/projects/HTML/as/src/org/apache/flex/events/ItemRemovedEvent.as b/frameworks/projects/HTML/as/src/org/apache/flex/events/ItemRemovedEvent.as deleted file mode 100644 index d638084..0000000 --- a/frameworks/projects/HTML/as/src/org/apache/flex/events/ItemRemovedEvent.as +++ /dev/null @@ -1,88 +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.events -{ - - import org.apache.flex.events.CustomEvent; - - /** - * The ItemRemovedEvent is dispatched by IItemRendererParent objects whenenver an - * itemRenderer is removed. - * - * @langversion 3.0 - * @playerversion Flash 10.2 - * @playerversion AIR 2.6 - * @productversion FlexJS 0.0 - */ - public class ItemRemovedEvent extends CustomEvent - { - - //-------------------------------------- - // Constructor - //-------------------------------------- - - /** - * Constructor. - * - * @param type The name of the event. - * @param bubbles Whether the event bubbles. - * @param cancelable Whether the event can be canceled. - * - * @langversion 3.0 - * @playerversion Flash 10.2 - * @playerversion AIR 2.6 - * @productversion FlexJS 0.0 - */ - public function ItemRemovedEvent(type:String, bubbles:Boolean=false, cancelable:Boolean=false) - { - COMPILE::AS3 - { - super(type, bubbles, cancelable); - } - COMPILE::JS - { - super(type); - } - - item = null; - } - - /** - * The item being removed. - * - * @export - * @langversion 3.0 - * @playerversion Flash 10.2 - * @playerversion AIR 2.6 - * @productversion FlexJS 0.0 - */ - public var item:Object; - - /** - * @private - */ - override public function cloneEvent():org.apache.flex.events.Event - { - var newEvent:ItemRemovedEvent = new ItemRemovedEvent(type); - newEvent.item = item; - return newEvent; - } - } -} http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/b7e9b708/frameworks/projects/HTML/src/main/flex/org/apache/flex/events/ItemAddedEvent.as ---------------------------------------------------------------------- diff --git a/frameworks/projects/HTML/src/main/flex/org/apache/flex/events/ItemAddedEvent.as b/frameworks/projects/HTML/src/main/flex/org/apache/flex/events/ItemAddedEvent.as new file mode 100644 index 0000000..24707c0 --- /dev/null +++ b/frameworks/projects/HTML/src/main/flex/org/apache/flex/events/ItemAddedEvent.as @@ -0,0 +1,88 @@ +//////////////////////////////////////////////////////////////////////////////// +// + +// 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.events +{ + + import org.apache.flex.events.CustomEvent; + + /** + * The ItemAddedEvent is dispatched by IItemRendererParent objects whenenver an + * itemRenderer is added. + * + * @langversion 3.0 + * @playerversion Flash 10.2 + * @playerversion AIR 2.6 + * @productversion FlexJS 0.0 + */ + public class ItemAddedEvent extends CustomEvent + { + + //-------------------------------------- + // Constructor + //-------------------------------------- + + /** + * Constructor. + * + * @param type The name of the event. + * @param bubbles Whether the event bubbles. + * @param cancelable Whether the event can be canceled. + * + * @langversion 3.0 + * @playerversion Flash 10.2 + * @playerversion AIR 2.6 + * @productversion FlexJS 0.0 + */ + public function ItemAddedEvent(type:String, bubbles:Boolean=false, cancelable:Boolean=false) + { + COMPILE::AS3 + { + super(type, bubbles, cancelable); + } + COMPILE::JS + { + super(type); + } + + item = null; + } + + /** + * The item being added. + * + * @export + * @langversion 3.0 + * @playerversion Flash 10.2 + * @playerversion AIR 2.6 + * @productversion FlexJS 0.0 + */ + public var item:Object; + + /** + * @private + */ + override public function cloneEvent():org.apache.flex.events.Event + { + var newEvent:ItemAddedEvent = new ItemAddedEvent(type); + newEvent.item = item; + return newEvent; + } + } +} http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/b7e9b708/frameworks/projects/HTML/src/main/flex/org/apache/flex/events/ItemClickedEvent.as ---------------------------------------------------------------------- diff --git a/frameworks/projects/HTML/src/main/flex/org/apache/flex/events/ItemClickedEvent.as b/frameworks/projects/HTML/src/main/flex/org/apache/flex/events/ItemClickedEvent.as new file mode 100644 index 0000000..ac943b0 --- /dev/null +++ b/frameworks/projects/HTML/src/main/flex/org/apache/flex/events/ItemClickedEvent.as @@ -0,0 +1,115 @@ +//////////////////////////////////////////////////////////////////////////////// +// + +// 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.events +{ + + import org.apache.flex.events.CustomEvent; + + /** + * The ItemClickedEvent is a custom event issued by an itemRenderer to + * convey information about itself when it has determined that the + * event(s) happening to it constitute a 'click' on itself. + * + * @langversion 3.0 + * @playerversion Flash 10.2 + * @playerversion AIR 2.6 + * @productversion FlexJS 0.0 + */ + public class ItemClickedEvent extends CustomEvent + { + + //-------------------------------------- + // Constructor + //-------------------------------------- + + /** + * Constructor. + * + * @param type The name of the event. + * @param bubbles Whether the event bubbles. + * @param cancelable Whether the event can be canceled. + * + * @langversion 3.0 + * @playerversion Flash 10.2 + * @playerversion AIR 2.6 + * @productversion FlexJS 0.0 + */ + public function ItemClickedEvent(type:String, bubbles:Boolean=false, cancelable:Boolean=false) + { + COMPILE::AS3 + { + super(type, bubbles, cancelable); + } + COMPILE::JS + { + super(type); + } + + index = -1; + data = null; + multipleSelection = false; + } + + /** + * The index of the item beginning with zero. + * + * @export + * @langversion 3.0 + * @playerversion Flash 10.2 + * @playerversion AIR 2.6 + * @productversion FlexJS 0.0 + */ + public var index:Number; + + /** + * The data of the item. + * + * @export + * @langversion 3.0 + * @playerversion Flash 10.2 + * @playerversion AIR 2.6 + * @productversion FlexJS 0.0 + */ + public var data:Object; + + /** + * Whether or not this click is part of a multi-selection sequence. + * + * @export + * @langversion 3.0 + * @playerversion Flash 10.2 + * @playerversion AIR 2.6 + * @productversion FlexJS 0.0 + */ + public var multipleSelection:Boolean; + + /** + * @private + */ + override public function cloneEvent():org.apache.flex.events.Event + { + var newEvent:ItemClickedEvent = new ItemClickedEvent(type); + newEvent.index = index; + newEvent.data = data; + newEvent.multipleSelection = multipleSelection; + return newEvent; + } + } +} http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/b7e9b708/frameworks/projects/HTML/src/main/flex/org/apache/flex/events/ItemRemovedEvent.as ---------------------------------------------------------------------- diff --git a/frameworks/projects/HTML/src/main/flex/org/apache/flex/events/ItemRemovedEvent.as b/frameworks/projects/HTML/src/main/flex/org/apache/flex/events/ItemRemovedEvent.as new file mode 100644 index 0000000..d638084 --- /dev/null +++ b/frameworks/projects/HTML/src/main/flex/org/apache/flex/events/ItemRemovedEvent.as @@ -0,0 +1,88 @@ +//////////////////////////////////////////////////////////////////////////////// +// + +// 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.events +{ + + import org.apache.flex.events.CustomEvent; + + /** + * The ItemRemovedEvent is dispatched by IItemRendererParent objects whenenver an + * itemRenderer is removed. + * + * @langversion 3.0 + * @playerversion Flash 10.2 + * @playerversion AIR 2.6 + * @productversion FlexJS 0.0 + */ + public class ItemRemovedEvent extends CustomEvent + { + + //-------------------------------------- + // Constructor + //-------------------------------------- + + /** + * Constructor. + * + * @param type The name of the event. + * @param bubbles Whether the event bubbles. + * @param cancelable Whether the event can be canceled. + * + * @langversion 3.0 + * @playerversion Flash 10.2 + * @playerversion AIR 2.6 + * @productversion FlexJS 0.0 + */ + public function ItemRemovedEvent(type:String, bubbles:Boolean=false, cancelable:Boolean=false) + { + COMPILE::AS3 + { + super(type, bubbles, cancelable); + } + COMPILE::JS + { + super(type); + } + + item = null; + } + + /** + * The item being removed. + * + * @export + * @langversion 3.0 + * @playerversion Flash 10.2 + * @playerversion AIR 2.6 + * @productversion FlexJS 0.0 + */ + public var item:Object; + + /** + * @private + */ + override public function cloneEvent():org.apache.flex.events.Event + { + var newEvent:ItemRemovedEvent = new ItemRemovedEvent(type); + newEvent.item = item; + return newEvent; + } + } +}
