From 189aa60f6a0697aa4a511c85fe48ed3fb4fa4f34 Mon Sep 17 00:00:00 2001 From: "pr.jung" Date: Mon, 31 Oct 2016 16:38:48 +0900 Subject: [PATCH] Add license statement Change-Id: Iecb4120fc7c4f741b976bfe59ae10bf7a12bf44d Signed-off-by: pr.jung --- src/Tizen.System/Device/Battery.cs | 16 +++++++++++++++ src/Tizen.System/Device/DeviceEventArgs.cs | 16 +++++++++++++++ src/Tizen.System/Device/DeviceExceptionFactory.cs | 18 +++++++++++++++- src/Tizen.System/Device/Display.cs | 16 +++++++++++++++ src/Tizen.System/Device/Haptic.cs | 16 +++++++++++++++ src/Tizen.System/Device/IR.cs | 16 +++++++++++++++ src/Tizen.System/Device/Led.cs | 16 +++++++++++++++ src/Tizen.System/Device/Power.cs | 16 +++++++++++++++ src/Tizen.System/Feedback/Feedback.cs | 16 +++++++++++++++ src/Tizen.System/Feedback/FeedbackPattern.cs | 22 +++++++++++++------- src/Tizen.System/Feedback/FeedbackType.cs | 22 +++++++++++++------- src/Tizen.System/Interop/Interop.Device.cs | 23 +++++++++++++-------- src/Tizen.System/Interop/Interop.Feedback.cs | 22 +++++++++++++------- src/Tizen.System/Interop/Interop.Libraries.cs | 22 +++++++++++++------- src/Tizen.System/Interop/Interop.RuntimeInfo.cs | 23 +++++++++++++-------- src/Tizen.System/Interop/Interop.Storage.cs | 22 +++++++++++++------- src/Tizen.System/Interop/Interop.SystemInfo.cs | 22 +++++++++++++------- src/Tizen.System/Properties/AssemblyInfo.cs | 16 +++++++++++++++ src/Tizen.System/RuntimeInfo/CpuUsage.cs | 23 +++++++++++++-------- src/Tizen.System/RuntimeInfo/Enumerations.cs | 23 +++++++++++++-------- src/Tizen.System/RuntimeInfo/MemoryInformation.cs | 23 +++++++++++++-------- .../RuntimeInfo/RuntimeInfoErrorFactory.cs | 18 +++++++++++++++- src/Tizen.System/RuntimeInfo/RuntimeInformation.cs | 23 +++++++++++++-------- .../RuntimeKeyStatusChangedEventArgs.cs | 23 +++++++++++++-------- src/Tizen.System/Storage/DirectoryType.cs | 24 ++++++++++++++-------- src/Tizen.System/Storage/Storage.cs | 22 +++++++++++++------- src/Tizen.System/Storage/StorageArea.cs | 24 ++++++++++++++-------- src/Tizen.System/Storage/StorageManager.cs | 22 +++++++++++++------- src/Tizen.System/Storage/StorageState.cs | 24 ++++++++++++++-------- src/Tizen.System/SystemInfo/SystemInfo.cs | 22 +++++++++++++------- 30 files changed, 466 insertions(+), 145 deletions(-) diff --git a/src/Tizen.System/Device/Battery.cs b/src/Tizen.System/Device/Battery.cs index bf69f0e..ebfb592 100755 --- a/src/Tizen.System/Device/Battery.cs +++ b/src/Tizen.System/Device/Battery.cs @@ -1,3 +1,19 @@ +/* +* Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved +* +* Licensed 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. +*/ + using System; namespace Tizen.System diff --git a/src/Tizen.System/Device/DeviceEventArgs.cs b/src/Tizen.System/Device/DeviceEventArgs.cs index f641a53..4b49039 100644 --- a/src/Tizen.System/Device/DeviceEventArgs.cs +++ b/src/Tizen.System/Device/DeviceEventArgs.cs @@ -1,3 +1,19 @@ +/* +* Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved +* +* Licensed 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. +*/ + using System; namespace Tizen.System diff --git a/src/Tizen.System/Device/DeviceExceptionFactory.cs b/src/Tizen.System/Device/DeviceExceptionFactory.cs index 30a1aab..96c1eeb 100644 --- a/src/Tizen.System/Device/DeviceExceptionFactory.cs +++ b/src/Tizen.System/Device/DeviceExceptionFactory.cs @@ -1,4 +1,20 @@ -using System; +/* +* Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved +* +* Licensed 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. +*/ + +using System; using System.Collections.Generic; using System.Linq; using System.Text; diff --git a/src/Tizen.System/Device/Display.cs b/src/Tizen.System/Device/Display.cs index c1ec7d9..654d8be 100644 --- a/src/Tizen.System/Device/Display.cs +++ b/src/Tizen.System/Device/Display.cs @@ -1,3 +1,19 @@ +/* +* Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved +* +* Licensed 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. +*/ + using System; using System.Collections.Generic; namespace Tizen.System diff --git a/src/Tizen.System/Device/Haptic.cs b/src/Tizen.System/Device/Haptic.cs index 1612f4e..74dd266 100644 --- a/src/Tizen.System/Device/Haptic.cs +++ b/src/Tizen.System/Device/Haptic.cs @@ -1,3 +1,19 @@ +/* +* Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved +* +* Licensed 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. +*/ + using System; using System.Collections.Generic; namespace Tizen.System diff --git a/src/Tizen.System/Device/IR.cs b/src/Tizen.System/Device/IR.cs index 8bac054..b3848fb 100644 --- a/src/Tizen.System/Device/IR.cs +++ b/src/Tizen.System/Device/IR.cs @@ -1,3 +1,19 @@ +/* +* Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved +* +* Licensed 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. +*/ + using System; using System.Collections.Generic; using System.Linq; diff --git a/src/Tizen.System/Device/Led.cs b/src/Tizen.System/Device/Led.cs index c948b83..26181b0 100644 --- a/src/Tizen.System/Device/Led.cs +++ b/src/Tizen.System/Device/Led.cs @@ -1,3 +1,19 @@ +/* +* Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved +* +* Licensed 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. +*/ + using System; using Tizen.Common; diff --git a/src/Tizen.System/Device/Power.cs b/src/Tizen.System/Device/Power.cs index c891f69..1d4ca9b 100644 --- a/src/Tizen.System/Device/Power.cs +++ b/src/Tizen.System/Device/Power.cs @@ -1,3 +1,19 @@ +/* +* Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved +* +* Licensed 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. +*/ + using System; namespace Tizen.System diff --git a/src/Tizen.System/Feedback/Feedback.cs b/src/Tizen.System/Feedback/Feedback.cs index 1482090..2d85a5c 100644 --- a/src/Tizen.System/Feedback/Feedback.cs +++ b/src/Tizen.System/Feedback/Feedback.cs @@ -1,3 +1,19 @@ +/* +* Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved +* +* Licensed 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. +*/ + using System; using System.Collections.Generic; diff --git a/src/Tizen.System/Feedback/FeedbackPattern.cs b/src/Tizen.System/Feedback/FeedbackPattern.cs index 1a4d4ad..2ebc82f 100644 --- a/src/Tizen.System/Feedback/FeedbackPattern.cs +++ b/src/Tizen.System/Feedback/FeedbackPattern.cs @@ -1,10 +1,18 @@ -// Copyright 2016 by Samsung Electronics, Inc., -// -// This software is the confidential and proprietary information -// of Samsung Electronics, Inc. ("Confidential Information"). You -// shall not disclose such Confidential Information and shall use -// it only in accordance with the terms of the license agreement -// you entered into with Samsung. +/* +* Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved +* +* Licensed 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. +*/ namespace Tizen.System { diff --git a/src/Tizen.System/Feedback/FeedbackType.cs b/src/Tizen.System/Feedback/FeedbackType.cs index 8bee119..c833d97 100644 --- a/src/Tizen.System/Feedback/FeedbackType.cs +++ b/src/Tizen.System/Feedback/FeedbackType.cs @@ -1,10 +1,18 @@ -// Copyright 2016 by Samsung Electronics, Inc., -// -// This software is the confidential and proprietary information -// of Samsung Electronics, Inc. ("Confidential Information"). You -// shall not disclose such Confidential Information and shall use -// it only in accordance with the terms of the license agreement -// you entered into with Samsung. +/* +* Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved +* +* Licensed 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. +*/ namespace Tizen.System { diff --git a/src/Tizen.System/Interop/Interop.Device.cs b/src/Tizen.System/Interop/Interop.Device.cs index efb2e94..6824092 100644 --- a/src/Tizen.System/Interop/Interop.Device.cs +++ b/src/Tizen.System/Interop/Interop.Device.cs @@ -1,11 +1,18 @@ -/// Copyright 2016 by Samsung Electronics, Inc., -/// -/// This software is the confidential and proprietary information -/// of Samsung Electronics, Inc. ("Confidential Information"). You -/// shall not disclose such Confidential Information and shall use -/// it only in accordance with the terms of the license agreement -/// you entered into with Samsung. - +/* +* Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved +* +* Licensed 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. +*/ using System; using System.Runtime.InteropServices; diff --git a/src/Tizen.System/Interop/Interop.Feedback.cs b/src/Tizen.System/Interop/Interop.Feedback.cs index 7e87c6d..6b3e572 100644 --- a/src/Tizen.System/Interop/Interop.Feedback.cs +++ b/src/Tizen.System/Interop/Interop.Feedback.cs @@ -1,10 +1,18 @@ -// Copyright 2016 by Samsung Electronics, Inc., -// -// This software is the confidential and proprietary information -// of Samsung Electronics, Inc. ("Confidential Information"). You -// shall not disclose such Confidential Information and shall use -// it only in accordance with the terms of the license agreement -// you entered into with Samsung. +/* +* Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved +* +* Licensed 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. +*/ using System; using System.Runtime.InteropServices; diff --git a/src/Tizen.System/Interop/Interop.Libraries.cs b/src/Tizen.System/Interop/Interop.Libraries.cs index 6e4e26f..e4cb086 100644 --- a/src/Tizen.System/Interop/Interop.Libraries.cs +++ b/src/Tizen.System/Interop/Interop.Libraries.cs @@ -1,10 +1,18 @@ -// Copyright 2016 by Samsung Electronics, Inc., -// -// This software is the confidential and proprietary information -// of Samsung Electronics, Inc. ("Confidential Information"). You -// shall not disclose such Confidential Information and shall use -// it only in accordance with the terms of the license agreement -// you entered into with Samsung. +/* +* Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved +* +* Licensed 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. +*/ internal static partial class Interop { diff --git a/src/Tizen.System/Interop/Interop.RuntimeInfo.cs b/src/Tizen.System/Interop/Interop.RuntimeInfo.cs index 73ee692..21ab05e 100644 --- a/src/Tizen.System/Interop/Interop.RuntimeInfo.cs +++ b/src/Tizen.System/Interop/Interop.RuntimeInfo.cs @@ -1,11 +1,18 @@ -/// Copyright 2016 by Samsung Electronics, Inc., -/// -/// This software is the confidential and proprietary information -/// of Samsung Electronics, Inc. ("Confidential Information"). You -/// shall not disclose such Confidential Information and shall use -/// it only in accordance with the terms of the license agreement -/// you entered into with Samsung. - +/* +* Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved +* +* Licensed 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. +*/ using System; using System.Runtime.InteropServices; diff --git a/src/Tizen.System/Interop/Interop.Storage.cs b/src/Tizen.System/Interop/Interop.Storage.cs index a61688b..5f04e08 100644 --- a/src/Tizen.System/Interop/Interop.Storage.cs +++ b/src/Tizen.System/Interop/Interop.Storage.cs @@ -1,10 +1,18 @@ -// Copyright 2016 by Samsung Electronics, Inc., -// -// This software is the confidential and proprietary information -// of Samsung Electronics, Inc. ("Confidential Information"). You -// shall not disclose such Confidential Information and shall use -// it only in accordance with the terms of the license agreement -// you entered into with Samsung. +/* +* Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved +* +* Licensed 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. +*/ using System; using System.Runtime.InteropServices; diff --git a/src/Tizen.System/Interop/Interop.SystemInfo.cs b/src/Tizen.System/Interop/Interop.SystemInfo.cs index 8b2bb4b..de7282e 100644 --- a/src/Tizen.System/Interop/Interop.SystemInfo.cs +++ b/src/Tizen.System/Interop/Interop.SystemInfo.cs @@ -1,10 +1,18 @@ -// Copyright 2016 by Samsung Electronics, Inc., -// -// This software is the confidential and proprietary information -// of Samsung Electronics, Inc. ("Confidential Information"). You -// shall not disclose such Confidential Information and shall use -// it only in accordance with the terms of the license agreement -// you entered into with Samsung. +/* +* Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved +* +* Licensed 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. +*/ using System; using System.Runtime.InteropServices; diff --git a/src/Tizen.System/Properties/AssemblyInfo.cs b/src/Tizen.System/Properties/AssemblyInfo.cs index 489d73e..52c0635 100755 --- a/src/Tizen.System/Properties/AssemblyInfo.cs +++ b/src/Tizen.System/Properties/AssemblyInfo.cs @@ -1,3 +1,19 @@ +/* +* Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved +* +* Licensed 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. +*/ + using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; diff --git a/src/Tizen.System/RuntimeInfo/CpuUsage.cs b/src/Tizen.System/RuntimeInfo/CpuUsage.cs index 0775491..e3b28d8 100644 --- a/src/Tizen.System/RuntimeInfo/CpuUsage.cs +++ b/src/Tizen.System/RuntimeInfo/CpuUsage.cs @@ -1,11 +1,18 @@ -/// Copyright 2016 by Samsung Electronics, Inc., -/// -/// This software is the confidential and proprietary information -/// of Samsung Electronics, Inc. ("Confidential Information"). You -/// shall not disclose such Confidential Information and shall use -/// it only in accordance with the terms of the license agreement -/// you entered into with Samsung. - +/* +* Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved +* +* Licensed 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. +*/ using System; using System.Collections.Generic; diff --git a/src/Tizen.System/RuntimeInfo/Enumerations.cs b/src/Tizen.System/RuntimeInfo/Enumerations.cs index d1f0702..1e96bc5 100644 --- a/src/Tizen.System/RuntimeInfo/Enumerations.cs +++ b/src/Tizen.System/RuntimeInfo/Enumerations.cs @@ -1,11 +1,18 @@ -/// Copyright 2016 by Samsung Electronics, Inc., -/// -/// This software is the confidential and proprietary information -/// of Samsung Electronics, Inc. ("Confidential Information"). You -/// shall not disclose such Confidential Information and shall use -/// it only in accordance with the terms of the license agreement -/// you entered into with Samsung. - +/* +* Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved +* +* Licensed 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. +*/ using System; diff --git a/src/Tizen.System/RuntimeInfo/MemoryInformation.cs b/src/Tizen.System/RuntimeInfo/MemoryInformation.cs index 3554700..1490f0d 100644 --- a/src/Tizen.System/RuntimeInfo/MemoryInformation.cs +++ b/src/Tizen.System/RuntimeInfo/MemoryInformation.cs @@ -1,11 +1,18 @@ -/// Copyright 2016 by Samsung Electronics, Inc., -/// -/// This software is the confidential and proprietary information -/// of Samsung Electronics, Inc. ("Confidential Information"). You -/// shall not disclose such Confidential Information and shall use -/// it only in accordance with the terms of the license agreement -/// you entered into with Samsung. - +/* +* Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved +* +* Licensed 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. +*/ using System; using System.Collections.Generic; diff --git a/src/Tizen.System/RuntimeInfo/RuntimeInfoErrorFactory.cs b/src/Tizen.System/RuntimeInfo/RuntimeInfoErrorFactory.cs index 860e876..c21d3ec 100755 --- a/src/Tizen.System/RuntimeInfo/RuntimeInfoErrorFactory.cs +++ b/src/Tizen.System/RuntimeInfo/RuntimeInfoErrorFactory.cs @@ -1,4 +1,20 @@ -using System; +/* +* Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved +* +* Licensed 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. +*/ + +using System; using Tizen.Internals.Errors; namespace Tizen.System diff --git a/src/Tizen.System/RuntimeInfo/RuntimeInformation.cs b/src/Tizen.System/RuntimeInfo/RuntimeInformation.cs index 9edefbb..83334f7 100644 --- a/src/Tizen.System/RuntimeInfo/RuntimeInformation.cs +++ b/src/Tizen.System/RuntimeInfo/RuntimeInformation.cs @@ -1,11 +1,18 @@ -/// Copyright 2016 by Samsung Electronics, Inc., -/// -/// This software is the confidential and proprietary information -/// of Samsung Electronics, Inc. ("Confidential Information"). You -/// shall not disclose such Confidential Information and shall use -/// it only in accordance with the terms of the license agreement -/// you entered into with Samsung. - +/* +* Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved +* +* Licensed 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. +*/ using System; using System.Collections.Generic; diff --git a/src/Tizen.System/RuntimeInfo/RuntimeKeyStatusChangedEventArgs.cs b/src/Tizen.System/RuntimeInfo/RuntimeKeyStatusChangedEventArgs.cs index f567252..0e1c3aa 100755 --- a/src/Tizen.System/RuntimeInfo/RuntimeKeyStatusChangedEventArgs.cs +++ b/src/Tizen.System/RuntimeInfo/RuntimeKeyStatusChangedEventArgs.cs @@ -1,11 +1,18 @@ -/// Copyright 2016 by Samsung Electronics, Inc., -/// -/// This software is the confidential and proprietary information -/// of Samsung Electronics, Inc. ("Confidential Information"). You -/// shall not disclose such Confidential Information and shall use -/// it only in accordance with the terms of the license agreement -/// you entered into with Samsung. - +/* +* Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved +* +* Licensed 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. +*/ using System; using System.Collections.Generic; diff --git a/src/Tizen.System/Storage/DirectoryType.cs b/src/Tizen.System/Storage/DirectoryType.cs index b764fbf..3996fee 100644 --- a/src/Tizen.System/Storage/DirectoryType.cs +++ b/src/Tizen.System/Storage/DirectoryType.cs @@ -1,10 +1,18 @@ -// Copyright 2016 by Samsung Electronics, Inc., -// -// This software is the confidential and proprietary information -// of Samsung Electronics, Inc. ("Confidential Information"). You -// shall not disclose such Confidential Information and shall use -// it only in accordance with the terms of the license agreement -// you entered into with Samsung. +/* +* Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved +* +* Licensed 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. +*/ namespace Tizen.System { @@ -50,4 +58,4 @@ namespace Tizen.System /// Ringtones = Interop.Storage.DirectoryType.Ringtones, } -} \ No newline at end of file +} diff --git a/src/Tizen.System/Storage/Storage.cs b/src/Tizen.System/Storage/Storage.cs index f4eaabc..dd5d096 100644 --- a/src/Tizen.System/Storage/Storage.cs +++ b/src/Tizen.System/Storage/Storage.cs @@ -1,10 +1,18 @@ -// Copyright 2016 by Samsung Electronics, Inc., -// -// This software is the confidential and proprietary information -// of Samsung Electronics, Inc. ("Confidential Information"). You -// shall not disclose such Confidential Information and shall use -// it only in accordance with the terms of the license agreement -// you entered into with Samsung. +/* +* Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved +* +* Licensed 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. +*/ using System; diff --git a/src/Tizen.System/Storage/StorageArea.cs b/src/Tizen.System/Storage/StorageArea.cs index ab922a5..6ec0e0d 100644 --- a/src/Tizen.System/Storage/StorageArea.cs +++ b/src/Tizen.System/Storage/StorageArea.cs @@ -1,10 +1,18 @@ -// Copyright 2016 by Samsung Electronics, Inc., -// -// This software is the confidential and proprietary information -// of Samsung Electronics, Inc. ("Confidential Information"). You -// shall not disclose such Confidential Information and shall use -// it only in accordance with the terms of the license agreement -// you entered into with Samsung. +/* +* Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved +* +* Licensed 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. +*/ namespace Tizen.System { @@ -22,4 +30,4 @@ namespace Tizen.System /// External = Interop.Storage.StorageArea.External, } -} \ No newline at end of file +} diff --git a/src/Tizen.System/Storage/StorageManager.cs b/src/Tizen.System/Storage/StorageManager.cs index b9a3bb2..83bd89e 100644 --- a/src/Tizen.System/Storage/StorageManager.cs +++ b/src/Tizen.System/Storage/StorageManager.cs @@ -1,10 +1,18 @@ -// Copyright 2016 by Samsung Electronics, Inc., -// -// This software is the confidential and proprietary information -// of Samsung Electronics, Inc. ("Confidential Information"). You -// shall not disclose such Confidential Information and shall use -// it only in accordance with the terms of the license agreement -// you entered into with Samsung. +/* +* Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved +* +* Licensed 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. +*/ using System; using System.Collections.Generic; diff --git a/src/Tizen.System/Storage/StorageState.cs b/src/Tizen.System/Storage/StorageState.cs index cee20bb..368cfbd 100644 --- a/src/Tizen.System/Storage/StorageState.cs +++ b/src/Tizen.System/Storage/StorageState.cs @@ -1,10 +1,18 @@ -// Copyright 2016 by Samsung Electronics, Inc., -// -// This software is the confidential and proprietary information -// of Samsung Electronics, Inc. ("Confidential Information"). You -// shall not disclose such Confidential Information and shall use -// it only in accordance with the terms of the license agreement -// you entered into with Samsung. +/* +* Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved +* +* Licensed 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. +*/ namespace Tizen.System { @@ -30,4 +38,4 @@ namespace Tizen.System /// MountedReadOnly = Interop.Storage.StorageState.MountedReadOnly, } -} \ No newline at end of file +} diff --git a/src/Tizen.System/SystemInfo/SystemInfo.cs b/src/Tizen.System/SystemInfo/SystemInfo.cs index 7649d83..4d06261 100644 --- a/src/Tizen.System/SystemInfo/SystemInfo.cs +++ b/src/Tizen.System/SystemInfo/SystemInfo.cs @@ -1,10 +1,18 @@ -// Copyright 2016 by Samsung Electronics, Inc., -// -// This software is the confidential and proprietary information -// of Samsung Electronics, Inc. ("Confidential Information"). You -// shall not disclose such Confidential Information and shall use -// it only in accordance with the terms of the license agreement -// you entered into with Samsung. +/* +* Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved +* +* Licensed 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. +*/ using System; -- 2.7.4