From 1e5488e40502173708a9034d8ef847032e53384a Mon Sep 17 00:00:00 2001 From: Chuhaa Date: Wed, 21 Jul 2021 09:38:05 +0530 Subject: [PATCH] Add licence in samples --- samples/add_chart.bal | 16 ++++++++++++++++ samples/add_table.bal | 16 ++++++++++++++++ samples/add_worksheet.bal | 16 ++++++++++++++++ samples/calculate_workbook_application.bal | 16 ++++++++++++++++ samples/create_column.bal | 16 ++++++++++++++++ samples/create_row.bal | 16 ++++++++++++++++ samples/delete_chart.bal | 16 ++++++++++++++++ samples/delete_column.bal | 16 ++++++++++++++++ samples/delete_row.bal | 16 ++++++++++++++++ samples/delete_table.bal | 16 ++++++++++++++++ samples/delete_worksheet.bal | 16 ++++++++++++++++ samples/get_cell.bal | 16 ++++++++++++++++ samples/get_chart.bal | 16 ++++++++++++++++ samples/get_chart_image .bal | 16 ++++++++++++++++ samples/get_table.bal | 16 ++++++++++++++++ samples/get_workbook_application.bal | 16 ++++++++++++++++ samples/get_worksheet.bal | 16 ++++++++++++++++ samples/list_charts.bal | 16 ++++++++++++++++ samples/list_columns.bal | 16 ++++++++++++++++ samples/list_rows.bal | 16 ++++++++++++++++ samples/list_tables.bal | 16 ++++++++++++++++ samples/list_worksheets.bal | 16 ++++++++++++++++ samples/reset_chart_image.bal | 16 ++++++++++++++++ samples/set_chart_position.bal | 16 ++++++++++++++++ samples/update_chart.bal | 16 ++++++++++++++++ samples/update_column.bal | 16 ++++++++++++++++ samples/update_row.bal | 16 ++++++++++++++++ samples/update_table.bal | 16 ++++++++++++++++ samples/update_worksheet.bal | 16 ++++++++++++++++ 29 files changed, 464 insertions(+) diff --git a/samples/add_chart.bal b/samples/add_chart.bal index cc397ea..4091fce 100644 --- a/samples/add_chart.bal +++ b/samples/add_chart.bal @@ -1,3 +1,19 @@ +// Copyright (c) 2021, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. +// +// WSO2 Inc. 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. + import ballerina/log; import ballerinax/microsoft.excel; diff --git a/samples/add_table.bal b/samples/add_table.bal index 6bf32ca..4710aae 100644 --- a/samples/add_table.bal +++ b/samples/add_table.bal @@ -1,3 +1,19 @@ +// Copyright (c) 2021, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. +// +// WSO2 Inc. 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. + import ballerina/log; import ballerinax/microsoft.excel; diff --git a/samples/add_worksheet.bal b/samples/add_worksheet.bal index fa7f066..f2dad32 100644 --- a/samples/add_worksheet.bal +++ b/samples/add_worksheet.bal @@ -1,3 +1,19 @@ +// Copyright (c) 2021, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. +// +// WSO2 Inc. 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. + import ballerina/log; import ballerinax/microsoft.excel; diff --git a/samples/calculate_workbook_application.bal b/samples/calculate_workbook_application.bal index 9e7f1df..1ae5bc9 100644 --- a/samples/calculate_workbook_application.bal +++ b/samples/calculate_workbook_application.bal @@ -1,3 +1,19 @@ +// Copyright (c) 2021, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. +// +// WSO2 Inc. 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. + import ballerina/log; import ballerinax/microsoft.excel; diff --git a/samples/create_column.bal b/samples/create_column.bal index 69006f7..904e009 100644 --- a/samples/create_column.bal +++ b/samples/create_column.bal @@ -1,3 +1,19 @@ +// Copyright (c) 2021, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. +// +// WSO2 Inc. 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. + import ballerina/log; import ballerinax/microsoft.excel; diff --git a/samples/create_row.bal b/samples/create_row.bal index 34f92b8..d4304b0 100644 --- a/samples/create_row.bal +++ b/samples/create_row.bal @@ -1,3 +1,19 @@ +// Copyright (c) 2021, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. +// +// WSO2 Inc. 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. + import ballerina/log; import ballerinax/microsoft.excel; diff --git a/samples/delete_chart.bal b/samples/delete_chart.bal index 069ebdc..38eb0cb 100644 --- a/samples/delete_chart.bal +++ b/samples/delete_chart.bal @@ -1,3 +1,19 @@ +// Copyright (c) 2021, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. +// +// WSO2 Inc. 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. + import ballerina/log; import ballerinax/microsoft.excel; diff --git a/samples/delete_column.bal b/samples/delete_column.bal index 025f7c4..4d988ff 100644 --- a/samples/delete_column.bal +++ b/samples/delete_column.bal @@ -1,3 +1,19 @@ +// Copyright (c) 2021, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. +// +// WSO2 Inc. 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. + import ballerina/log; import ballerinax/microsoft.excel; diff --git a/samples/delete_row.bal b/samples/delete_row.bal index ccf1278..cd44729 100644 --- a/samples/delete_row.bal +++ b/samples/delete_row.bal @@ -1,3 +1,19 @@ +// Copyright (c) 2021, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. +// +// WSO2 Inc. 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. + import ballerina/log; import ballerinax/microsoft.excel; diff --git a/samples/delete_table.bal b/samples/delete_table.bal index c857ad7..60da34b 100644 --- a/samples/delete_table.bal +++ b/samples/delete_table.bal @@ -1,3 +1,19 @@ +// Copyright (c) 2021, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. +// +// WSO2 Inc. 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. + import ballerina/log; import ballerinax/microsoft.excel; diff --git a/samples/delete_worksheet.bal b/samples/delete_worksheet.bal index b7cfa63..b22454f 100644 --- a/samples/delete_worksheet.bal +++ b/samples/delete_worksheet.bal @@ -1,3 +1,19 @@ +// Copyright (c) 2021, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. +// +// WSO2 Inc. 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. + import ballerina/log; import ballerinax/microsoft.excel; diff --git a/samples/get_cell.bal b/samples/get_cell.bal index 4a5fc65..95e1dda 100644 --- a/samples/get_cell.bal +++ b/samples/get_cell.bal @@ -1,3 +1,19 @@ +// Copyright (c) 2021, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. +// +// WSO2 Inc. 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. + import ballerina/log; import ballerinax/microsoft.excel; diff --git a/samples/get_chart.bal b/samples/get_chart.bal index 2813090..2f9f64e 100644 --- a/samples/get_chart.bal +++ b/samples/get_chart.bal @@ -1,3 +1,19 @@ +// Copyright (c) 2021, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. +// +// WSO2 Inc. 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. + import ballerina/log; import ballerinax/microsoft.excel; diff --git a/samples/get_chart_image .bal b/samples/get_chart_image .bal index d254f0c..0c7aed6 100644 --- a/samples/get_chart_image .bal +++ b/samples/get_chart_image .bal @@ -1,3 +1,19 @@ +// Copyright (c) 2021, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. +// +// WSO2 Inc. 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. + import ballerina/log; import ballerinax/microsoft.excel; diff --git a/samples/get_table.bal b/samples/get_table.bal index a7c38a0..fa9ee17 100644 --- a/samples/get_table.bal +++ b/samples/get_table.bal @@ -1,3 +1,19 @@ +// Copyright (c) 2021, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. +// +// WSO2 Inc. 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. + import ballerina/log; import ballerinax/microsoft.excel; diff --git a/samples/get_workbook_application.bal b/samples/get_workbook_application.bal index d27ad45..232a7b5 100644 --- a/samples/get_workbook_application.bal +++ b/samples/get_workbook_application.bal @@ -1,3 +1,19 @@ +// Copyright (c) 2021, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. +// +// WSO2 Inc. 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. + import ballerina/log; import ballerinax/microsoft.excel; diff --git a/samples/get_worksheet.bal b/samples/get_worksheet.bal index c46efed..2d5f7bf 100644 --- a/samples/get_worksheet.bal +++ b/samples/get_worksheet.bal @@ -1,3 +1,19 @@ +// Copyright (c) 2021, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. +// +// WSO2 Inc. 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. + import ballerina/log; import ballerinax/microsoft.excel; diff --git a/samples/list_charts.bal b/samples/list_charts.bal index 158348a..571d98e 100644 --- a/samples/list_charts.bal +++ b/samples/list_charts.bal @@ -1,3 +1,19 @@ +// Copyright (c) 2021, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. +// +// WSO2 Inc. 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. + import ballerina/log; import ballerinax/microsoft.excel; diff --git a/samples/list_columns.bal b/samples/list_columns.bal index dd0cb08..0bbad3a 100644 --- a/samples/list_columns.bal +++ b/samples/list_columns.bal @@ -1,3 +1,19 @@ +// Copyright (c) 2021, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. +// +// WSO2 Inc. 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. + import ballerina/log; import ballerinax/microsoft.excel; diff --git a/samples/list_rows.bal b/samples/list_rows.bal index 9e84afc..5a87c1f 100644 --- a/samples/list_rows.bal +++ b/samples/list_rows.bal @@ -1,3 +1,19 @@ +// Copyright (c) 2021, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. +// +// WSO2 Inc. 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. + import ballerina/log; import ballerinax/microsoft.excel; diff --git a/samples/list_tables.bal b/samples/list_tables.bal index aa89a0e..7b70d9f 100644 --- a/samples/list_tables.bal +++ b/samples/list_tables.bal @@ -1,3 +1,19 @@ +// Copyright (c) 2021, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. +// +// WSO2 Inc. 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. + import ballerina/log; import ballerinax/microsoft.excel; diff --git a/samples/list_worksheets.bal b/samples/list_worksheets.bal index 9d9182e..cda3e73 100644 --- a/samples/list_worksheets.bal +++ b/samples/list_worksheets.bal @@ -1,3 +1,19 @@ +// Copyright (c) 2021, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. +// +// WSO2 Inc. 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. + import ballerina/log; import ballerinax/microsoft.excel; diff --git a/samples/reset_chart_image.bal b/samples/reset_chart_image.bal index edef39a..8a0829f 100644 --- a/samples/reset_chart_image.bal +++ b/samples/reset_chart_image.bal @@ -1,3 +1,19 @@ +// Copyright (c) 2021, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. +// +// WSO2 Inc. 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. + import ballerina/log; import ballerinax/microsoft.excel; diff --git a/samples/set_chart_position.bal b/samples/set_chart_position.bal index defa3f5..b15619b 100644 --- a/samples/set_chart_position.bal +++ b/samples/set_chart_position.bal @@ -1,3 +1,19 @@ +// Copyright (c) 2021, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. +// +// WSO2 Inc. 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. + import ballerina/log; import ballerinax/microsoft.excel; diff --git a/samples/update_chart.bal b/samples/update_chart.bal index 44c7ffa..a711226 100644 --- a/samples/update_chart.bal +++ b/samples/update_chart.bal @@ -1,3 +1,19 @@ +// Copyright (c) 2021, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. +// +// WSO2 Inc. 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. + import ballerina/log; import ballerinax/microsoft.excel; diff --git a/samples/update_column.bal b/samples/update_column.bal index 145734f..614f87d 100644 --- a/samples/update_column.bal +++ b/samples/update_column.bal @@ -1,3 +1,19 @@ +// Copyright (c) 2021, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. +// +// WSO2 Inc. 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. + import ballerina/log; import ballerinax/microsoft.excel; diff --git a/samples/update_row.bal b/samples/update_row.bal index dfb5197..7f22862 100644 --- a/samples/update_row.bal +++ b/samples/update_row.bal @@ -1,3 +1,19 @@ +// Copyright (c) 2021, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. +// +// WSO2 Inc. 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. + import ballerina/log; import ballerinax/microsoft.excel; diff --git a/samples/update_table.bal b/samples/update_table.bal index c776296..96a06f5 100644 --- a/samples/update_table.bal +++ b/samples/update_table.bal @@ -1,3 +1,19 @@ +// Copyright (c) 2021, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. +// +// WSO2 Inc. 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. + import ballerina/log; import ballerinax/microsoft.excel; diff --git a/samples/update_worksheet.bal b/samples/update_worksheet.bal index 3fe8310..0e21a64 100644 --- a/samples/update_worksheet.bal +++ b/samples/update_worksheet.bal @@ -1,3 +1,19 @@ +// Copyright (c) 2021, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. +// +// WSO2 Inc. 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. + import ballerina/log; import ballerinax/microsoft.excel;