From b785befb7eaed832e25314d10c3fdb397fd71d3c Mon Sep 17 00:00:00 2001 From: Grant Copley Date: Mon, 15 Jan 2024 02:59:49 -0600 Subject: [PATCH] Add Ortus copyright --- .../runtime/bifs/global/array/ArrayEvery.java | 14 ++++++++++++++ .../runtime/bifs/global/array/ArrayResize.java | 14 ++++++++++++++ .../runtime/bifs/global/array/ArrayReverse.java | 14 ++++++++++++++ .../runtime/bifs/global/array/ArraySet.java | 14 ++++++++++++++ .../runtime/bifs/global/array/ArrayShift.java | 14 ++++++++++++++ .../runtime/bifs/global/array/ArraySome.java | 14 ++++++++++++++ .../runtime/bifs/global/array/ArraySort.java | 14 ++++++++++++++ .../runtime/bifs/global/array/ArraySplice.java | 14 ++++++++++++++ .../runtime/bifs/global/array/ArrayToStruct.java | 14 ++++++++++++++ .../runtime/bifs/global/array/ArrayUnshift.java | 14 ++++++++++++++ .../bifs/global/conversion/ParseNumber.java | 14 ++++++++++++++ .../runtime/bifs/global/encryption/Hash.java | 14 ++++++++++++++ .../runtime/bifs/global/encryption/Hmac.java | 14 ++++++++++++++ .../runtime/bifs/global/io/DirectoryCopy.java | 14 ++++++++++++++ .../runtime/bifs/global/io/DirectoryCreate.java | 14 ++++++++++++++ .../runtime/bifs/global/io/DirectoryDelete.java | 14 ++++++++++++++ .../runtime/bifs/global/io/DirectoryExists.java | 14 ++++++++++++++ .../runtime/bifs/global/io/DirectoryList.java | 14 ++++++++++++++ .../runtime/bifs/global/io/DirectoryMove.java | 14 ++++++++++++++ .../runtime/bifs/global/io/FileAppend.java | 14 ++++++++++++++ .../boxlang/runtime/bifs/global/io/FileClose.java | 14 ++++++++++++++ .../boxlang/runtime/bifs/global/io/FileCopy.java | 14 ++++++++++++++ .../runtime/bifs/global/io/FileDelete.java | 14 ++++++++++++++ .../runtime/bifs/global/io/FileExists.java | 14 ++++++++++++++ .../runtime/bifs/global/io/FileGetMimeType.java | 14 ++++++++++++++ .../boxlang/runtime/bifs/global/io/FileInfo.java | 14 ++++++++++++++ .../boxlang/runtime/bifs/global/io/FileIsEOF.java | 14 ++++++++++++++ .../boxlang/runtime/bifs/global/io/FileMove.java | 14 ++++++++++++++ .../boxlang/runtime/bifs/global/io/FileOpen.java | 14 ++++++++++++++ .../boxlang/runtime/bifs/global/io/FileRead.java | 14 ++++++++++++++ .../runtime/bifs/global/io/FileReadLine.java | 14 ++++++++++++++ .../boxlang/runtime/bifs/global/io/FileSeek.java | 14 ++++++++++++++ .../runtime/bifs/global/io/FileSetAccessMode.java | 14 ++++++++++++++ .../runtime/bifs/global/io/FileSetAttribute.java | 14 ++++++++++++++ .../bifs/global/io/FileSetLastModified.java | 14 ++++++++++++++ .../boxlang/runtime/bifs/global/io/FileWrite.java | 14 ++++++++++++++ .../runtime/bifs/global/io/FileWriteLine.java | 14 ++++++++++++++ .../runtime/bifs/global/io/GetCanonicalPath.java | 14 ++++++++++++++ .../bifs/global/io/GetDirectoryFromPath.java | 14 ++++++++++++++ .../boxlang/runtime/bifs/global/math/Sin.java | 14 ++++++++++++++ .../boxlang/runtime/bifs/global/string/RTrim.java | 14 ++++++++++++++ .../boxlang/runtime/bifs/global/string/Trim.java | 14 ++++++++++++++ .../runtime/bifs/global/temporal/CreateDate.java | 14 ++++++++++++++ .../bifs/global/temporal/CreateDateTime.java | 14 ++++++++++++++ .../runtime/bifs/global/temporal/DateAdd.java | 14 ++++++++++++++ .../bifs/global/temporal/DateTimeFormat.java | 14 ++++++++++++++ .../boxlang/runtime/bifs/global/temporal/Now.java | 14 ++++++++++++++ .../bifs/global/temporal/ParseDateTime.java | 14 ++++++++++++++ .../runtime/bifs/global/temporal/TimeUnits.java | 14 ++++++++++++++ .../bifs/global/conversion/ParseNumberTest.java | 15 +++++++++++++++ .../boxlang/runtime/bifs/global/math/SinTest.java | 15 +++++++++++++++ .../runtime/bifs/global/string/RTrimTest.java | 15 +++++++++++++++ .../runtime/bifs/global/string/TrimTest.java | 15 +++++++++++++++ 53 files changed, 746 insertions(+) diff --git a/src/main/java/ortus/boxlang/runtime/bifs/global/array/ArrayEvery.java b/src/main/java/ortus/boxlang/runtime/bifs/global/array/ArrayEvery.java index bfb401093..345747a2d 100644 --- a/src/main/java/ortus/boxlang/runtime/bifs/global/array/ArrayEvery.java +++ b/src/main/java/ortus/boxlang/runtime/bifs/global/array/ArrayEvery.java @@ -1,3 +1,17 @@ +/** + * [BoxLang] + * + * Copyright [2023] [Ortus Solutions, Corp] + * + * 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. + */ package ortus.boxlang.runtime.bifs.global.array; import ortus.boxlang.runtime.bifs.BIF; diff --git a/src/main/java/ortus/boxlang/runtime/bifs/global/array/ArrayResize.java b/src/main/java/ortus/boxlang/runtime/bifs/global/array/ArrayResize.java index c6b872206..7d9faaf4e 100644 --- a/src/main/java/ortus/boxlang/runtime/bifs/global/array/ArrayResize.java +++ b/src/main/java/ortus/boxlang/runtime/bifs/global/array/ArrayResize.java @@ -1,3 +1,17 @@ +/** + * [BoxLang] + * + * Copyright [2023] [Ortus Solutions, Corp] + * + * 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. + */ package ortus.boxlang.runtime.bifs.global.array; diff --git a/src/main/java/ortus/boxlang/runtime/bifs/global/array/ArrayReverse.java b/src/main/java/ortus/boxlang/runtime/bifs/global/array/ArrayReverse.java index 7cbbb8584..adb332e23 100644 --- a/src/main/java/ortus/boxlang/runtime/bifs/global/array/ArrayReverse.java +++ b/src/main/java/ortus/boxlang/runtime/bifs/global/array/ArrayReverse.java @@ -1,3 +1,17 @@ +/** + * [BoxLang] + * + * Copyright [2023] [Ortus Solutions, Corp] + * + * 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. + */ package ortus.boxlang.runtime.bifs.global.array; diff --git a/src/main/java/ortus/boxlang/runtime/bifs/global/array/ArraySet.java b/src/main/java/ortus/boxlang/runtime/bifs/global/array/ArraySet.java index 674ec9198..ecb2dc4ac 100644 --- a/src/main/java/ortus/boxlang/runtime/bifs/global/array/ArraySet.java +++ b/src/main/java/ortus/boxlang/runtime/bifs/global/array/ArraySet.java @@ -1,3 +1,17 @@ +/** + * [BoxLang] + * + * Copyright [2023] [Ortus Solutions, Corp] + * + * 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. + */ package ortus.boxlang.runtime.bifs.global.array; diff --git a/src/main/java/ortus/boxlang/runtime/bifs/global/array/ArrayShift.java b/src/main/java/ortus/boxlang/runtime/bifs/global/array/ArrayShift.java index 995d1b9e9..b66099713 100644 --- a/src/main/java/ortus/boxlang/runtime/bifs/global/array/ArrayShift.java +++ b/src/main/java/ortus/boxlang/runtime/bifs/global/array/ArrayShift.java @@ -1,3 +1,17 @@ +/** + * [BoxLang] + * + * Copyright [2023] [Ortus Solutions, Corp] + * + * 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. + */ package ortus.boxlang.runtime.bifs.global.array; diff --git a/src/main/java/ortus/boxlang/runtime/bifs/global/array/ArraySome.java b/src/main/java/ortus/boxlang/runtime/bifs/global/array/ArraySome.java index 068f141ad..d0be0f42e 100644 --- a/src/main/java/ortus/boxlang/runtime/bifs/global/array/ArraySome.java +++ b/src/main/java/ortus/boxlang/runtime/bifs/global/array/ArraySome.java @@ -1,3 +1,17 @@ +/** + * [BoxLang] + * + * Copyright [2023] [Ortus Solutions, Corp] + * + * 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. + */ package ortus.boxlang.runtime.bifs.global.array; import java.util.function.IntPredicate; diff --git a/src/main/java/ortus/boxlang/runtime/bifs/global/array/ArraySort.java b/src/main/java/ortus/boxlang/runtime/bifs/global/array/ArraySort.java index 38a65f96b..5ef28223c 100644 --- a/src/main/java/ortus/boxlang/runtime/bifs/global/array/ArraySort.java +++ b/src/main/java/ortus/boxlang/runtime/bifs/global/array/ArraySort.java @@ -1,3 +1,17 @@ +/** + * [BoxLang] + * + * Copyright [2023] [Ortus Solutions, Corp] + * + * 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. + */ package ortus.boxlang.runtime.bifs.global.array; diff --git a/src/main/java/ortus/boxlang/runtime/bifs/global/array/ArraySplice.java b/src/main/java/ortus/boxlang/runtime/bifs/global/array/ArraySplice.java index dba3ca801..4a294de40 100644 --- a/src/main/java/ortus/boxlang/runtime/bifs/global/array/ArraySplice.java +++ b/src/main/java/ortus/boxlang/runtime/bifs/global/array/ArraySplice.java @@ -1,3 +1,17 @@ +/** + * [BoxLang] + * + * Copyright [2023] [Ortus Solutions, Corp] + * + * 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. + */ package ortus.boxlang.runtime.bifs.global.array; diff --git a/src/main/java/ortus/boxlang/runtime/bifs/global/array/ArrayToStruct.java b/src/main/java/ortus/boxlang/runtime/bifs/global/array/ArrayToStruct.java index a36e153a2..778bb01f0 100644 --- a/src/main/java/ortus/boxlang/runtime/bifs/global/array/ArrayToStruct.java +++ b/src/main/java/ortus/boxlang/runtime/bifs/global/array/ArrayToStruct.java @@ -1,3 +1,17 @@ +/** + * [BoxLang] + * + * Copyright [2023] [Ortus Solutions, Corp] + * + * 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. + */ package ortus.boxlang.runtime.bifs.global.array; diff --git a/src/main/java/ortus/boxlang/runtime/bifs/global/array/ArrayUnshift.java b/src/main/java/ortus/boxlang/runtime/bifs/global/array/ArrayUnshift.java index 61520e52f..269eb2222 100644 --- a/src/main/java/ortus/boxlang/runtime/bifs/global/array/ArrayUnshift.java +++ b/src/main/java/ortus/boxlang/runtime/bifs/global/array/ArrayUnshift.java @@ -1,3 +1,17 @@ +/** + * [BoxLang] + * + * Copyright [2023] [Ortus Solutions, Corp] + * + * 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. + */ package ortus.boxlang.runtime.bifs.global.array; diff --git a/src/main/java/ortus/boxlang/runtime/bifs/global/conversion/ParseNumber.java b/src/main/java/ortus/boxlang/runtime/bifs/global/conversion/ParseNumber.java index a321110f5..21008f7ef 100644 --- a/src/main/java/ortus/boxlang/runtime/bifs/global/conversion/ParseNumber.java +++ b/src/main/java/ortus/boxlang/runtime/bifs/global/conversion/ParseNumber.java @@ -1,3 +1,17 @@ +/** + * [BoxLang] + * + * Copyright [2023] [Ortus Solutions, Corp] + * + * 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. + */ package ortus.boxlang.runtime.bifs.global.conversion; import ortus.boxlang.runtime.bifs.BIF; diff --git a/src/main/java/ortus/boxlang/runtime/bifs/global/encryption/Hash.java b/src/main/java/ortus/boxlang/runtime/bifs/global/encryption/Hash.java index 18b27f10f..6c7f32786 100644 --- a/src/main/java/ortus/boxlang/runtime/bifs/global/encryption/Hash.java +++ b/src/main/java/ortus/boxlang/runtime/bifs/global/encryption/Hash.java @@ -1,3 +1,17 @@ +/** + * [BoxLang] + * + * Copyright [2023] [Ortus Solutions, Corp] + * + * 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. + */ package ortus.boxlang.runtime.bifs.global.encryption; diff --git a/src/main/java/ortus/boxlang/runtime/bifs/global/encryption/Hmac.java b/src/main/java/ortus/boxlang/runtime/bifs/global/encryption/Hmac.java index 6c2888d3a..0710c0c2e 100644 --- a/src/main/java/ortus/boxlang/runtime/bifs/global/encryption/Hmac.java +++ b/src/main/java/ortus/boxlang/runtime/bifs/global/encryption/Hmac.java @@ -1,3 +1,17 @@ +/** + * [BoxLang] + * + * Copyright [2023] [Ortus Solutions, Corp] + * + * 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. + */ package ortus.boxlang.runtime.bifs.global.encryption; diff --git a/src/main/java/ortus/boxlang/runtime/bifs/global/io/DirectoryCopy.java b/src/main/java/ortus/boxlang/runtime/bifs/global/io/DirectoryCopy.java index a688acf78..79864383b 100644 --- a/src/main/java/ortus/boxlang/runtime/bifs/global/io/DirectoryCopy.java +++ b/src/main/java/ortus/boxlang/runtime/bifs/global/io/DirectoryCopy.java @@ -1,3 +1,17 @@ +/** + * [BoxLang] + * + * Copyright [2023] [Ortus Solutions, Corp] + * + * 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. + */ package ortus.boxlang.runtime.bifs.global.io; diff --git a/src/main/java/ortus/boxlang/runtime/bifs/global/io/DirectoryCreate.java b/src/main/java/ortus/boxlang/runtime/bifs/global/io/DirectoryCreate.java index fa3a8b49a..2ccd1f4b1 100644 --- a/src/main/java/ortus/boxlang/runtime/bifs/global/io/DirectoryCreate.java +++ b/src/main/java/ortus/boxlang/runtime/bifs/global/io/DirectoryCreate.java @@ -1,3 +1,17 @@ +/** + * [BoxLang] + * + * Copyright [2023] [Ortus Solutions, Corp] + * + * 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. + */ package ortus.boxlang.runtime.bifs.global.io; diff --git a/src/main/java/ortus/boxlang/runtime/bifs/global/io/DirectoryDelete.java b/src/main/java/ortus/boxlang/runtime/bifs/global/io/DirectoryDelete.java index 99e721e97..ac57bc2bb 100644 --- a/src/main/java/ortus/boxlang/runtime/bifs/global/io/DirectoryDelete.java +++ b/src/main/java/ortus/boxlang/runtime/bifs/global/io/DirectoryDelete.java @@ -1,3 +1,17 @@ +/** + * [BoxLang] + * + * Copyright [2023] [Ortus Solutions, Corp] + * + * 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. + */ package ortus.boxlang.runtime.bifs.global.io; diff --git a/src/main/java/ortus/boxlang/runtime/bifs/global/io/DirectoryExists.java b/src/main/java/ortus/boxlang/runtime/bifs/global/io/DirectoryExists.java index ee8423821..532d5f04c 100644 --- a/src/main/java/ortus/boxlang/runtime/bifs/global/io/DirectoryExists.java +++ b/src/main/java/ortus/boxlang/runtime/bifs/global/io/DirectoryExists.java @@ -1,3 +1,17 @@ +/** + * [BoxLang] + * + * Copyright [2023] [Ortus Solutions, Corp] + * + * 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. + */ package ortus.boxlang.runtime.bifs.global.io; diff --git a/src/main/java/ortus/boxlang/runtime/bifs/global/io/DirectoryList.java b/src/main/java/ortus/boxlang/runtime/bifs/global/io/DirectoryList.java index 4cf6c7314..f74f9efce 100644 --- a/src/main/java/ortus/boxlang/runtime/bifs/global/io/DirectoryList.java +++ b/src/main/java/ortus/boxlang/runtime/bifs/global/io/DirectoryList.java @@ -1,3 +1,17 @@ +/** + * [BoxLang] + * + * Copyright [2023] [Ortus Solutions, Corp] + * + * 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. + */ package ortus.boxlang.runtime.bifs.global.io; diff --git a/src/main/java/ortus/boxlang/runtime/bifs/global/io/DirectoryMove.java b/src/main/java/ortus/boxlang/runtime/bifs/global/io/DirectoryMove.java index 67b35abbd..df8882ad3 100644 --- a/src/main/java/ortus/boxlang/runtime/bifs/global/io/DirectoryMove.java +++ b/src/main/java/ortus/boxlang/runtime/bifs/global/io/DirectoryMove.java @@ -1,3 +1,17 @@ +/** + * [BoxLang] + * + * Copyright [2023] [Ortus Solutions, Corp] + * + * 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. + */ package ortus.boxlang.runtime.bifs.global.io; diff --git a/src/main/java/ortus/boxlang/runtime/bifs/global/io/FileAppend.java b/src/main/java/ortus/boxlang/runtime/bifs/global/io/FileAppend.java index 2b4c329fe..6a7973b74 100644 --- a/src/main/java/ortus/boxlang/runtime/bifs/global/io/FileAppend.java +++ b/src/main/java/ortus/boxlang/runtime/bifs/global/io/FileAppend.java @@ -1,3 +1,17 @@ +/** + * [BoxLang] + * + * Copyright [2023] [Ortus Solutions, Corp] + * + * 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. + */ package ortus.boxlang.runtime.bifs.global.io; diff --git a/src/main/java/ortus/boxlang/runtime/bifs/global/io/FileClose.java b/src/main/java/ortus/boxlang/runtime/bifs/global/io/FileClose.java index 01fcaa42c..ba158dfbb 100644 --- a/src/main/java/ortus/boxlang/runtime/bifs/global/io/FileClose.java +++ b/src/main/java/ortus/boxlang/runtime/bifs/global/io/FileClose.java @@ -1,3 +1,17 @@ +/** + * [BoxLang] + * + * Copyright [2023] [Ortus Solutions, Corp] + * + * 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. + */ package ortus.boxlang.runtime.bifs.global.io; diff --git a/src/main/java/ortus/boxlang/runtime/bifs/global/io/FileCopy.java b/src/main/java/ortus/boxlang/runtime/bifs/global/io/FileCopy.java index 2191fd2f3..6f0cabd37 100644 --- a/src/main/java/ortus/boxlang/runtime/bifs/global/io/FileCopy.java +++ b/src/main/java/ortus/boxlang/runtime/bifs/global/io/FileCopy.java @@ -1,3 +1,17 @@ +/** + * [BoxLang] + * + * Copyright [2023] [Ortus Solutions, Corp] + * + * 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. + */ package ortus.boxlang.runtime.bifs.global.io; diff --git a/src/main/java/ortus/boxlang/runtime/bifs/global/io/FileDelete.java b/src/main/java/ortus/boxlang/runtime/bifs/global/io/FileDelete.java index 697c3404d..65efb1832 100644 --- a/src/main/java/ortus/boxlang/runtime/bifs/global/io/FileDelete.java +++ b/src/main/java/ortus/boxlang/runtime/bifs/global/io/FileDelete.java @@ -1,3 +1,17 @@ +/** + * [BoxLang] + * + * Copyright [2023] [Ortus Solutions, Corp] + * + * 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. + */ package ortus.boxlang.runtime.bifs.global.io; diff --git a/src/main/java/ortus/boxlang/runtime/bifs/global/io/FileExists.java b/src/main/java/ortus/boxlang/runtime/bifs/global/io/FileExists.java index b268bedf7..ab1b53a33 100644 --- a/src/main/java/ortus/boxlang/runtime/bifs/global/io/FileExists.java +++ b/src/main/java/ortus/boxlang/runtime/bifs/global/io/FileExists.java @@ -1,3 +1,17 @@ +/** + * [BoxLang] + * + * Copyright [2023] [Ortus Solutions, Corp] + * + * 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. + */ package ortus.boxlang.runtime.bifs.global.io; diff --git a/src/main/java/ortus/boxlang/runtime/bifs/global/io/FileGetMimeType.java b/src/main/java/ortus/boxlang/runtime/bifs/global/io/FileGetMimeType.java index cc45e8cf2..4affc1ea9 100644 --- a/src/main/java/ortus/boxlang/runtime/bifs/global/io/FileGetMimeType.java +++ b/src/main/java/ortus/boxlang/runtime/bifs/global/io/FileGetMimeType.java @@ -1,3 +1,17 @@ +/** + * [BoxLang] + * + * Copyright [2023] [Ortus Solutions, Corp] + * + * 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. + */ package ortus.boxlang.runtime.bifs.global.io; diff --git a/src/main/java/ortus/boxlang/runtime/bifs/global/io/FileInfo.java b/src/main/java/ortus/boxlang/runtime/bifs/global/io/FileInfo.java index c7887c126..11390fe5a 100644 --- a/src/main/java/ortus/boxlang/runtime/bifs/global/io/FileInfo.java +++ b/src/main/java/ortus/boxlang/runtime/bifs/global/io/FileInfo.java @@ -1,3 +1,17 @@ +/** + * [BoxLang] + * + * Copyright [2023] [Ortus Solutions, Corp] + * + * 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. + */ package ortus.boxlang.runtime.bifs.global.io; diff --git a/src/main/java/ortus/boxlang/runtime/bifs/global/io/FileIsEOF.java b/src/main/java/ortus/boxlang/runtime/bifs/global/io/FileIsEOF.java index 5db571f36..6fad94041 100644 --- a/src/main/java/ortus/boxlang/runtime/bifs/global/io/FileIsEOF.java +++ b/src/main/java/ortus/boxlang/runtime/bifs/global/io/FileIsEOF.java @@ -1,3 +1,17 @@ +/** + * [BoxLang] + * + * Copyright [2023] [Ortus Solutions, Corp] + * + * 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. + */ package ortus.boxlang.runtime.bifs.global.io; diff --git a/src/main/java/ortus/boxlang/runtime/bifs/global/io/FileMove.java b/src/main/java/ortus/boxlang/runtime/bifs/global/io/FileMove.java index b2c176e9d..839a01a52 100644 --- a/src/main/java/ortus/boxlang/runtime/bifs/global/io/FileMove.java +++ b/src/main/java/ortus/boxlang/runtime/bifs/global/io/FileMove.java @@ -1,3 +1,17 @@ +/** + * [BoxLang] + * + * Copyright [2023] [Ortus Solutions, Corp] + * + * 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. + */ package ortus.boxlang.runtime.bifs.global.io; diff --git a/src/main/java/ortus/boxlang/runtime/bifs/global/io/FileOpen.java b/src/main/java/ortus/boxlang/runtime/bifs/global/io/FileOpen.java index 512bde735..cd84c0323 100644 --- a/src/main/java/ortus/boxlang/runtime/bifs/global/io/FileOpen.java +++ b/src/main/java/ortus/boxlang/runtime/bifs/global/io/FileOpen.java @@ -1,3 +1,17 @@ +/** + * [BoxLang] + * + * Copyright [2023] [Ortus Solutions, Corp] + * + * 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. + */ package ortus.boxlang.runtime.bifs.global.io; diff --git a/src/main/java/ortus/boxlang/runtime/bifs/global/io/FileRead.java b/src/main/java/ortus/boxlang/runtime/bifs/global/io/FileRead.java index 2bfba3efe..7c9fcb350 100644 --- a/src/main/java/ortus/boxlang/runtime/bifs/global/io/FileRead.java +++ b/src/main/java/ortus/boxlang/runtime/bifs/global/io/FileRead.java @@ -1,3 +1,17 @@ +/** + * [BoxLang] + * + * Copyright [2023] [Ortus Solutions, Corp] + * + * 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. + */ package ortus.boxlang.runtime.bifs.global.io; diff --git a/src/main/java/ortus/boxlang/runtime/bifs/global/io/FileReadLine.java b/src/main/java/ortus/boxlang/runtime/bifs/global/io/FileReadLine.java index c2e47748b..6bb8db2b7 100644 --- a/src/main/java/ortus/boxlang/runtime/bifs/global/io/FileReadLine.java +++ b/src/main/java/ortus/boxlang/runtime/bifs/global/io/FileReadLine.java @@ -1,3 +1,17 @@ +/** + * [BoxLang] + * + * Copyright [2023] [Ortus Solutions, Corp] + * + * 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. + */ package ortus.boxlang.runtime.bifs.global.io; diff --git a/src/main/java/ortus/boxlang/runtime/bifs/global/io/FileSeek.java b/src/main/java/ortus/boxlang/runtime/bifs/global/io/FileSeek.java index b9fc0ba47..a44f309e5 100644 --- a/src/main/java/ortus/boxlang/runtime/bifs/global/io/FileSeek.java +++ b/src/main/java/ortus/boxlang/runtime/bifs/global/io/FileSeek.java @@ -1,3 +1,17 @@ +/** + * [BoxLang] + * + * Copyright [2023] [Ortus Solutions, Corp] + * + * 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. + */ package ortus.boxlang.runtime.bifs.global.io; diff --git a/src/main/java/ortus/boxlang/runtime/bifs/global/io/FileSetAccessMode.java b/src/main/java/ortus/boxlang/runtime/bifs/global/io/FileSetAccessMode.java index 7b24f048e..090014b87 100644 --- a/src/main/java/ortus/boxlang/runtime/bifs/global/io/FileSetAccessMode.java +++ b/src/main/java/ortus/boxlang/runtime/bifs/global/io/FileSetAccessMode.java @@ -1,3 +1,17 @@ +/** + * [BoxLang] + * + * Copyright [2023] [Ortus Solutions, Corp] + * + * 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. + */ package ortus.boxlang.runtime.bifs.global.io; diff --git a/src/main/java/ortus/boxlang/runtime/bifs/global/io/FileSetAttribute.java b/src/main/java/ortus/boxlang/runtime/bifs/global/io/FileSetAttribute.java index f5be47a3d..63204746b 100644 --- a/src/main/java/ortus/boxlang/runtime/bifs/global/io/FileSetAttribute.java +++ b/src/main/java/ortus/boxlang/runtime/bifs/global/io/FileSetAttribute.java @@ -1,3 +1,17 @@ +/** + * [BoxLang] + * + * Copyright [2023] [Ortus Solutions, Corp] + * + * 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. + */ package ortus.boxlang.runtime.bifs.global.io; diff --git a/src/main/java/ortus/boxlang/runtime/bifs/global/io/FileSetLastModified.java b/src/main/java/ortus/boxlang/runtime/bifs/global/io/FileSetLastModified.java index e93dfd715..8b26765a6 100644 --- a/src/main/java/ortus/boxlang/runtime/bifs/global/io/FileSetLastModified.java +++ b/src/main/java/ortus/boxlang/runtime/bifs/global/io/FileSetLastModified.java @@ -1,3 +1,17 @@ +/** + * [BoxLang] + * + * Copyright [2023] [Ortus Solutions, Corp] + * + * 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. + */ package ortus.boxlang.runtime.bifs.global.io; diff --git a/src/main/java/ortus/boxlang/runtime/bifs/global/io/FileWrite.java b/src/main/java/ortus/boxlang/runtime/bifs/global/io/FileWrite.java index 9923e6b94..c652744f4 100644 --- a/src/main/java/ortus/boxlang/runtime/bifs/global/io/FileWrite.java +++ b/src/main/java/ortus/boxlang/runtime/bifs/global/io/FileWrite.java @@ -1,3 +1,17 @@ +/** + * [BoxLang] + * + * Copyright [2023] [Ortus Solutions, Corp] + * + * 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. + */ package ortus.boxlang.runtime.bifs.global.io; diff --git a/src/main/java/ortus/boxlang/runtime/bifs/global/io/FileWriteLine.java b/src/main/java/ortus/boxlang/runtime/bifs/global/io/FileWriteLine.java index 432277a2a..19c6665d5 100644 --- a/src/main/java/ortus/boxlang/runtime/bifs/global/io/FileWriteLine.java +++ b/src/main/java/ortus/boxlang/runtime/bifs/global/io/FileWriteLine.java @@ -1,3 +1,17 @@ +/** + * [BoxLang] + * + * Copyright [2023] [Ortus Solutions, Corp] + * + * 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. + */ package ortus.boxlang.runtime.bifs.global.io; diff --git a/src/main/java/ortus/boxlang/runtime/bifs/global/io/GetCanonicalPath.java b/src/main/java/ortus/boxlang/runtime/bifs/global/io/GetCanonicalPath.java index becbf2f5b..7ea3cd027 100644 --- a/src/main/java/ortus/boxlang/runtime/bifs/global/io/GetCanonicalPath.java +++ b/src/main/java/ortus/boxlang/runtime/bifs/global/io/GetCanonicalPath.java @@ -1,3 +1,17 @@ +/** + * [BoxLang] + * + * Copyright [2023] [Ortus Solutions, Corp] + * + * 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. + */ package ortus.boxlang.runtime.bifs.global.io; diff --git a/src/main/java/ortus/boxlang/runtime/bifs/global/io/GetDirectoryFromPath.java b/src/main/java/ortus/boxlang/runtime/bifs/global/io/GetDirectoryFromPath.java index 894f96211..37c529dbf 100644 --- a/src/main/java/ortus/boxlang/runtime/bifs/global/io/GetDirectoryFromPath.java +++ b/src/main/java/ortus/boxlang/runtime/bifs/global/io/GetDirectoryFromPath.java @@ -1,3 +1,17 @@ +/** + * [BoxLang] + * + * Copyright [2023] [Ortus Solutions, Corp] + * + * 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. + */ package ortus.boxlang.runtime.bifs.global.io; diff --git a/src/main/java/ortus/boxlang/runtime/bifs/global/math/Sin.java b/src/main/java/ortus/boxlang/runtime/bifs/global/math/Sin.java index fbbc60b3c..c08bae833 100644 --- a/src/main/java/ortus/boxlang/runtime/bifs/global/math/Sin.java +++ b/src/main/java/ortus/boxlang/runtime/bifs/global/math/Sin.java @@ -1,3 +1,17 @@ +/** + * [BoxLang] + * + * Copyright [2023] [Ortus Solutions, Corp] + * + * 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. + */ package ortus.boxlang.runtime.bifs.global.math; import ortus.boxlang.runtime.bifs.BIF; diff --git a/src/main/java/ortus/boxlang/runtime/bifs/global/string/RTrim.java b/src/main/java/ortus/boxlang/runtime/bifs/global/string/RTrim.java index 764a039c0..878774ad1 100644 --- a/src/main/java/ortus/boxlang/runtime/bifs/global/string/RTrim.java +++ b/src/main/java/ortus/boxlang/runtime/bifs/global/string/RTrim.java @@ -1,3 +1,17 @@ +/** + * [BoxLang] + * + * Copyright [2023] [Ortus Solutions, Corp] + * + * 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. + */ package ortus.boxlang.runtime.bifs.global.string; import ortus.boxlang.runtime.bifs.BIF; diff --git a/src/main/java/ortus/boxlang/runtime/bifs/global/string/Trim.java b/src/main/java/ortus/boxlang/runtime/bifs/global/string/Trim.java index c08afd3f1..697f2ae1b 100644 --- a/src/main/java/ortus/boxlang/runtime/bifs/global/string/Trim.java +++ b/src/main/java/ortus/boxlang/runtime/bifs/global/string/Trim.java @@ -1,3 +1,17 @@ +/** + * [BoxLang] + * + * Copyright [2023] [Ortus Solutions, Corp] + * + * 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. + */ package ortus.boxlang.runtime.bifs.global.string; import ortus.boxlang.runtime.bifs.BIF; diff --git a/src/main/java/ortus/boxlang/runtime/bifs/global/temporal/CreateDate.java b/src/main/java/ortus/boxlang/runtime/bifs/global/temporal/CreateDate.java index e5d98536e..0f66dde86 100644 --- a/src/main/java/ortus/boxlang/runtime/bifs/global/temporal/CreateDate.java +++ b/src/main/java/ortus/boxlang/runtime/bifs/global/temporal/CreateDate.java @@ -1,3 +1,17 @@ +/** + * [BoxLang] + * + * Copyright [2023] [Ortus Solutions, Corp] + * + * 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. + */ package ortus.boxlang.runtime.bifs.global.temporal; diff --git a/src/main/java/ortus/boxlang/runtime/bifs/global/temporal/CreateDateTime.java b/src/main/java/ortus/boxlang/runtime/bifs/global/temporal/CreateDateTime.java index 90cac9d24..e68918361 100644 --- a/src/main/java/ortus/boxlang/runtime/bifs/global/temporal/CreateDateTime.java +++ b/src/main/java/ortus/boxlang/runtime/bifs/global/temporal/CreateDateTime.java @@ -1,3 +1,17 @@ +/** + * [BoxLang] + * + * Copyright [2023] [Ortus Solutions, Corp] + * + * 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. + */ package ortus.boxlang.runtime.bifs.global.temporal; diff --git a/src/main/java/ortus/boxlang/runtime/bifs/global/temporal/DateAdd.java b/src/main/java/ortus/boxlang/runtime/bifs/global/temporal/DateAdd.java index 16ed7f0f0..ed7e0b8d8 100644 --- a/src/main/java/ortus/boxlang/runtime/bifs/global/temporal/DateAdd.java +++ b/src/main/java/ortus/boxlang/runtime/bifs/global/temporal/DateAdd.java @@ -1,3 +1,17 @@ +/** + * [BoxLang] + * + * Copyright [2023] [Ortus Solutions, Corp] + * + * 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. + */ package ortus.boxlang.runtime.bifs.global.temporal; diff --git a/src/main/java/ortus/boxlang/runtime/bifs/global/temporal/DateTimeFormat.java b/src/main/java/ortus/boxlang/runtime/bifs/global/temporal/DateTimeFormat.java index 2ed1b6da6..4cde18334 100644 --- a/src/main/java/ortus/boxlang/runtime/bifs/global/temporal/DateTimeFormat.java +++ b/src/main/java/ortus/boxlang/runtime/bifs/global/temporal/DateTimeFormat.java @@ -1,3 +1,17 @@ +/** + * [BoxLang] + * + * Copyright [2023] [Ortus Solutions, Corp] + * + * 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. + */ package ortus.boxlang.runtime.bifs.global.temporal; diff --git a/src/main/java/ortus/boxlang/runtime/bifs/global/temporal/Now.java b/src/main/java/ortus/boxlang/runtime/bifs/global/temporal/Now.java index 751281590..b537db230 100644 --- a/src/main/java/ortus/boxlang/runtime/bifs/global/temporal/Now.java +++ b/src/main/java/ortus/boxlang/runtime/bifs/global/temporal/Now.java @@ -1,3 +1,17 @@ +/** + * [BoxLang] + * + * Copyright [2023] [Ortus Solutions, Corp] + * + * 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. + */ package ortus.boxlang.runtime.bifs.global.temporal; diff --git a/src/main/java/ortus/boxlang/runtime/bifs/global/temporal/ParseDateTime.java b/src/main/java/ortus/boxlang/runtime/bifs/global/temporal/ParseDateTime.java index 70fffe54b..c73e9a219 100644 --- a/src/main/java/ortus/boxlang/runtime/bifs/global/temporal/ParseDateTime.java +++ b/src/main/java/ortus/boxlang/runtime/bifs/global/temporal/ParseDateTime.java @@ -1,3 +1,17 @@ +/** + * [BoxLang] + * + * Copyright [2023] [Ortus Solutions, Corp] + * + * 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. + */ package ortus.boxlang.runtime.bifs.global.temporal; diff --git a/src/main/java/ortus/boxlang/runtime/bifs/global/temporal/TimeUnits.java b/src/main/java/ortus/boxlang/runtime/bifs/global/temporal/TimeUnits.java index 7dc406cd9..53092bb8f 100644 --- a/src/main/java/ortus/boxlang/runtime/bifs/global/temporal/TimeUnits.java +++ b/src/main/java/ortus/boxlang/runtime/bifs/global/temporal/TimeUnits.java @@ -1,3 +1,17 @@ +/** + * [BoxLang] + * + * Copyright [2023] [Ortus Solutions, Corp] + * + * 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. + */ package ortus.boxlang.runtime.bifs.global.temporal; diff --git a/src/test/java/ortus/boxlang/runtime/bifs/global/conversion/ParseNumberTest.java b/src/test/java/ortus/boxlang/runtime/bifs/global/conversion/ParseNumberTest.java index d4557d1bc..68033c705 100644 --- a/src/test/java/ortus/boxlang/runtime/bifs/global/conversion/ParseNumberTest.java +++ b/src/test/java/ortus/boxlang/runtime/bifs/global/conversion/ParseNumberTest.java @@ -1,3 +1,18 @@ +/** + * [BoxLang] + * + * Copyright [2023] [Ortus Solutions, Corp] + * + * 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. + */ + package ortus.boxlang.runtime.bifs.global.conversion; import static com.google.common.truth.Truth.assertThat; diff --git a/src/test/java/ortus/boxlang/runtime/bifs/global/math/SinTest.java b/src/test/java/ortus/boxlang/runtime/bifs/global/math/SinTest.java index 5f62ce4df..d075ff438 100644 --- a/src/test/java/ortus/boxlang/runtime/bifs/global/math/SinTest.java +++ b/src/test/java/ortus/boxlang/runtime/bifs/global/math/SinTest.java @@ -1,3 +1,18 @@ +/** + * [BoxLang] + * + * Copyright [2023] [Ortus Solutions, Corp] + * + * 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. + */ + package ortus.boxlang.runtime.bifs.global.math; import static com.google.common.truth.Truth.assertThat; diff --git a/src/test/java/ortus/boxlang/runtime/bifs/global/string/RTrimTest.java b/src/test/java/ortus/boxlang/runtime/bifs/global/string/RTrimTest.java index df28581e1..d25b5aa40 100644 --- a/src/test/java/ortus/boxlang/runtime/bifs/global/string/RTrimTest.java +++ b/src/test/java/ortus/boxlang/runtime/bifs/global/string/RTrimTest.java @@ -1,3 +1,18 @@ +/** + * [BoxLang] + * + * Copyright [2023] [Ortus Solutions, Corp] + * + * 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. + */ + package ortus.boxlang.runtime.bifs.global.string; import static com.google.common.truth.Truth.assertThat; diff --git a/src/test/java/ortus/boxlang/runtime/bifs/global/string/TrimTest.java b/src/test/java/ortus/boxlang/runtime/bifs/global/string/TrimTest.java index fb10b5b5a..dc6e6ea40 100644 --- a/src/test/java/ortus/boxlang/runtime/bifs/global/string/TrimTest.java +++ b/src/test/java/ortus/boxlang/runtime/bifs/global/string/TrimTest.java @@ -1,3 +1,18 @@ +/** + * [BoxLang] + * + * Copyright [2023] [Ortus Solutions, Corp] + * + * 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. + */ + package ortus.boxlang.runtime.bifs.global.string; import static com.google.common.truth.Truth.assertThat;