From 9f34d3d975d1a15b0909d2e8036aa6061deaec1c Mon Sep 17 00:00:00 2001 From: fankesyooni Date: Mon, 1 Jan 2024 01:39:10 +0800 Subject: [PATCH] docs: update copyright date to 2024 for all existing files --- README-zh-CN.md | 4 ++-- README.md | 4 ++-- .../com/highcapable/yukireflection/demo_app/test/Main.java | 2 +- .../highcapable/yukireflection/demo_app/ui/MainActivity.kt | 2 +- .../main/java/com/highcapable/yukireflection/demo_jvm/Main.kt | 2 +- .../com/highcapable/yukireflection/demo_jvm/test/Main.java | 2 +- .../java/com/highcapable/yukireflection/YukiReflection.kt | 2 +- .../java/com/highcapable/yukireflection/bean/CurrentClass.kt | 2 +- .../java/com/highcapable/yukireflection/bean/GenericClass.kt | 2 +- .../java/com/highcapable/yukireflection/bean/VariousClass.kt | 2 +- .../highcapable/yukireflection/factory/ReflectionFactory.kt | 2 +- .../com/highcapable/yukireflection/finder/base/BaseFinder.kt | 2 +- .../highcapable/yukireflection/finder/base/ClassBaseFinder.kt | 2 +- .../yukireflection/finder/base/MemberBaseFinder.kt | 2 +- .../yukireflection/finder/base/data/BaseRulesData.kt | 2 +- .../yukireflection/finder/base/rules/CountRules.kt | 2 +- .../yukireflection/finder/base/rules/ModifierRules.kt | 2 +- .../highcapable/yukireflection/finder/base/rules/NameRules.kt | 2 +- .../yukireflection/finder/base/rules/ObjectRules.kt | 2 +- .../yukireflection/finder/classes/DexClassFinder.kt | 2 +- .../yukireflection/finder/classes/data/ClassRulesData.kt | 2 +- .../yukireflection/finder/classes/rules/ConstructorRules.kt | 2 +- .../yukireflection/finder/classes/rules/FieldRules.kt | 2 +- .../yukireflection/finder/classes/rules/MemberRules.kt | 2 +- .../yukireflection/finder/classes/rules/MethodRules.kt | 2 +- .../yukireflection/finder/classes/rules/base/BaseRules.kt | 2 +- .../finder/classes/rules/result/MemberRulesResult.kt | 2 +- .../yukireflection/finder/members/ConstructorFinder.kt | 2 +- .../highcapable/yukireflection/finder/members/FieldFinder.kt | 2 +- .../highcapable/yukireflection/finder/members/MethodFinder.kt | 2 +- .../finder/members/data/ConstructorRulesData.kt | 2 +- .../yukireflection/finder/members/data/FieldRulesData.kt | 2 +- .../yukireflection/finder/members/data/MemberRulesData.kt | 2 +- .../yukireflection/finder/members/data/MethodRulesData.kt | 2 +- .../highcapable/yukireflection/finder/tools/ReflectionTool.kt | 2 +- .../yukireflection/finder/type/factory/TypeAliasFactory.kt | 2 +- .../src/main/java/com/highcapable/yukireflection/log/YLog.kt | 2 +- .../yukireflection/type/android/ComponentTypeFactory.kt | 2 +- .../yukireflection/type/android/GraphicsTypeFactory.kt | 2 +- .../yukireflection/type/android/ViewTypeFactory.kt | 2 +- .../yukireflection/type/defined/DefinedTypeFactory.kt | 2 +- .../yukireflection/type/java/VariableTypeFactory.kt | 2 +- .../highcapable/yukireflection/utils/factory/ThreadFactory.kt | 2 +- .../yukireflection/utils/factory/ThrowableFactory.kt | 2 +- .../yukireflection/utils/factory/VariableFactory.kt | 2 +- 45 files changed, 47 insertions(+), 47 deletions(-) diff --git a/README-zh-CN.md b/README-zh-CN.md index 1170cf2..43149da 100644 --- a/README-zh-CN.md +++ b/README-zh-CN.md @@ -49,7 +49,7 @@ ``` Apache License Version 2.0 -Copyright (C) 2019-2023 HighCapable +Copyright (C) 2019-2024 HighCapable Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -64,4 +64,4 @@ See the License for the specific language governing permissions and limitations under the License. ``` -版权所有 © 2019-2023 HighCapable \ No newline at end of file +版权所有 © 2019-2024 HighCapable \ No newline at end of file diff --git a/README.md b/README.md index 8434578..78fa1c6 100644 --- a/README.md +++ b/README.md @@ -49,7 +49,7 @@ The name is taken from ["ももくり" heroine Yuki Kurihara](https://www.bilibi ``` Apache License Version 2.0 -Copyright (C) 2019-2023 HighCapable +Copyright (C) 2019-2024 HighCapable Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -64,4 +64,4 @@ See the License for the specific language governing permissions and limitations under the License. ``` -Copyright © 2019-2023 HighCapable \ No newline at end of file +Copyright © 2019-2024 HighCapable \ No newline at end of file diff --git a/samples/demo-android/src/main/java/com/highcapable/yukireflection/demo_app/test/Main.java b/samples/demo-android/src/main/java/com/highcapable/yukireflection/demo_app/test/Main.java index 493b496..d4236f6 100644 --- a/samples/demo-android/src/main/java/com/highcapable/yukireflection/demo_app/test/Main.java +++ b/samples/demo-android/src/main/java/com/highcapable/yukireflection/demo_app/test/Main.java @@ -1,6 +1,6 @@ /* * YukiReflection - An efficient Reflection API for Java and Android built in Kotlin. - * Copyright (C) 2019-2023 HighCapable + * Copyright (C) 2019-2024 HighCapable * https://github.com/HighCapable/YukiReflection * * Apache License Version 2.0 diff --git a/samples/demo-android/src/main/java/com/highcapable/yukireflection/demo_app/ui/MainActivity.kt b/samples/demo-android/src/main/java/com/highcapable/yukireflection/demo_app/ui/MainActivity.kt index f71d65b..8b4a7d0 100644 --- a/samples/demo-android/src/main/java/com/highcapable/yukireflection/demo_app/ui/MainActivity.kt +++ b/samples/demo-android/src/main/java/com/highcapable/yukireflection/demo_app/ui/MainActivity.kt @@ -1,6 +1,6 @@ /* * YukiReflection - An efficient Reflection API for Java and Android built in Kotlin. - * Copyright (C) 2019-2023 HighCapable + * Copyright (C) 2019-2024 HighCapable * https://github.com/HighCapable/YukiReflection * * Apache License Version 2.0 diff --git a/samples/demo-jvm/src/main/java/com/highcapable/yukireflection/demo_jvm/Main.kt b/samples/demo-jvm/src/main/java/com/highcapable/yukireflection/demo_jvm/Main.kt index 26ab270..e6978b2 100644 --- a/samples/demo-jvm/src/main/java/com/highcapable/yukireflection/demo_jvm/Main.kt +++ b/samples/demo-jvm/src/main/java/com/highcapable/yukireflection/demo_jvm/Main.kt @@ -1,6 +1,6 @@ /* * YukiReflection - An efficient Reflection API for Java and Android built in Kotlin. - * Copyright (C) 2019-2023 HighCapable + * Copyright (C) 2019-2024 HighCapable * https://github.com/HighCapable/YukiReflection * * Apache License Version 2.0 diff --git a/samples/demo-jvm/src/main/java/com/highcapable/yukireflection/demo_jvm/test/Main.java b/samples/demo-jvm/src/main/java/com/highcapable/yukireflection/demo_jvm/test/Main.java index 864378e..039b6ed 100644 --- a/samples/demo-jvm/src/main/java/com/highcapable/yukireflection/demo_jvm/test/Main.java +++ b/samples/demo-jvm/src/main/java/com/highcapable/yukireflection/demo_jvm/test/Main.java @@ -1,6 +1,6 @@ /* * YukiReflection - An efficient Reflection API for Java and Android built in Kotlin. - * Copyright (C) 2019-2023 HighCapable + * Copyright (C) 2019-2024 HighCapable * https://github.com/HighCapable/YukiReflection * * Apache License Version 2.0 diff --git a/yukireflection-core/src/main/java/com/highcapable/yukireflection/YukiReflection.kt b/yukireflection-core/src/main/java/com/highcapable/yukireflection/YukiReflection.kt index 6319165..a146e27 100644 --- a/yukireflection-core/src/main/java/com/highcapable/yukireflection/YukiReflection.kt +++ b/yukireflection-core/src/main/java/com/highcapable/yukireflection/YukiReflection.kt @@ -1,6 +1,6 @@ /* * YukiReflection - An efficient Reflection API for Java and Android built in Kotlin. - * Copyright (C) 2019-2023 HighCapable + * Copyright (C) 2019-2024 HighCapable * https://github.com/HighCapable/YukiReflection * * Apache License Version 2.0 diff --git a/yukireflection-core/src/main/java/com/highcapable/yukireflection/bean/CurrentClass.kt b/yukireflection-core/src/main/java/com/highcapable/yukireflection/bean/CurrentClass.kt index 50a57f1..37042ac 100644 --- a/yukireflection-core/src/main/java/com/highcapable/yukireflection/bean/CurrentClass.kt +++ b/yukireflection-core/src/main/java/com/highcapable/yukireflection/bean/CurrentClass.kt @@ -1,6 +1,6 @@ /* * YukiReflection - An efficient Reflection API for Java and Android built in Kotlin. - * Copyright (C) 2019-2023 HighCapable + * Copyright (C) 2019-2024 HighCapable * https://github.com/HighCapable/YukiReflection * * Apache License Version 2.0 diff --git a/yukireflection-core/src/main/java/com/highcapable/yukireflection/bean/GenericClass.kt b/yukireflection-core/src/main/java/com/highcapable/yukireflection/bean/GenericClass.kt index a9c4b9a..ccf546c 100644 --- a/yukireflection-core/src/main/java/com/highcapable/yukireflection/bean/GenericClass.kt +++ b/yukireflection-core/src/main/java/com/highcapable/yukireflection/bean/GenericClass.kt @@ -1,6 +1,6 @@ /* * YukiReflection - An efficient Reflection API for Java and Android built in Kotlin. - * Copyright (C) 2019-2023 HighCapable + * Copyright (C) 2019-2024 HighCapable * https://github.com/HighCapable/YukiReflection * * Apache License Version 2.0 diff --git a/yukireflection-core/src/main/java/com/highcapable/yukireflection/bean/VariousClass.kt b/yukireflection-core/src/main/java/com/highcapable/yukireflection/bean/VariousClass.kt index 2bea2be..d6030cd 100644 --- a/yukireflection-core/src/main/java/com/highcapable/yukireflection/bean/VariousClass.kt +++ b/yukireflection-core/src/main/java/com/highcapable/yukireflection/bean/VariousClass.kt @@ -1,6 +1,6 @@ /* * YukiReflection - An efficient Reflection API for Java and Android built in Kotlin. - * Copyright (C) 2019-2023 HighCapable + * Copyright (C) 2019-2024 HighCapable * https://github.com/HighCapable/YukiReflection * * Apache License Version 2.0 diff --git a/yukireflection-core/src/main/java/com/highcapable/yukireflection/factory/ReflectionFactory.kt b/yukireflection-core/src/main/java/com/highcapable/yukireflection/factory/ReflectionFactory.kt index 16c765c..91fab3c 100644 --- a/yukireflection-core/src/main/java/com/highcapable/yukireflection/factory/ReflectionFactory.kt +++ b/yukireflection-core/src/main/java/com/highcapable/yukireflection/factory/ReflectionFactory.kt @@ -1,6 +1,6 @@ /* * YukiReflection - An efficient Reflection API for Java and Android built in Kotlin. - * Copyright (C) 2019-2023 HighCapable + * Copyright (C) 2019-2024 HighCapable * https://github.com/HighCapable/YukiReflection * * Apache License Version 2.0 diff --git a/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/base/BaseFinder.kt b/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/base/BaseFinder.kt index c905e51..628b5fb 100644 --- a/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/base/BaseFinder.kt +++ b/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/base/BaseFinder.kt @@ -1,6 +1,6 @@ /* * YukiReflection - An efficient Reflection API for Java and Android built in Kotlin. - * Copyright (C) 2019-2023 HighCapable + * Copyright (C) 2019-2024 HighCapable * https://github.com/HighCapable/YukiReflection * * Apache License Version 2.0 diff --git a/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/base/ClassBaseFinder.kt b/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/base/ClassBaseFinder.kt index 369394b..f49ca05 100644 --- a/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/base/ClassBaseFinder.kt +++ b/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/base/ClassBaseFinder.kt @@ -1,6 +1,6 @@ /* * YukiReflection - An efficient Reflection API for Java and Android built in Kotlin. - * Copyright (C) 2019-2023 HighCapable + * Copyright (C) 2019-2024 HighCapable * https://github.com/HighCapable/YukiReflection * * Apache License Version 2.0 diff --git a/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/base/MemberBaseFinder.kt b/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/base/MemberBaseFinder.kt index f5d9a0a..141fbd1 100644 --- a/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/base/MemberBaseFinder.kt +++ b/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/base/MemberBaseFinder.kt @@ -1,6 +1,6 @@ /* * YukiReflection - An efficient Reflection API for Java and Android built in Kotlin. - * Copyright (C) 2019-2023 HighCapable + * Copyright (C) 2019-2024 HighCapable * https://github.com/HighCapable/YukiReflection * * Apache License Version 2.0 diff --git a/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/base/data/BaseRulesData.kt b/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/base/data/BaseRulesData.kt index 5e3a4d2..dcd3fbc 100644 --- a/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/base/data/BaseRulesData.kt +++ b/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/base/data/BaseRulesData.kt @@ -1,6 +1,6 @@ /* * YukiReflection - An efficient Reflection API for Java and Android built in Kotlin. - * Copyright (C) 2019-2023 HighCapable + * Copyright (C) 2019-2024 HighCapable * https://github.com/HighCapable/YukiReflection * * Apache License Version 2.0 diff --git a/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/base/rules/CountRules.kt b/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/base/rules/CountRules.kt index fe48da7..376d2af 100644 --- a/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/base/rules/CountRules.kt +++ b/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/base/rules/CountRules.kt @@ -1,6 +1,6 @@ /* * YukiReflection - An efficient Reflection API for Java and Android built in Kotlin. - * Copyright (C) 2019-2023 HighCapable + * Copyright (C) 2019-2024 HighCapable * https://github.com/HighCapable/YukiReflection * * Apache License Version 2.0 diff --git a/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/base/rules/ModifierRules.kt b/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/base/rules/ModifierRules.kt index e69d8d9..2a29085 100644 --- a/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/base/rules/ModifierRules.kt +++ b/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/base/rules/ModifierRules.kt @@ -1,6 +1,6 @@ /* * YukiReflection - An efficient Reflection API for Java and Android built in Kotlin. - * Copyright (C) 2019-2023 HighCapable + * Copyright (C) 2019-2024 HighCapable * https://github.com/HighCapable/YukiReflection * * Apache License Version 2.0 diff --git a/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/base/rules/NameRules.kt b/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/base/rules/NameRules.kt index b9c659a..cc9e62a 100644 --- a/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/base/rules/NameRules.kt +++ b/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/base/rules/NameRules.kt @@ -1,6 +1,6 @@ /* * YukiReflection - An efficient Reflection API for Java and Android built in Kotlin. - * Copyright (C) 2019-2023 HighCapable + * Copyright (C) 2019-2024 HighCapable * https://github.com/HighCapable/YukiReflection * * Apache License Version 2.0 diff --git a/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/base/rules/ObjectRules.kt b/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/base/rules/ObjectRules.kt index ffc01e4..8a2f52f 100644 --- a/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/base/rules/ObjectRules.kt +++ b/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/base/rules/ObjectRules.kt @@ -1,6 +1,6 @@ /* * YukiReflection - An efficient Reflection API for Java and Android built in Kotlin. - * Copyright (C) 2019-2023 HighCapable + * Copyright (C) 2019-2024 HighCapable * https://github.com/HighCapable/YukiReflection * * Apache License Version 2.0 diff --git a/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/classes/DexClassFinder.kt b/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/classes/DexClassFinder.kt index 8ac8005..83f4c97 100644 --- a/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/classes/DexClassFinder.kt +++ b/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/classes/DexClassFinder.kt @@ -1,6 +1,6 @@ /* * YukiReflection - An efficient Reflection API for Java and Android built in Kotlin. - * Copyright (C) 2019-2023 HighCapable + * Copyright (C) 2019-2024 HighCapable * https://github.com/HighCapable/YukiReflection * * Apache License Version 2.0 diff --git a/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/classes/data/ClassRulesData.kt b/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/classes/data/ClassRulesData.kt index 4513590..e7284d5 100644 --- a/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/classes/data/ClassRulesData.kt +++ b/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/classes/data/ClassRulesData.kt @@ -1,6 +1,6 @@ /* * YukiReflection - An efficient Reflection API for Java and Android built in Kotlin. - * Copyright (C) 2019-2023 HighCapable + * Copyright (C) 2019-2024 HighCapable * https://github.com/HighCapable/YukiReflection * * Apache License Version 2.0 diff --git a/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/classes/rules/ConstructorRules.kt b/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/classes/rules/ConstructorRules.kt index db65ff3..76300b3 100644 --- a/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/classes/rules/ConstructorRules.kt +++ b/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/classes/rules/ConstructorRules.kt @@ -1,6 +1,6 @@ /* * YukiReflection - An efficient Reflection API for Java and Android built in Kotlin. - * Copyright (C) 2019-2023 HighCapable + * Copyright (C) 2019-2024 HighCapable * https://github.com/HighCapable/YukiReflection * * Apache License Version 2.0 diff --git a/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/classes/rules/FieldRules.kt b/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/classes/rules/FieldRules.kt index 577497f..8aee9ea 100644 --- a/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/classes/rules/FieldRules.kt +++ b/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/classes/rules/FieldRules.kt @@ -1,6 +1,6 @@ /* * YukiReflection - An efficient Reflection API for Java and Android built in Kotlin. - * Copyright (C) 2019-2023 HighCapable + * Copyright (C) 2019-2024 HighCapable * https://github.com/HighCapable/YukiReflection * * Apache License Version 2.0 diff --git a/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/classes/rules/MemberRules.kt b/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/classes/rules/MemberRules.kt index 0752428..bb8a458 100644 --- a/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/classes/rules/MemberRules.kt +++ b/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/classes/rules/MemberRules.kt @@ -1,6 +1,6 @@ /* * YukiReflection - An efficient Reflection API for Java and Android built in Kotlin. - * Copyright (C) 2019-2023 HighCapable + * Copyright (C) 2019-2024 HighCapable * https://github.com/HighCapable/YukiReflection * * Apache License Version 2.0 diff --git a/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/classes/rules/MethodRules.kt b/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/classes/rules/MethodRules.kt index c4b9f2f..4f08e1e 100644 --- a/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/classes/rules/MethodRules.kt +++ b/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/classes/rules/MethodRules.kt @@ -1,6 +1,6 @@ /* * YukiReflection - An efficient Reflection API for Java and Android built in Kotlin. - * Copyright (C) 2019-2023 HighCapable + * Copyright (C) 2019-2024 HighCapable * https://github.com/HighCapable/YukiReflection * * Apache License Version 2.0 diff --git a/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/classes/rules/base/BaseRules.kt b/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/classes/rules/base/BaseRules.kt index 1698340..29f635e 100644 --- a/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/classes/rules/base/BaseRules.kt +++ b/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/classes/rules/base/BaseRules.kt @@ -1,6 +1,6 @@ /* * YukiReflection - An efficient Reflection API for Java and Android built in Kotlin. - * Copyright (C) 2019-2023 HighCapable + * Copyright (C) 2019-2024 HighCapable * https://github.com/HighCapable/YukiReflection * * Apache License Version 2.0 diff --git a/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/classes/rules/result/MemberRulesResult.kt b/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/classes/rules/result/MemberRulesResult.kt index fa06d1a..def0bd7 100644 --- a/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/classes/rules/result/MemberRulesResult.kt +++ b/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/classes/rules/result/MemberRulesResult.kt @@ -1,6 +1,6 @@ /* * YukiReflection - An efficient Reflection API for Java and Android built in Kotlin. - * Copyright (C) 2019-2023 HighCapable + * Copyright (C) 2019-2024 HighCapable * https://github.com/HighCapable/YukiReflection * * Apache License Version 2.0 diff --git a/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/members/ConstructorFinder.kt b/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/members/ConstructorFinder.kt index 007707a..1b950f6 100644 --- a/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/members/ConstructorFinder.kt +++ b/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/members/ConstructorFinder.kt @@ -1,6 +1,6 @@ /* * YukiReflection - An efficient Reflection API for Java and Android built in Kotlin. - * Copyright (C) 2019-2023 HighCapable + * Copyright (C) 2019-2024 HighCapable * https://github.com/HighCapable/YukiReflection * * Apache License Version 2.0 diff --git a/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/members/FieldFinder.kt b/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/members/FieldFinder.kt index 6579af5..3814d1b 100644 --- a/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/members/FieldFinder.kt +++ b/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/members/FieldFinder.kt @@ -1,6 +1,6 @@ /* * YukiReflection - An efficient Reflection API for Java and Android built in Kotlin. - * Copyright (C) 2019-2023 HighCapable + * Copyright (C) 2019-2024 HighCapable * https://github.com/HighCapable/YukiReflection * * Apache License Version 2.0 diff --git a/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/members/MethodFinder.kt b/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/members/MethodFinder.kt index 81a8b33..3903428 100644 --- a/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/members/MethodFinder.kt +++ b/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/members/MethodFinder.kt @@ -1,6 +1,6 @@ /* * YukiReflection - An efficient Reflection API for Java and Android built in Kotlin. - * Copyright (C) 2019-2023 HighCapable + * Copyright (C) 2019-2024 HighCapable * https://github.com/HighCapable/YukiReflection * * Apache License Version 2.0 diff --git a/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/members/data/ConstructorRulesData.kt b/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/members/data/ConstructorRulesData.kt index eeab60c..034aee9 100644 --- a/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/members/data/ConstructorRulesData.kt +++ b/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/members/data/ConstructorRulesData.kt @@ -1,6 +1,6 @@ /* * YukiReflection - An efficient Reflection API for Java and Android built in Kotlin. - * Copyright (C) 2019-2023 HighCapable + * Copyright (C) 2019-2024 HighCapable * https://github.com/HighCapable/YukiReflection * * Apache License Version 2.0 diff --git a/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/members/data/FieldRulesData.kt b/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/members/data/FieldRulesData.kt index d1afc64..0447451 100644 --- a/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/members/data/FieldRulesData.kt +++ b/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/members/data/FieldRulesData.kt @@ -1,6 +1,6 @@ /* * YukiReflection - An efficient Reflection API for Java and Android built in Kotlin. - * Copyright (C) 2019-2023 HighCapable + * Copyright (C) 2019-2024 HighCapable * https://github.com/HighCapable/YukiReflection * * Apache License Version 2.0 diff --git a/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/members/data/MemberRulesData.kt b/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/members/data/MemberRulesData.kt index 595cec2..39f05d1 100644 --- a/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/members/data/MemberRulesData.kt +++ b/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/members/data/MemberRulesData.kt @@ -1,6 +1,6 @@ /* * YukiReflection - An efficient Reflection API for Java and Android built in Kotlin. - * Copyright (C) 2019-2023 HighCapable + * Copyright (C) 2019-2024 HighCapable * https://github.com/HighCapable/YukiReflection * * Apache License Version 2.0 diff --git a/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/members/data/MethodRulesData.kt b/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/members/data/MethodRulesData.kt index 9562024..db0cced 100644 --- a/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/members/data/MethodRulesData.kt +++ b/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/members/data/MethodRulesData.kt @@ -1,6 +1,6 @@ /* * YukiReflection - An efficient Reflection API for Java and Android built in Kotlin. - * Copyright (C) 2019-2023 HighCapable + * Copyright (C) 2019-2024 HighCapable * https://github.com/HighCapable/YukiReflection * * Apache License Version 2.0 diff --git a/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/tools/ReflectionTool.kt b/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/tools/ReflectionTool.kt index 053ec70..8f6c29c 100644 --- a/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/tools/ReflectionTool.kt +++ b/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/tools/ReflectionTool.kt @@ -1,6 +1,6 @@ /* * YukiReflection - An efficient Reflection API for Java and Android built in Kotlin. - * Copyright (C) 2019-2023 HighCapable + * Copyright (C) 2019-2024 HighCapable * https://github.com/HighCapable/YukiReflection * * Apache License Version 2.0 diff --git a/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/type/factory/TypeAliasFactory.kt b/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/type/factory/TypeAliasFactory.kt index 7eb5099..288f488 100644 --- a/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/type/factory/TypeAliasFactory.kt +++ b/yukireflection-core/src/main/java/com/highcapable/yukireflection/finder/type/factory/TypeAliasFactory.kt @@ -1,6 +1,6 @@ /* * YukiReflection - An efficient Reflection API for Java and Android built in Kotlin. - * Copyright (C) 2019-2023 HighCapable + * Copyright (C) 2019-2024 HighCapable * https://github.com/HighCapable/YukiReflection * * Apache License Version 2.0 diff --git a/yukireflection-core/src/main/java/com/highcapable/yukireflection/log/YLog.kt b/yukireflection-core/src/main/java/com/highcapable/yukireflection/log/YLog.kt index 799bc90..9a6506d 100644 --- a/yukireflection-core/src/main/java/com/highcapable/yukireflection/log/YLog.kt +++ b/yukireflection-core/src/main/java/com/highcapable/yukireflection/log/YLog.kt @@ -1,6 +1,6 @@ /* * YukiReflection - An efficient Reflection API for Java and Android built in Kotlin. - * Copyright (C) 2019-2023 HighCapable + * Copyright (C) 2019-2024 HighCapable * https://github.com/HighCapable/YukiReflection * * Apache License Version 2.0 diff --git a/yukireflection-core/src/main/java/com/highcapable/yukireflection/type/android/ComponentTypeFactory.kt b/yukireflection-core/src/main/java/com/highcapable/yukireflection/type/android/ComponentTypeFactory.kt index 78e6378..313be07 100644 --- a/yukireflection-core/src/main/java/com/highcapable/yukireflection/type/android/ComponentTypeFactory.kt +++ b/yukireflection-core/src/main/java/com/highcapable/yukireflection/type/android/ComponentTypeFactory.kt @@ -1,6 +1,6 @@ /* * YukiReflection - An efficient Reflection API for Java and Android built in Kotlin. - * Copyright (C) 2019-2023 HighCapable + * Copyright (C) 2019-2024 HighCapable * https://github.com/HighCapable/YukiReflection * * Apache License Version 2.0 diff --git a/yukireflection-core/src/main/java/com/highcapable/yukireflection/type/android/GraphicsTypeFactory.kt b/yukireflection-core/src/main/java/com/highcapable/yukireflection/type/android/GraphicsTypeFactory.kt index 5034948..0a054a9 100644 --- a/yukireflection-core/src/main/java/com/highcapable/yukireflection/type/android/GraphicsTypeFactory.kt +++ b/yukireflection-core/src/main/java/com/highcapable/yukireflection/type/android/GraphicsTypeFactory.kt @@ -1,6 +1,6 @@ /* * YukiReflection - An efficient Reflection API for Java and Android built in Kotlin. - * Copyright (C) 2019-2023 HighCapable + * Copyright (C) 2019-2024 HighCapable * https://github.com/HighCapable/YukiReflection * * Apache License Version 2.0 diff --git a/yukireflection-core/src/main/java/com/highcapable/yukireflection/type/android/ViewTypeFactory.kt b/yukireflection-core/src/main/java/com/highcapable/yukireflection/type/android/ViewTypeFactory.kt index 00d8181..82a9126 100644 --- a/yukireflection-core/src/main/java/com/highcapable/yukireflection/type/android/ViewTypeFactory.kt +++ b/yukireflection-core/src/main/java/com/highcapable/yukireflection/type/android/ViewTypeFactory.kt @@ -1,6 +1,6 @@ /* * YukiReflection - An efficient Reflection API for Java and Android built in Kotlin. - * Copyright (C) 2019-2023 HighCapable + * Copyright (C) 2019-2024 HighCapable * https://github.com/HighCapable/YukiReflection * * Apache License Version 2.0 diff --git a/yukireflection-core/src/main/java/com/highcapable/yukireflection/type/defined/DefinedTypeFactory.kt b/yukireflection-core/src/main/java/com/highcapable/yukireflection/type/defined/DefinedTypeFactory.kt index 75a0fff..2aea46f 100644 --- a/yukireflection-core/src/main/java/com/highcapable/yukireflection/type/defined/DefinedTypeFactory.kt +++ b/yukireflection-core/src/main/java/com/highcapable/yukireflection/type/defined/DefinedTypeFactory.kt @@ -1,6 +1,6 @@ /* * YukiReflection - An efficient Reflection API for Java and Android built in Kotlin. - * Copyright (C) 2019-2023 HighCapable + * Copyright (C) 2019-2024 HighCapable * https://github.com/HighCapable/YukiReflection * * Apache License Version 2.0 diff --git a/yukireflection-core/src/main/java/com/highcapable/yukireflection/type/java/VariableTypeFactory.kt b/yukireflection-core/src/main/java/com/highcapable/yukireflection/type/java/VariableTypeFactory.kt index 355634a..705077b 100644 --- a/yukireflection-core/src/main/java/com/highcapable/yukireflection/type/java/VariableTypeFactory.kt +++ b/yukireflection-core/src/main/java/com/highcapable/yukireflection/type/java/VariableTypeFactory.kt @@ -1,6 +1,6 @@ /* * YukiReflection - An efficient Reflection API for Java and Android built in Kotlin. - * Copyright (C) 2019-2023 HighCapable + * Copyright (C) 2019-2024 HighCapable * https://github.com/HighCapable/YukiReflection * * Apache License Version 2.0 diff --git a/yukireflection-core/src/main/java/com/highcapable/yukireflection/utils/factory/ThreadFactory.kt b/yukireflection-core/src/main/java/com/highcapable/yukireflection/utils/factory/ThreadFactory.kt index 9ce2506..7d59c5a 100644 --- a/yukireflection-core/src/main/java/com/highcapable/yukireflection/utils/factory/ThreadFactory.kt +++ b/yukireflection-core/src/main/java/com/highcapable/yukireflection/utils/factory/ThreadFactory.kt @@ -1,6 +1,6 @@ /* * YukiReflection - An efficient Reflection API for Java and Android built in Kotlin. - * Copyright (C) 2019-2023 HighCapable + * Copyright (C) 2019-2024 HighCapable * https://github.com/HighCapable/YukiReflection * * Apache License Version 2.0 diff --git a/yukireflection-core/src/main/java/com/highcapable/yukireflection/utils/factory/ThrowableFactory.kt b/yukireflection-core/src/main/java/com/highcapable/yukireflection/utils/factory/ThrowableFactory.kt index 4763642..eb87736 100644 --- a/yukireflection-core/src/main/java/com/highcapable/yukireflection/utils/factory/ThrowableFactory.kt +++ b/yukireflection-core/src/main/java/com/highcapable/yukireflection/utils/factory/ThrowableFactory.kt @@ -1,6 +1,6 @@ /* * YukiReflection - An efficient Reflection API for Java and Android built in Kotlin. - * Copyright (C) 2019-2023 HighCapable + * Copyright (C) 2019-2024 HighCapable * https://github.com/HighCapable/YukiReflection * * Apache License Version 2.0 diff --git a/yukireflection-core/src/main/java/com/highcapable/yukireflection/utils/factory/VariableFactory.kt b/yukireflection-core/src/main/java/com/highcapable/yukireflection/utils/factory/VariableFactory.kt index 966bb41..3999eaa 100644 --- a/yukireflection-core/src/main/java/com/highcapable/yukireflection/utils/factory/VariableFactory.kt +++ b/yukireflection-core/src/main/java/com/highcapable/yukireflection/utils/factory/VariableFactory.kt @@ -1,6 +1,6 @@ /* * YukiReflection - An efficient Reflection API for Java and Android built in Kotlin. - * Copyright (C) 2019-2023 HighCapable + * Copyright (C) 2019-2024 HighCapable * https://github.com/HighCapable/YukiReflection * * Apache License Version 2.0