change License boilerplate
authorchanywa <cbible.kim@samsung.com>
Tue, 1 Nov 2016 11:59:10 +0000 (20:59 +0900)
committerchanywa <cbible.kim@samsung.com>
Tue, 1 Nov 2016 11:59:10 +0000 (20:59 +0900)
Change-Id: I117eec37cf5ca5a30c2ef559afa274eb40622bf4

14 files changed:
src/Tizen.Location/Interop/Interop.Libraries.cs [changed mode: 0644->0755]
src/Tizen.Location/Interop/Interop.Location.cs [changed mode: 0644->0755]
src/Tizen.Location/Tizen.Location/GpsSatellite.cs [changed mode: 0644->0755]
src/Tizen.Location/Tizen.Location/Location.cs [changed mode: 0644->0755]
src/Tizen.Location/Tizen.Location/LocationBoundary.cs [changed mode: 0644->0755]
src/Tizen.Location/Tizen.Location/LocationChangedEventArgs.cs [changed mode: 0644->0755]
src/Tizen.Location/Tizen.Location/LocationError.cs [changed mode: 0644->0755]
src/Tizen.Location/Tizen.Location/Locator.cs [changed mode: 0644->0755]
src/Tizen.Location/Tizen.Location/LocatorEnumerations.cs [changed mode: 0644->0755]
src/Tizen.Location/Tizen.Location/LocatorHelper.cs [changed mode: 0644->0755]
src/Tizen.Location/Tizen.Location/SatelliteStatusChangedEventArgs.cs [changed mode: 0644->0755]
src/Tizen.Location/Tizen.Location/ServiceStateChangedEventArgs.cs [changed mode: 0644->0755]
src/Tizen.Location/Tizen.Location/SettingChangedEventArgs.cs [changed mode: 0644->0755]
src/Tizen.Location/Tizen.Location/ZoneChangedEventArgs.cs [changed mode: 0644->0755]

old mode 100644 (file)
new mode 100755 (executable)
index df6e61f..211595b
@@ -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
 {
old mode 100644 (file)
new mode 100755 (executable)
index fe72212..44ef576
@@ -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;
@@ -51,13 +59,13 @@ internal static partial class Interop
         public static extern int RemoveBoundary(IntPtr managerHandle, IntPtr boundsHandle);
     }
 
-    internal static partial class LocatorHelper\r
-    {\r
+    internal static partial class LocatorHelper
+    {
         [DllImport(Libraries.Location, EntryPoint = "location_manager_is_enabled_method")]
         public static extern int IsEnabled(int locationMethod, out bool status);
 
         [DllImport(Libraries.Location, EntryPoint = "location_manager_is_supported_method")]
-        public static extern bool IsSupported(int locationMethod);\r
+        public static extern bool IsSupported(int locationMethod);
     }
 
     internal static partial class Location
old mode 100644 (file)
new mode 100755 (executable)
index 9225949..f3bc18d
@@ -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;
old mode 100644 (file)
new mode 100755 (executable)
index 4f983b1..eedd8a7
@@ -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;
old mode 100644 (file)
new mode 100755 (executable)
index be95708..5e5aca5
@@ -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;
old mode 100644 (file)
new mode 100755 (executable)
index d4ec4e9..08c2295
@@ -1,16 +1,23 @@
-// 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.\r
-\r
-using System;\r
-\r
-\r
+/*
+ * 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.Location
-{\r
+{
     /// <summary>
     /// An extended EventArgs class which contains the changed location information.
     /// </summary>
@@ -30,5 +37,5 @@ namespace Tizen.Location
         /// Get the Location Update information.
         /// </summary>
         public Location Location { get; private set; }
-    }\r
-}\r
+    }
+}
old mode 100644 (file)
new mode 100755 (executable)
index 91bb7ae..d2a55b4
@@ -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 Tizen.Internals.Errors;
old mode 100644 (file)
new mode 100755 (executable)
index c92fae5..116e54f
@@ -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;
old mode 100644 (file)
new mode 100755 (executable)
index 9ec1c85..5ab9e1d
@@ -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;
 
old mode 100644 (file)
new mode 100755 (executable)
index 8483f1d..61e3104
@@ -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;
 
@@ -34,10 +42,10 @@ namespace Tizen.Location
             Log.Info(Globals.LogTag, "Checking if the Location Manager type is Enabled");
             bool initStatus;
             int ret = Interop.LocatorHelper.IsEnabled((int)locationType, out initStatus);
-            if (((LocationError)ret != LocationError.None))\r
-            {\r
-                Log.Error(Globals.LogTag, "Error Checking the Location Manager type is Enabled," + (LocationError)ret);\r
-                LocationErrorFactory.ThrowLocationException(ret);\r
+            if (((LocationError)ret != LocationError.None))
+            {
+                Log.Error(Globals.LogTag, "Error Checking the Location Manager type is Enabled," + (LocationError)ret);
+                LocationErrorFactory.ThrowLocationException(ret);
             }
             return initStatus;
         }
old mode 100644 (file)
new mode 100755 (executable)
index 1374084..3d82a04
@@ -1,16 +1,23 @@
-// 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.\r
-\r
-using System;\r
-\r
-\r
-namespace Tizen.Location\r
-{\r
+/*
+ * 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.Location
+{
     public class SatelliteStatusChangedEventArgs : EventArgs
     {
         /// <summary>
@@ -40,5 +47,5 @@ namespace Tizen.Location
         /// Get the timestamp.
         /// </summary>
         public DateTime TimeStamp { get; private set; }
-    }\r
-}\r
+    }
+}
old mode 100644 (file)
new mode 100755 (executable)
index 228cf08..f66e6c6
@@ -1,16 +1,23 @@
-// 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.\r
-\r
-using System;\r
-\r
-\r
-namespace Tizen.Location\r
-{\r
+/*
+ * 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.Location
+{
     /// <summary>
     /// An extended EventArgs class which contains the changed location service state.
     /// </summary>
@@ -30,5 +37,5 @@ namespace Tizen.Location
         /// Get the Service state.
         /// </summary>
         public ServiceState ServiceState { get; private set; }
-    }\r
-}\r
+    }
+}
old mode 100644 (file)
new mode 100755 (executable)
index 07208d5..f7376af
@@ -1,16 +1,23 @@
-// 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.\r
-\r
-using System;\r
-\r
-\r
-namespace Tizen.Location\r
-{\r
+/*
+ * 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.Location
+{
     public class SettingChangedEventArgs : EventArgs
     {
         /// <summary>
@@ -33,5 +40,5 @@ namespace Tizen.Location
         /// Method to get the setting value changed.
         /// </summary>
         public bool IsEnabled { get; private set; }
-    }\r
-}\r
+    }
+}
old mode 100644 (file)
new mode 100755 (executable)
index 4b7db7e..8ce0842
@@ -1,14 +1,21 @@
-// 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;
 
-
 namespace Tizen.Location
 {
     public class ZoneChangedEventArgs : EventArgs