Thanks, Carlos. ________________________________ From: [email protected] <[email protected]> Sent: Sunday, November 10, 2019 6:02:35 PM To: [email protected] <[email protected]> Subject: [royale-asjs] branch develop updated: color-piker-example: add license headers to avoid broken build
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 f17a8ce color-piker-example: add license headers to avoid broken build f17a8ce is described below commit f17a8ceb138221cc6d8dadf37683520ed21b6f73 Author: Carlos Rovira <[email protected]> AuthorDate: Sun Nov 10 17:02:22 2019 +0100 color-piker-example: add license headers to avoid broken build --- .../src/main/royale/ColorPicker.mxml | 18 ++++++++++++++++++ .../src/main/royale/ColorPickerPopUpWithPalette.as | 19 ++++++++++++++++++- 2 files changed, 36 insertions(+), 1 deletion(-) diff --git a/examples/royale/ColorPickerExample/src/main/royale/ColorPicker.mxml b/examples/royale/ColorPickerExample/src/main/royale/ColorPicker.mxml index 0fa702d..8a43451 100644 --- a/examples/royale/ColorPickerExample/src/main/royale/ColorPicker.mxml +++ b/examples/royale/ColorPickerExample/src/main/royale/ColorPicker.mxml @@ -1,4 +1,22 @@ <?xml version="1.0" encoding="utf-8"?> +<!-- + + 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. + +--> <js:Application xmlns:fx="http://ns.adobe.com/mxml/2009" applicationComplete="application1_applicationCompleteHandler(event)" xmlns:js="library://ns.apache.org/royale/basic" diff --git a/examples/royale/ColorPickerExample/src/main/royale/ColorPickerPopUpWithPalette.as b/examples/royale/ColorPickerExample/src/main/royale/ColorPickerPopUpWithPalette.as index 5d1db54..567c9aa 100644 --- a/examples/royale/ColorPickerExample/src/main/royale/ColorPickerPopUpWithPalette.as +++ b/examples/royale/ColorPickerExample/src/main/royale/ColorPickerPopUpWithPalette.as @@ -1,4 +1,21 @@ -package +//////////////////////////////////////////////////////////////////////////////// +// +// 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 { import org.apache.royale.events.Event; import org.apache.royale.events.IEventDispatcher;
