diff --git a/build.gradle.kts b/build.gradle.kts index d8efd2ca6..4b95ae88d 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -75,12 +75,24 @@ allprojects { } spotless { + val targetExclude = "src/test/java/org/seasar/aptina/unit/*.java" + val licenseHeaderFile = rootProject.file("spotless/copyright.java") + lineEndings = com.diffplug.spotless.LineEnding.UNIX java { + targetExclude(targetExclude) googleJavaFormat(catalog.google.java.format.get().version) + licenseHeaderFile(licenseHeaderFile) + } + // https://github.com/diffplug/spotless/issues/532 + format("javaMisc") { + targetExclude(targetExclude) + target("src/**/package-info.java", "src/**/module-info.java") + licenseHeaderFile(licenseHeaderFile, "(package|module|\\/\\*\\*)") } kotlin { ktlint(catalog.ktlint.get().version) + licenseHeaderFile(licenseHeaderFile) } kotlinGradle { ktlint(catalog.ktlint.get().version) diff --git a/doma-core/src/main/java/module-info.java b/doma-core/src/main/java/module-info.java index ba873ab00..a31149b85 100644 --- a/doma-core/src/main/java/module-info.java +++ b/doma-core/src/main/java/module-info.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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. + */ module org.seasar.doma.core { // Exports exports org.seasar.doma; diff --git a/doma-core/src/main/java/org/seasar/doma/AccessLevel.java b/doma-core/src/main/java/org/seasar/doma/AccessLevel.java index 26e339c1e..8d42c56a1 100644 --- a/doma-core/src/main/java/org/seasar/doma/AccessLevel.java +++ b/doma-core/src/main/java/org/seasar/doma/AccessLevel.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma; /** Defines access levels in The Java Language. */ diff --git a/doma-core/src/main/java/org/seasar/doma/AnnotateWith.java b/doma-core/src/main/java/org/seasar/doma/AnnotateWith.java index a2758e110..9a1d265bf 100644 --- a/doma-core/src/main/java/org/seasar/doma/AnnotateWith.java +++ b/doma-core/src/main/java/org/seasar/doma/AnnotateWith.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma; import java.lang.annotation.ElementType; diff --git a/doma-core/src/main/java/org/seasar/doma/Annotation.java b/doma-core/src/main/java/org/seasar/doma/Annotation.java index 5f5e1fff6..3c60274dd 100644 --- a/doma-core/src/main/java/org/seasar/doma/Annotation.java +++ b/doma-core/src/main/java/org/seasar/doma/Annotation.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma; import java.lang.annotation.Retention; diff --git a/doma-core/src/main/java/org/seasar/doma/AnnotationTarget.java b/doma-core/src/main/java/org/seasar/doma/AnnotationTarget.java index 747caed43..fe8ec8ed5 100644 --- a/doma-core/src/main/java/org/seasar/doma/AnnotationTarget.java +++ b/doma-core/src/main/java/org/seasar/doma/AnnotationTarget.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma; /** diff --git a/doma-core/src/main/java/org/seasar/doma/ArrayFactory.java b/doma-core/src/main/java/org/seasar/doma/ArrayFactory.java index cab6d9648..4c74e192b 100644 --- a/doma-core/src/main/java/org/seasar/doma/ArrayFactory.java +++ b/doma-core/src/main/java/org/seasar/doma/ArrayFactory.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma; import java.lang.annotation.ElementType; diff --git a/doma-core/src/main/java/org/seasar/doma/BatchDelete.java b/doma-core/src/main/java/org/seasar/doma/BatchDelete.java index 0456c36c5..bfa81c406 100644 --- a/doma-core/src/main/java/org/seasar/doma/BatchDelete.java +++ b/doma-core/src/main/java/org/seasar/doma/BatchDelete.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma; import java.lang.annotation.ElementType; diff --git a/doma-core/src/main/java/org/seasar/doma/BatchInsert.java b/doma-core/src/main/java/org/seasar/doma/BatchInsert.java index 824d24ad7..250d74b11 100644 --- a/doma-core/src/main/java/org/seasar/doma/BatchInsert.java +++ b/doma-core/src/main/java/org/seasar/doma/BatchInsert.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma; import java.lang.annotation.ElementType; diff --git a/doma-core/src/main/java/org/seasar/doma/BatchUpdate.java b/doma-core/src/main/java/org/seasar/doma/BatchUpdate.java index a0099669c..ba15f509e 100644 --- a/doma-core/src/main/java/org/seasar/doma/BatchUpdate.java +++ b/doma-core/src/main/java/org/seasar/doma/BatchUpdate.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma; import java.lang.annotation.ElementType; diff --git a/doma-core/src/main/java/org/seasar/doma/BlobFactory.java b/doma-core/src/main/java/org/seasar/doma/BlobFactory.java index 7a82dc54f..bd9f7be22 100644 --- a/doma-core/src/main/java/org/seasar/doma/BlobFactory.java +++ b/doma-core/src/main/java/org/seasar/doma/BlobFactory.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma; import java.lang.annotation.ElementType; diff --git a/doma-core/src/main/java/org/seasar/doma/ClobFactory.java b/doma-core/src/main/java/org/seasar/doma/ClobFactory.java index 344c134e0..9b818b206 100644 --- a/doma-core/src/main/java/org/seasar/doma/ClobFactory.java +++ b/doma-core/src/main/java/org/seasar/doma/ClobFactory.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma; import java.lang.annotation.ElementType; diff --git a/doma-core/src/main/java/org/seasar/doma/Column.java b/doma-core/src/main/java/org/seasar/doma/Column.java index 2700b9b19..855a6485f 100644 --- a/doma-core/src/main/java/org/seasar/doma/Column.java +++ b/doma-core/src/main/java/org/seasar/doma/Column.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma; import java.lang.annotation.ElementType; diff --git a/doma-core/src/main/java/org/seasar/doma/Dao.java b/doma-core/src/main/java/org/seasar/doma/Dao.java index 3e722b945..f9e29559d 100644 --- a/doma-core/src/main/java/org/seasar/doma/Dao.java +++ b/doma-core/src/main/java/org/seasar/doma/Dao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma; import java.lang.annotation.ElementType; diff --git a/doma-core/src/main/java/org/seasar/doma/DaoImplementation.java b/doma-core/src/main/java/org/seasar/doma/DaoImplementation.java index b0c8273bf..99ef2e834 100644 --- a/doma-core/src/main/java/org/seasar/doma/DaoImplementation.java +++ b/doma-core/src/main/java/org/seasar/doma/DaoImplementation.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma; import java.lang.annotation.ElementType; diff --git a/doma-core/src/main/java/org/seasar/doma/DaoMethod.java b/doma-core/src/main/java/org/seasar/doma/DaoMethod.java index a610c73c1..9e4266a7d 100644 --- a/doma-core/src/main/java/org/seasar/doma/DaoMethod.java +++ b/doma-core/src/main/java/org/seasar/doma/DaoMethod.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma; import java.lang.annotation.ElementType; diff --git a/doma-core/src/main/java/org/seasar/doma/DataType.java b/doma-core/src/main/java/org/seasar/doma/DataType.java index 6e003f112..af871f35e 100644 --- a/doma-core/src/main/java/org/seasar/doma/DataType.java +++ b/doma-core/src/main/java/org/seasar/doma/DataType.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma; import java.lang.annotation.ElementType; diff --git a/doma-core/src/main/java/org/seasar/doma/Delete.java b/doma-core/src/main/java/org/seasar/doma/Delete.java index e8980bf21..75fe32cd1 100644 --- a/doma-core/src/main/java/org/seasar/doma/Delete.java +++ b/doma-core/src/main/java/org/seasar/doma/Delete.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma; import java.lang.annotation.ElementType; diff --git a/doma-core/src/main/java/org/seasar/doma/DomaException.java b/doma-core/src/main/java/org/seasar/doma/DomaException.java index 7cdd89c3c..5bcbaadae 100644 --- a/doma-core/src/main/java/org/seasar/doma/DomaException.java +++ b/doma-core/src/main/java/org/seasar/doma/DomaException.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma; import org.seasar.doma.message.MessageResource; diff --git a/doma-core/src/main/java/org/seasar/doma/DomaIllegalArgumentException.java b/doma-core/src/main/java/org/seasar/doma/DomaIllegalArgumentException.java index 37690f334..4a3fe9bdf 100644 --- a/doma-core/src/main/java/org/seasar/doma/DomaIllegalArgumentException.java +++ b/doma-core/src/main/java/org/seasar/doma/DomaIllegalArgumentException.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma; import org.seasar.doma.message.Message; diff --git a/doma-core/src/main/java/org/seasar/doma/DomaNullPointerException.java b/doma-core/src/main/java/org/seasar/doma/DomaNullPointerException.java index 94ba0733e..8000548b8 100644 --- a/doma-core/src/main/java/org/seasar/doma/DomaNullPointerException.java +++ b/doma-core/src/main/java/org/seasar/doma/DomaNullPointerException.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma; import org.seasar.doma.message.Message; diff --git a/doma-core/src/main/java/org/seasar/doma/Domain.java b/doma-core/src/main/java/org/seasar/doma/Domain.java index 1bf85fe17..03cd4a22c 100644 --- a/doma-core/src/main/java/org/seasar/doma/Domain.java +++ b/doma-core/src/main/java/org/seasar/doma/Domain.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma; import java.lang.annotation.ElementType; diff --git a/doma-core/src/main/java/org/seasar/doma/DomainConverters.java b/doma-core/src/main/java/org/seasar/doma/DomainConverters.java index 383722d12..c6117095d 100644 --- a/doma-core/src/main/java/org/seasar/doma/DomainConverters.java +++ b/doma-core/src/main/java/org/seasar/doma/DomainConverters.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma; import java.lang.annotation.ElementType; diff --git a/doma-core/src/main/java/org/seasar/doma/DomainTypeImplementation.java b/doma-core/src/main/java/org/seasar/doma/DomainTypeImplementation.java index 5a625be8d..84bd7c174 100644 --- a/doma-core/src/main/java/org/seasar/doma/DomainTypeImplementation.java +++ b/doma-core/src/main/java/org/seasar/doma/DomainTypeImplementation.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma; import java.lang.annotation.ElementType; diff --git a/doma-core/src/main/java/org/seasar/doma/Embeddable.java b/doma-core/src/main/java/org/seasar/doma/Embeddable.java index 4559d6967..aff5e6e33 100644 --- a/doma-core/src/main/java/org/seasar/doma/Embeddable.java +++ b/doma-core/src/main/java/org/seasar/doma/Embeddable.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma; import java.lang.annotation.ElementType; diff --git a/doma-core/src/main/java/org/seasar/doma/EmbeddableTypeImplementation.java b/doma-core/src/main/java/org/seasar/doma/EmbeddableTypeImplementation.java index 70195daa8..052fd847e 100644 --- a/doma-core/src/main/java/org/seasar/doma/EmbeddableTypeImplementation.java +++ b/doma-core/src/main/java/org/seasar/doma/EmbeddableTypeImplementation.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma; import java.lang.annotation.ElementType; diff --git a/doma-core/src/main/java/org/seasar/doma/Entity.java b/doma-core/src/main/java/org/seasar/doma/Entity.java index 9eb07308d..5fdb55f7c 100644 --- a/doma-core/src/main/java/org/seasar/doma/Entity.java +++ b/doma-core/src/main/java/org/seasar/doma/Entity.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma; import java.lang.annotation.ElementType; diff --git a/doma-core/src/main/java/org/seasar/doma/EntityField.java b/doma-core/src/main/java/org/seasar/doma/EntityField.java index 596c45990..794f83e67 100644 --- a/doma-core/src/main/java/org/seasar/doma/EntityField.java +++ b/doma-core/src/main/java/org/seasar/doma/EntityField.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma; import java.lang.annotation.ElementType; diff --git a/doma-core/src/main/java/org/seasar/doma/EntityTypeImplementation.java b/doma-core/src/main/java/org/seasar/doma/EntityTypeImplementation.java index fb7a15b64..cab5699b9 100644 --- a/doma-core/src/main/java/org/seasar/doma/EntityTypeImplementation.java +++ b/doma-core/src/main/java/org/seasar/doma/EntityTypeImplementation.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma; import java.lang.annotation.ElementType; diff --git a/doma-core/src/main/java/org/seasar/doma/ExternalDomain.java b/doma-core/src/main/java/org/seasar/doma/ExternalDomain.java index 212a2e340..187f42149 100644 --- a/doma-core/src/main/java/org/seasar/doma/ExternalDomain.java +++ b/doma-core/src/main/java/org/seasar/doma/ExternalDomain.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma; import java.lang.annotation.ElementType; diff --git a/doma-core/src/main/java/org/seasar/doma/FetchType.java b/doma-core/src/main/java/org/seasar/doma/FetchType.java index 72635de42..5b74de3b8 100644 --- a/doma-core/src/main/java/org/seasar/doma/FetchType.java +++ b/doma-core/src/main/java/org/seasar/doma/FetchType.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma; /** Defines how to fetch rows from an SQL SELECT result set. */ diff --git a/doma-core/src/main/java/org/seasar/doma/Function.java b/doma-core/src/main/java/org/seasar/doma/Function.java index 3d27c6c92..ac2a3b65b 100644 --- a/doma-core/src/main/java/org/seasar/doma/Function.java +++ b/doma-core/src/main/java/org/seasar/doma/Function.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma; import java.lang.annotation.ElementType; diff --git a/doma-core/src/main/java/org/seasar/doma/GeneratedValue.java b/doma-core/src/main/java/org/seasar/doma/GeneratedValue.java index 90105a321..be8011e1f 100644 --- a/doma-core/src/main/java/org/seasar/doma/GeneratedValue.java +++ b/doma-core/src/main/java/org/seasar/doma/GeneratedValue.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma; import java.lang.annotation.ElementType; diff --git a/doma-core/src/main/java/org/seasar/doma/GenerationType.java b/doma-core/src/main/java/org/seasar/doma/GenerationType.java index 82f759afb..b959403d4 100644 --- a/doma-core/src/main/java/org/seasar/doma/GenerationType.java +++ b/doma-core/src/main/java/org/seasar/doma/GenerationType.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma; /** diff --git a/doma-core/src/main/java/org/seasar/doma/Id.java b/doma-core/src/main/java/org/seasar/doma/Id.java index 2a81aff30..29e5fce4f 100644 --- a/doma-core/src/main/java/org/seasar/doma/Id.java +++ b/doma-core/src/main/java/org/seasar/doma/Id.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma; import java.lang.annotation.ElementType; diff --git a/doma-core/src/main/java/org/seasar/doma/In.java b/doma-core/src/main/java/org/seasar/doma/In.java index 3c10e458d..c5dca223b 100644 --- a/doma-core/src/main/java/org/seasar/doma/In.java +++ b/doma-core/src/main/java/org/seasar/doma/In.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma; import java.lang.annotation.ElementType; diff --git a/doma-core/src/main/java/org/seasar/doma/InOut.java b/doma-core/src/main/java/org/seasar/doma/InOut.java index 1a92769fa..55dd0a181 100644 --- a/doma-core/src/main/java/org/seasar/doma/InOut.java +++ b/doma-core/src/main/java/org/seasar/doma/InOut.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma; import java.lang.annotation.ElementType; diff --git a/doma-core/src/main/java/org/seasar/doma/Insert.java b/doma-core/src/main/java/org/seasar/doma/Insert.java index aee396e5a..d3915e9e8 100644 --- a/doma-core/src/main/java/org/seasar/doma/Insert.java +++ b/doma-core/src/main/java/org/seasar/doma/Insert.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma; import java.lang.annotation.ElementType; diff --git a/doma-core/src/main/java/org/seasar/doma/MapKeyNamingType.java b/doma-core/src/main/java/org/seasar/doma/MapKeyNamingType.java index 158224edd..0c6c78b3d 100644 --- a/doma-core/src/main/java/org/seasar/doma/MapKeyNamingType.java +++ b/doma-core/src/main/java/org/seasar/doma/MapKeyNamingType.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma; import org.seasar.doma.internal.util.StringUtil; diff --git a/doma-core/src/main/java/org/seasar/doma/Metamodel.java b/doma-core/src/main/java/org/seasar/doma/Metamodel.java index 563ecf276..70dea088a 100644 --- a/doma-core/src/main/java/org/seasar/doma/Metamodel.java +++ b/doma-core/src/main/java/org/seasar/doma/Metamodel.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma; import java.lang.annotation.Retention; diff --git a/doma-core/src/main/java/org/seasar/doma/MultiInsert.java b/doma-core/src/main/java/org/seasar/doma/MultiInsert.java index 80a086d89..a7d2aad18 100644 --- a/doma-core/src/main/java/org/seasar/doma/MultiInsert.java +++ b/doma-core/src/main/java/org/seasar/doma/MultiInsert.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma; import java.lang.annotation.ElementType; diff --git a/doma-core/src/main/java/org/seasar/doma/NClobFactory.java b/doma-core/src/main/java/org/seasar/doma/NClobFactory.java index 2f681115a..7c6f994c0 100644 --- a/doma-core/src/main/java/org/seasar/doma/NClobFactory.java +++ b/doma-core/src/main/java/org/seasar/doma/NClobFactory.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma; import java.lang.annotation.ElementType; diff --git a/doma-core/src/main/java/org/seasar/doma/OriginalStates.java b/doma-core/src/main/java/org/seasar/doma/OriginalStates.java index dfbcce3cb..4e1407454 100644 --- a/doma-core/src/main/java/org/seasar/doma/OriginalStates.java +++ b/doma-core/src/main/java/org/seasar/doma/OriginalStates.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma; import java.lang.annotation.ElementType; diff --git a/doma-core/src/main/java/org/seasar/doma/Out.java b/doma-core/src/main/java/org/seasar/doma/Out.java index b28e45119..991344d9a 100644 --- a/doma-core/src/main/java/org/seasar/doma/Out.java +++ b/doma-core/src/main/java/org/seasar/doma/Out.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma; import java.lang.annotation.ElementType; diff --git a/doma-core/src/main/java/org/seasar/doma/ParameterName.java b/doma-core/src/main/java/org/seasar/doma/ParameterName.java index 9ea81568d..59bb499e4 100644 --- a/doma-core/src/main/java/org/seasar/doma/ParameterName.java +++ b/doma-core/src/main/java/org/seasar/doma/ParameterName.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma; import java.lang.annotation.ElementType; diff --git a/doma-core/src/main/java/org/seasar/doma/Procedure.java b/doma-core/src/main/java/org/seasar/doma/Procedure.java index 4d1c12951..85e1b892b 100644 --- a/doma-core/src/main/java/org/seasar/doma/Procedure.java +++ b/doma-core/src/main/java/org/seasar/doma/Procedure.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma; import java.lang.annotation.ElementType; diff --git a/doma-core/src/main/java/org/seasar/doma/ResultSet.java b/doma-core/src/main/java/org/seasar/doma/ResultSet.java index 470c6d7f2..cb84a6aca 100644 --- a/doma-core/src/main/java/org/seasar/doma/ResultSet.java +++ b/doma-core/src/main/java/org/seasar/doma/ResultSet.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma; import java.lang.annotation.ElementType; diff --git a/doma-core/src/main/java/org/seasar/doma/SQLXMLFactory.java b/doma-core/src/main/java/org/seasar/doma/SQLXMLFactory.java index a3594287a..534bec977 100644 --- a/doma-core/src/main/java/org/seasar/doma/SQLXMLFactory.java +++ b/doma-core/src/main/java/org/seasar/doma/SQLXMLFactory.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma; import java.lang.annotation.ElementType; diff --git a/doma-core/src/main/java/org/seasar/doma/Scope.java b/doma-core/src/main/java/org/seasar/doma/Scope.java index 3c32e9fba..cfbc075df 100644 --- a/doma-core/src/main/java/org/seasar/doma/Scope.java +++ b/doma-core/src/main/java/org/seasar/doma/Scope.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma; import java.lang.annotation.ElementType; diff --git a/doma-core/src/main/java/org/seasar/doma/Script.java b/doma-core/src/main/java/org/seasar/doma/Script.java index efc44e1cf..7b87716f5 100644 --- a/doma-core/src/main/java/org/seasar/doma/Script.java +++ b/doma-core/src/main/java/org/seasar/doma/Script.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma; import java.lang.annotation.ElementType; diff --git a/doma-core/src/main/java/org/seasar/doma/Select.java b/doma-core/src/main/java/org/seasar/doma/Select.java index 2718683f7..7193caa08 100644 --- a/doma-core/src/main/java/org/seasar/doma/Select.java +++ b/doma-core/src/main/java/org/seasar/doma/Select.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma; import java.lang.annotation.ElementType; diff --git a/doma-core/src/main/java/org/seasar/doma/SelectType.java b/doma-core/src/main/java/org/seasar/doma/SelectType.java index 9b340cdcf..93f4f0b01 100644 --- a/doma-core/src/main/java/org/seasar/doma/SelectType.java +++ b/doma-core/src/main/java/org/seasar/doma/SelectType.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma; import java.util.stream.Collector; diff --git a/doma-core/src/main/java/org/seasar/doma/SequenceGenerator.java b/doma-core/src/main/java/org/seasar/doma/SequenceGenerator.java index 06bfe97e7..ca15bd0a2 100644 --- a/doma-core/src/main/java/org/seasar/doma/SequenceGenerator.java +++ b/doma-core/src/main/java/org/seasar/doma/SequenceGenerator.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma; import java.lang.annotation.ElementType; diff --git a/doma-core/src/main/java/org/seasar/doma/Sql.java b/doma-core/src/main/java/org/seasar/doma/Sql.java index b81345ccb..c6ed8cae3 100644 --- a/doma-core/src/main/java/org/seasar/doma/Sql.java +++ b/doma-core/src/main/java/org/seasar/doma/Sql.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma; import java.lang.annotation.ElementType; diff --git a/doma-core/src/main/java/org/seasar/doma/SqlProcessor.java b/doma-core/src/main/java/org/seasar/doma/SqlProcessor.java index 898904b91..41fe16c69 100644 --- a/doma-core/src/main/java/org/seasar/doma/SqlProcessor.java +++ b/doma-core/src/main/java/org/seasar/doma/SqlProcessor.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma; import java.lang.annotation.ElementType; diff --git a/doma-core/src/main/java/org/seasar/doma/Suppress.java b/doma-core/src/main/java/org/seasar/doma/Suppress.java index 48b5be5f9..6c4fe627e 100644 --- a/doma-core/src/main/java/org/seasar/doma/Suppress.java +++ b/doma-core/src/main/java/org/seasar/doma/Suppress.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma; import java.lang.annotation.ElementType; diff --git a/doma-core/src/main/java/org/seasar/doma/Table.java b/doma-core/src/main/java/org/seasar/doma/Table.java index 80d696564..6ff758b81 100644 --- a/doma-core/src/main/java/org/seasar/doma/Table.java +++ b/doma-core/src/main/java/org/seasar/doma/Table.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma; import java.lang.annotation.ElementType; diff --git a/doma-core/src/main/java/org/seasar/doma/TableGenerator.java b/doma-core/src/main/java/org/seasar/doma/TableGenerator.java index 81aea8a6a..aa3bf2fa4 100644 --- a/doma-core/src/main/java/org/seasar/doma/TableGenerator.java +++ b/doma-core/src/main/java/org/seasar/doma/TableGenerator.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma; import java.lang.annotation.ElementType; diff --git a/doma-core/src/main/java/org/seasar/doma/TenantId.java b/doma-core/src/main/java/org/seasar/doma/TenantId.java index 45f09649e..2a6fcf7bc 100644 --- a/doma-core/src/main/java/org/seasar/doma/TenantId.java +++ b/doma-core/src/main/java/org/seasar/doma/TenantId.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma; import java.lang.annotation.ElementType; diff --git a/doma-core/src/main/java/org/seasar/doma/Transient.java b/doma-core/src/main/java/org/seasar/doma/Transient.java index 814ec0341..d0170b1a2 100644 --- a/doma-core/src/main/java/org/seasar/doma/Transient.java +++ b/doma-core/src/main/java/org/seasar/doma/Transient.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma; import java.lang.annotation.ElementType; diff --git a/doma-core/src/main/java/org/seasar/doma/Update.java b/doma-core/src/main/java/org/seasar/doma/Update.java index b29a41859..fa4b7ea84 100644 --- a/doma-core/src/main/java/org/seasar/doma/Update.java +++ b/doma-core/src/main/java/org/seasar/doma/Update.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma; import java.lang.annotation.ElementType; diff --git a/doma-core/src/main/java/org/seasar/doma/Version.java b/doma-core/src/main/java/org/seasar/doma/Version.java index 9347065c3..21fd29100 100644 --- a/doma-core/src/main/java/org/seasar/doma/Version.java +++ b/doma-core/src/main/java/org/seasar/doma/Version.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma; import java.lang.annotation.ElementType; diff --git a/doma-core/src/main/java/org/seasar/doma/experimental/package-info.java b/doma-core/src/main/java/org/seasar/doma/experimental/package-info.java index f65dcef70..9e10a1ba3 100644 --- a/doma-core/src/main/java/org/seasar/doma/experimental/package-info.java +++ b/doma-core/src/main/java/org/seasar/doma/experimental/package-info.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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. + */ /** * Provides experimental annotations. * diff --git a/doma-core/src/main/java/org/seasar/doma/expr/ExpressionFunctions.java b/doma-core/src/main/java/org/seasar/doma/expr/ExpressionFunctions.java index 50601e398..22d18bf41 100644 --- a/doma-core/src/main/java/org/seasar/doma/expr/ExpressionFunctions.java +++ b/doma-core/src/main/java/org/seasar/doma/expr/ExpressionFunctions.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.expr; import java.sql.Date; diff --git a/doma-core/src/main/java/org/seasar/doma/expr/package-info.java b/doma-core/src/main/java/org/seasar/doma/expr/package-info.java index a4d48f8e8..00022b972 100644 --- a/doma-core/src/main/java/org/seasar/doma/expr/package-info.java +++ b/doma-core/src/main/java/org/seasar/doma/expr/package-info.java @@ -1,2 +1,17 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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. + */ /** Provides class related to expressions. */ package org.seasar.doma.expr; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/Artifact.java b/doma-core/src/main/java/org/seasar/doma/internal/Artifact.java index 47f18408c..28040e172 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/Artifact.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/Artifact.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal; import org.seasar.doma.DomaException; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/ClassName.java b/doma-core/src/main/java/org/seasar/doma/internal/ClassName.java index 5c8705c0f..08d8d1e04 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/ClassName.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/ClassName.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal; import java.util.Objects; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/ClassNames.java b/doma-core/src/main/java/org/seasar/doma/internal/ClassNames.java index a9687ed9e..d1aeb1152 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/ClassNames.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/ClassNames.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal; import static java.util.stream.Collectors.joining; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/Constants.java b/doma-core/src/main/java/org/seasar/doma/internal/Constants.java index fc60e03c0..c38442dc6 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/Constants.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/Constants.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal; import java.nio.charset.Charset; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/RuntimeConfig.java b/doma-core/src/main/java/org/seasar/doma/internal/RuntimeConfig.java index 1f7457501..f95b7d271 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/RuntimeConfig.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/RuntimeConfig.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/WrapException.java b/doma-core/src/main/java/org/seasar/doma/internal/WrapException.java index 9336e3260..bbc382964 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/WrapException.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/WrapException.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal; public class WrapException extends Exception { diff --git a/doma-core/src/main/java/org/seasar/doma/internal/expr/EvaluationResult.java b/doma-core/src/main/java/org/seasar/doma/internal/expr/EvaluationResult.java index 6ed57596b..9ccf80758 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/expr/EvaluationResult.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/expr/EvaluationResult.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.expr; import static org.seasar.doma.internal.util.AssertionUtil.*; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/expr/ExpressionEvaluator.java b/doma-core/src/main/java/org/seasar/doma/internal/expr/ExpressionEvaluator.java index 67348ba9b..d323a06a9 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/expr/ExpressionEvaluator.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/expr/ExpressionEvaluator.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.expr; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/expr/ExpressionException.java b/doma-core/src/main/java/org/seasar/doma/internal/expr/ExpressionException.java index c42d3ab81..88a4188b7 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/expr/ExpressionException.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/expr/ExpressionException.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.expr; import org.seasar.doma.DomaException; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/expr/ExpressionParser.java b/doma-core/src/main/java/org/seasar/doma/internal/expr/ExpressionParser.java index 04057add5..7496f73c1 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/expr/ExpressionParser.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/expr/ExpressionParser.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.expr; import static org.seasar.doma.internal.expr.ExpressionTokenType.*; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/expr/ExpressionReducer.java b/doma-core/src/main/java/org/seasar/doma/internal/expr/ExpressionReducer.java index da26a9a91..1edb53ecb 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/expr/ExpressionReducer.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/expr/ExpressionReducer.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.expr; import static org.seasar.doma.internal.util.AssertionUtil.*; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/expr/ExpressionTokenType.java b/doma-core/src/main/java/org/seasar/doma/internal/expr/ExpressionTokenType.java index 0318ec9e9..868cf8614 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/expr/ExpressionTokenType.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/expr/ExpressionTokenType.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.expr; public enum ExpressionTokenType { diff --git a/doma-core/src/main/java/org/seasar/doma/internal/expr/ExpressionTokenizer.java b/doma-core/src/main/java/org/seasar/doma/internal/expr/ExpressionTokenizer.java index 88e7e3d00..42e7b0ec6 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/expr/ExpressionTokenizer.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/expr/ExpressionTokenizer.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.expr; import static org.seasar.doma.internal.expr.ExpressionTokenType.*; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/expr/NullExpressionFunctions.java b/doma-core/src/main/java/org/seasar/doma/internal/expr/NullExpressionFunctions.java index f9d4a523c..784af267d 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/expr/NullExpressionFunctions.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/expr/NullExpressionFunctions.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.expr; import java.sql.Date; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/expr/Value.java b/doma-core/src/main/java/org/seasar/doma/internal/expr/Value.java index 5eb28978e..04df3bf51 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/expr/Value.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/expr/Value.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.expr; import static org.seasar.doma.internal.util.AssertionUtil.*; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/expr/node/AbstractArithmeticOperatorNode.java b/doma-core/src/main/java/org/seasar/doma/internal/expr/node/AbstractArithmeticOperatorNode.java index 6b009fd56..a0a262326 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/expr/node/AbstractArithmeticOperatorNode.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/expr/node/AbstractArithmeticOperatorNode.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.expr.node; import static org.seasar.doma.internal.util.AssertionUtil.*; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/expr/node/AbstractComparisonOperatorNode.java b/doma-core/src/main/java/org/seasar/doma/internal/expr/node/AbstractComparisonOperatorNode.java index 93cf9a8c3..0d9cb3052 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/expr/node/AbstractComparisonOperatorNode.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/expr/node/AbstractComparisonOperatorNode.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.expr.node; import static org.seasar.doma.internal.util.AssertionUtil.*; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/expr/node/AddOperatorNode.java b/doma-core/src/main/java/org/seasar/doma/internal/expr/node/AddOperatorNode.java index 2dfed0ff3..1765399d9 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/expr/node/AddOperatorNode.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/expr/node/AddOperatorNode.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.expr.node; public class AddOperatorNode extends AbstractArithmeticOperatorNode { diff --git a/doma-core/src/main/java/org/seasar/doma/internal/expr/node/AndOperatorNode.java b/doma-core/src/main/java/org/seasar/doma/internal/expr/node/AndOperatorNode.java index 3563e30d4..cdbff99a6 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/expr/node/AndOperatorNode.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/expr/node/AndOperatorNode.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.expr.node; import static org.seasar.doma.internal.util.AssertionUtil.*; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/expr/node/ArithmeticOperatorNode.java b/doma-core/src/main/java/org/seasar/doma/internal/expr/node/ArithmeticOperatorNode.java index 535879571..4179d36c0 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/expr/node/ArithmeticOperatorNode.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/expr/node/ArithmeticOperatorNode.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.expr.node; public interface ArithmeticOperatorNode extends OperatorNode { diff --git a/doma-core/src/main/java/org/seasar/doma/internal/expr/node/CommaOperatorNode.java b/doma-core/src/main/java/org/seasar/doma/internal/expr/node/CommaOperatorNode.java index eb28aedc8..5455a380f 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/expr/node/CommaOperatorNode.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/expr/node/CommaOperatorNode.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.expr.node; import static org.seasar.doma.internal.util.AssertionUtil.*; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/expr/node/ComparisonOperatorNode.java b/doma-core/src/main/java/org/seasar/doma/internal/expr/node/ComparisonOperatorNode.java index f9d7a4515..1b4219dac 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/expr/node/ComparisonOperatorNode.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/expr/node/ComparisonOperatorNode.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.expr.node; public interface ComparisonOperatorNode extends OperatorNode { diff --git a/doma-core/src/main/java/org/seasar/doma/internal/expr/node/DivideOperatorNode.java b/doma-core/src/main/java/org/seasar/doma/internal/expr/node/DivideOperatorNode.java index 843c63763..375d3d49e 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/expr/node/DivideOperatorNode.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/expr/node/DivideOperatorNode.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.expr.node; public class DivideOperatorNode extends AbstractArithmeticOperatorNode { diff --git a/doma-core/src/main/java/org/seasar/doma/internal/expr/node/EmptyNode.java b/doma-core/src/main/java/org/seasar/doma/internal/expr/node/EmptyNode.java index a490cb5d5..23f7554a8 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/expr/node/EmptyNode.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/expr/node/EmptyNode.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.expr.node; public class EmptyNode implements ExpressionNode { diff --git a/doma-core/src/main/java/org/seasar/doma/internal/expr/node/EqOperatorNode.java b/doma-core/src/main/java/org/seasar/doma/internal/expr/node/EqOperatorNode.java index 9f3ca32bf..92a59b135 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/expr/node/EqOperatorNode.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/expr/node/EqOperatorNode.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.expr.node; public class EqOperatorNode extends AbstractComparisonOperatorNode { diff --git a/doma-core/src/main/java/org/seasar/doma/internal/expr/node/ExpressionLocation.java b/doma-core/src/main/java/org/seasar/doma/internal/expr/node/ExpressionLocation.java index b6684b33f..6aeb18dd7 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/expr/node/ExpressionLocation.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/expr/node/ExpressionLocation.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.expr.node; public class ExpressionLocation { diff --git a/doma-core/src/main/java/org/seasar/doma/internal/expr/node/ExpressionNode.java b/doma-core/src/main/java/org/seasar/doma/internal/expr/node/ExpressionNode.java index d9c0f5876..29d258f41 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/expr/node/ExpressionNode.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/expr/node/ExpressionNode.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.expr.node; public interface ExpressionNode { diff --git a/doma-core/src/main/java/org/seasar/doma/internal/expr/node/ExpressionNodeVisitor.java b/doma-core/src/main/java/org/seasar/doma/internal/expr/node/ExpressionNodeVisitor.java index ff7321fe7..fc30498c1 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/expr/node/ExpressionNodeVisitor.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/expr/node/ExpressionNodeVisitor.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.expr.node; public interface ExpressionNodeVisitor { diff --git a/doma-core/src/main/java/org/seasar/doma/internal/expr/node/FieldOperatorNode.java b/doma-core/src/main/java/org/seasar/doma/internal/expr/node/FieldOperatorNode.java index 14f41ca37..b53eeb851 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/expr/node/FieldOperatorNode.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/expr/node/FieldOperatorNode.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.expr.node; import static org.seasar.doma.internal.util.AssertionUtil.*; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/expr/node/FunctionOperatorNode.java b/doma-core/src/main/java/org/seasar/doma/internal/expr/node/FunctionOperatorNode.java index ca5bbc4c0..62e17728c 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/expr/node/FunctionOperatorNode.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/expr/node/FunctionOperatorNode.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.expr.node; import static org.seasar.doma.internal.util.AssertionUtil.*; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/expr/node/GeOperatorNode.java b/doma-core/src/main/java/org/seasar/doma/internal/expr/node/GeOperatorNode.java index 85e57dc29..43539d7b1 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/expr/node/GeOperatorNode.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/expr/node/GeOperatorNode.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.expr.node; public class GeOperatorNode extends AbstractComparisonOperatorNode { diff --git a/doma-core/src/main/java/org/seasar/doma/internal/expr/node/GtOperatorNode.java b/doma-core/src/main/java/org/seasar/doma/internal/expr/node/GtOperatorNode.java index ea998566c..512e9e56e 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/expr/node/GtOperatorNode.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/expr/node/GtOperatorNode.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.expr.node; public class GtOperatorNode extends AbstractComparisonOperatorNode { diff --git a/doma-core/src/main/java/org/seasar/doma/internal/expr/node/LeOperatorNode.java b/doma-core/src/main/java/org/seasar/doma/internal/expr/node/LeOperatorNode.java index b89bf2ace..a344e2d6a 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/expr/node/LeOperatorNode.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/expr/node/LeOperatorNode.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.expr.node; public class LeOperatorNode extends AbstractComparisonOperatorNode { diff --git a/doma-core/src/main/java/org/seasar/doma/internal/expr/node/LiteralNode.java b/doma-core/src/main/java/org/seasar/doma/internal/expr/node/LiteralNode.java index 60bc32538..05839e42d 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/expr/node/LiteralNode.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/expr/node/LiteralNode.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.expr.node; import static org.seasar.doma.internal.util.AssertionUtil.*; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/expr/node/LogicalBinaryOperatorNode.java b/doma-core/src/main/java/org/seasar/doma/internal/expr/node/LogicalBinaryOperatorNode.java index 9787ff2a2..d71107340 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/expr/node/LogicalBinaryOperatorNode.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/expr/node/LogicalBinaryOperatorNode.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.expr.node; public interface LogicalBinaryOperatorNode extends LogicalOperatorNode { diff --git a/doma-core/src/main/java/org/seasar/doma/internal/expr/node/LogicalOperatorNode.java b/doma-core/src/main/java/org/seasar/doma/internal/expr/node/LogicalOperatorNode.java index c55224e91..1bcdbfa78 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/expr/node/LogicalOperatorNode.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/expr/node/LogicalOperatorNode.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.expr.node; public interface LogicalOperatorNode extends OperatorNode {} diff --git a/doma-core/src/main/java/org/seasar/doma/internal/expr/node/LtOperatorNode.java b/doma-core/src/main/java/org/seasar/doma/internal/expr/node/LtOperatorNode.java index 6409e0477..b5e17cdff 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/expr/node/LtOperatorNode.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/expr/node/LtOperatorNode.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.expr.node; public class LtOperatorNode extends AbstractComparisonOperatorNode { diff --git a/doma-core/src/main/java/org/seasar/doma/internal/expr/node/MethodOperatorNode.java b/doma-core/src/main/java/org/seasar/doma/internal/expr/node/MethodOperatorNode.java index 6b0432af0..d16267791 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/expr/node/MethodOperatorNode.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/expr/node/MethodOperatorNode.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.expr.node; import static org.seasar.doma.internal.util.AssertionUtil.*; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/expr/node/ModOperatorNode.java b/doma-core/src/main/java/org/seasar/doma/internal/expr/node/ModOperatorNode.java index ec42a097b..5fa37ab66 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/expr/node/ModOperatorNode.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/expr/node/ModOperatorNode.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.expr.node; public class ModOperatorNode extends AbstractArithmeticOperatorNode { diff --git a/doma-core/src/main/java/org/seasar/doma/internal/expr/node/MultiplyOperatorNode.java b/doma-core/src/main/java/org/seasar/doma/internal/expr/node/MultiplyOperatorNode.java index bb4cf2635..a9849b2d4 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/expr/node/MultiplyOperatorNode.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/expr/node/MultiplyOperatorNode.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.expr.node; public class MultiplyOperatorNode extends AbstractArithmeticOperatorNode { diff --git a/doma-core/src/main/java/org/seasar/doma/internal/expr/node/NeOperatorNode.java b/doma-core/src/main/java/org/seasar/doma/internal/expr/node/NeOperatorNode.java index e5fe08289..77a5f54f6 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/expr/node/NeOperatorNode.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/expr/node/NeOperatorNode.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.expr.node; public class NeOperatorNode extends AbstractComparisonOperatorNode { diff --git a/doma-core/src/main/java/org/seasar/doma/internal/expr/node/NewOperatorNode.java b/doma-core/src/main/java/org/seasar/doma/internal/expr/node/NewOperatorNode.java index a2c8ff0a7..11c11dbe5 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/expr/node/NewOperatorNode.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/expr/node/NewOperatorNode.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.expr.node; import static org.seasar.doma.internal.util.AssertionUtil.*; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/expr/node/NotOperatorNode.java b/doma-core/src/main/java/org/seasar/doma/internal/expr/node/NotOperatorNode.java index 61c9b8338..16a7abee6 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/expr/node/NotOperatorNode.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/expr/node/NotOperatorNode.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.expr.node; import static org.seasar.doma.internal.util.AssertionUtil.*; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/expr/node/OperatorNode.java b/doma-core/src/main/java/org/seasar/doma/internal/expr/node/OperatorNode.java index 55d288635..e826968eb 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/expr/node/OperatorNode.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/expr/node/OperatorNode.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.expr.node; public interface OperatorNode extends ExpressionNode { diff --git a/doma-core/src/main/java/org/seasar/doma/internal/expr/node/OrOperatorNode.java b/doma-core/src/main/java/org/seasar/doma/internal/expr/node/OrOperatorNode.java index 4ce3daf0e..8c6297be0 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/expr/node/OrOperatorNode.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/expr/node/OrOperatorNode.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.expr.node; import static org.seasar.doma.internal.util.AssertionUtil.*; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/expr/node/ParensNode.java b/doma-core/src/main/java/org/seasar/doma/internal/expr/node/ParensNode.java index 86563826a..4ede7c72c 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/expr/node/ParensNode.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/expr/node/ParensNode.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.expr.node; import static org.seasar.doma.internal.util.AssertionUtil.*; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/expr/node/StaticFieldOperatorNode.java b/doma-core/src/main/java/org/seasar/doma/internal/expr/node/StaticFieldOperatorNode.java index dd0f0e159..6a2e4dc56 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/expr/node/StaticFieldOperatorNode.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/expr/node/StaticFieldOperatorNode.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.expr.node; import static org.seasar.doma.internal.util.AssertionUtil.*; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/expr/node/StaticMethodOperatorNode.java b/doma-core/src/main/java/org/seasar/doma/internal/expr/node/StaticMethodOperatorNode.java index 473b75eb0..dcfa0582a 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/expr/node/StaticMethodOperatorNode.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/expr/node/StaticMethodOperatorNode.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.expr.node; import static org.seasar.doma.internal.util.AssertionUtil.*; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/expr/node/SubtractOperatorNode.java b/doma-core/src/main/java/org/seasar/doma/internal/expr/node/SubtractOperatorNode.java index 4edd45dc5..5d6c2b8bb 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/expr/node/SubtractOperatorNode.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/expr/node/SubtractOperatorNode.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.expr.node; public class SubtractOperatorNode extends AbstractArithmeticOperatorNode { diff --git a/doma-core/src/main/java/org/seasar/doma/internal/expr/node/VariableNode.java b/doma-core/src/main/java/org/seasar/doma/internal/expr/node/VariableNode.java index 377aea2e6..dcd5b71a8 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/expr/node/VariableNode.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/expr/node/VariableNode.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.expr.node; public class VariableNode implements ExpressionNode { diff --git a/doma-core/src/main/java/org/seasar/doma/internal/expr/util/ExpressionUtil.java b/doma-core/src/main/java/org/seasar/doma/internal/expr/util/ExpressionUtil.java index 5c1d68139..fcfcd5770 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/expr/util/ExpressionUtil.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/expr/util/ExpressionUtil.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.expr.util; public final class ExpressionUtil { diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/AbstractCollectorHandler.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/AbstractCollectorHandler.java index e61f850a5..96c692cad 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/AbstractCollectorHandler.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/AbstractCollectorHandler.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.command; import java.sql.ResultSet; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/AbstractIterationHandler.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/AbstractIterationHandler.java index f5d8e8c57..165b77462 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/AbstractIterationHandler.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/AbstractIterationHandler.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.command; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/AbstractObjectProvider.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/AbstractObjectProvider.java index 780cdfd8d..d1357bcd5 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/AbstractObjectProvider.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/AbstractObjectProvider.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.command; import java.sql.ResultSet; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/AbstractParameterBinder.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/AbstractParameterBinder.java index ff45ba6e5..a3a99540d 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/AbstractParameterBinder.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/AbstractParameterBinder.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.command; import java.sql.PreparedStatement; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/AbstractResultListHandler.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/AbstractResultListHandler.java index d562c23b7..838bc1307 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/AbstractResultListHandler.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/AbstractResultListHandler.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.command; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/AbstractSingleResultHandler.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/AbstractSingleResultHandler.java index cdfeac0bd..b33bda0ea 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/AbstractSingleResultHandler.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/AbstractSingleResultHandler.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.command; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/AbstractStreamHandler.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/AbstractStreamHandler.java index 60a6c9679..194d7a723 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/AbstractStreamHandler.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/AbstractStreamHandler.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.command; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/BasicCollectorHandler.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/BasicCollectorHandler.java index 51fa3db0d..33a1cf006 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/BasicCollectorHandler.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/BasicCollectorHandler.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.command; import java.util.function.Supplier; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/BasicResultListHandler.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/BasicResultListHandler.java index 0a57d7225..fb93ac44b 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/BasicResultListHandler.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/BasicResultListHandler.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.command; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/BasicSingleResultHandler.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/BasicSingleResultHandler.java index 5c0f58916..f24a33189 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/BasicSingleResultHandler.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/BasicSingleResultHandler.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.command; import java.util.function.Supplier; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/BasicStreamHandler.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/BasicStreamHandler.java index c5555647c..926c1fe38 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/BasicStreamHandler.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/BasicStreamHandler.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.command; import java.util.function.Function; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/CallableSqlParameterBinder.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/CallableSqlParameterBinder.java index 9e5daa72c..da3b956bc 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/CallableSqlParameterBinder.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/CallableSqlParameterBinder.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.command; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/CallableSqlParameterFetcher.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/CallableSqlParameterFetcher.java index ffb05f1b1..95bf1b88f 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/CallableSqlParameterFetcher.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/CallableSqlParameterFetcher.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.command; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/DomainCollectorHandler.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/DomainCollectorHandler.java index 0d6a04a74..952dcf663 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/DomainCollectorHandler.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/DomainCollectorHandler.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.command; import java.util.stream.Collector; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/DomainResultListHandler.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/DomainResultListHandler.java index 116e40fde..ecd6c941e 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/DomainResultListHandler.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/DomainResultListHandler.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.command; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/DomainSingleResultHandler.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/DomainSingleResultHandler.java index 9db6323d9..22ae3070d 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/DomainSingleResultHandler.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/DomainSingleResultHandler.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.command; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/DomainStreamHandler.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/DomainStreamHandler.java index 444747bec..3654e6a4d 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/DomainStreamHandler.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/DomainStreamHandler.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.command; import java.util.function.Function; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/EntityCollectorHandler.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/EntityCollectorHandler.java index bc3df949d..ecd7d276d 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/EntityCollectorHandler.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/EntityCollectorHandler.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.command; import java.util.stream.Collector; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/EntityIterationHandler.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/EntityIterationHandler.java index 0329a9bf7..b9a2d4f6e 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/EntityIterationHandler.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/EntityIterationHandler.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.command; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/EntityProvider.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/EntityProvider.java index 2d0931359..3080bf348 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/EntityProvider.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/EntityProvider.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.command; import static org.seasar.doma.internal.Constants.ROWNUMBER_COLUMN_NAME; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/EntityResultListHandler.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/EntityResultListHandler.java index 870084dfb..d64e67966 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/EntityResultListHandler.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/EntityResultListHandler.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.command; import org.seasar.doma.jdbc.entity.EntityType; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/EntitySingleResultHandler.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/EntitySingleResultHandler.java index 57074b0d7..46b2ae5aa 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/EntitySingleResultHandler.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/EntitySingleResultHandler.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.command; import org.seasar.doma.jdbc.entity.EntityType; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/EntityStreamHandler.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/EntityStreamHandler.java index 387d52dc1..9b9314624 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/EntityStreamHandler.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/EntityStreamHandler.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.command; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/JdbcOutParameterGetter.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/JdbcOutParameterGetter.java index e984c08af..ad85cc5ae 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/JdbcOutParameterGetter.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/JdbcOutParameterGetter.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.command; import static org.seasar.doma.internal.util.AssertionUtil.*; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/JdbcValueGetter.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/JdbcValueGetter.java index 505aead31..346b4082a 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/JdbcValueGetter.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/JdbcValueGetter.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.command; import static org.seasar.doma.internal.util.AssertionUtil.*; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/JdbcValueSetter.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/JdbcValueSetter.java index 916b2faa0..1263750c5 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/JdbcValueSetter.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/JdbcValueSetter.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.command; import static org.seasar.doma.internal.util.AssertionUtil.*; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/MapCollectorHandler.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/MapCollectorHandler.java index d6765284b..c95ebdc8a 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/MapCollectorHandler.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/MapCollectorHandler.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.command; import java.util.Map; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/MapIterationHandler.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/MapIterationHandler.java index c39a359e4..98a655b89 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/MapIterationHandler.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/MapIterationHandler.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.command; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/MapProvider.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/MapProvider.java index 371f06299..bd24a7f51 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/MapProvider.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/MapProvider.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.command; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/MapResultListHandler.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/MapResultListHandler.java index 9417b6425..847136036 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/MapResultListHandler.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/MapResultListHandler.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.command; import java.util.Map; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/MapSingleResultHandler.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/MapSingleResultHandler.java index 3d491049d..51f2b9e2f 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/MapSingleResultHandler.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/MapSingleResultHandler.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.command; import java.util.Map; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/MapStreamHandler.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/MapStreamHandler.java index 14490b872..e2e4eaf17 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/MapStreamHandler.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/MapStreamHandler.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.command; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/OptionalBasicCollectorHandler.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/OptionalBasicCollectorHandler.java index 3cf170875..def990035 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/OptionalBasicCollectorHandler.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/OptionalBasicCollectorHandler.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.command; import java.util.Optional; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/OptionalBasicResultListHandler.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/OptionalBasicResultListHandler.java index 797fd7104..a2559ba7f 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/OptionalBasicResultListHandler.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/OptionalBasicResultListHandler.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.command; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/OptionalBasicSingleResultHandler.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/OptionalBasicSingleResultHandler.java index 3a58132a6..88fb2e7b1 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/OptionalBasicSingleResultHandler.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/OptionalBasicSingleResultHandler.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.command; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/OptionalBasicStreamHandler.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/OptionalBasicStreamHandler.java index 36976ca9c..024803812 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/OptionalBasicStreamHandler.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/OptionalBasicStreamHandler.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.command; import java.util.Optional; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/OptionalDomainCollectorHandler.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/OptionalDomainCollectorHandler.java index 15ac24584..9483b1f7b 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/OptionalDomainCollectorHandler.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/OptionalDomainCollectorHandler.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.command; import java.util.Optional; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/OptionalDomainResultListHandler.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/OptionalDomainResultListHandler.java index 63b662a88..8282b816a 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/OptionalDomainResultListHandler.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/OptionalDomainResultListHandler.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.command; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/OptionalDomainSingleResultHandler.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/OptionalDomainSingleResultHandler.java index 4d76b003b..206c5b8ee 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/OptionalDomainSingleResultHandler.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/OptionalDomainSingleResultHandler.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.command; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/OptionalDomainStreamHandler.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/OptionalDomainStreamHandler.java index 2eeaf329c..6166c30a0 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/OptionalDomainStreamHandler.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/OptionalDomainStreamHandler.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.command; import java.util.Optional; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/OptionalDoubleCollectorHandler.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/OptionalDoubleCollectorHandler.java index d0b9c4ce7..4f4f29cc1 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/OptionalDoubleCollectorHandler.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/OptionalDoubleCollectorHandler.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.command; import java.util.OptionalDouble; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/OptionalDoubleResultListHandler.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/OptionalDoubleResultListHandler.java index da0946ad0..8f250e77b 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/OptionalDoubleResultListHandler.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/OptionalDoubleResultListHandler.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.command; import java.util.OptionalDouble; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/OptionalDoubleSingleResultHandler.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/OptionalDoubleSingleResultHandler.java index e9361262f..e90c6d757 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/OptionalDoubleSingleResultHandler.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/OptionalDoubleSingleResultHandler.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.command; import java.util.OptionalDouble; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/OptionalDoubleStreamHandler.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/OptionalDoubleStreamHandler.java index 5ddfc5422..a0b00f844 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/OptionalDoubleStreamHandler.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/OptionalDoubleStreamHandler.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.command; import java.util.OptionalDouble; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/OptionalEntitySingleResultHandler.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/OptionalEntitySingleResultHandler.java index 81159e08d..793b1e315 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/OptionalEntitySingleResultHandler.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/OptionalEntitySingleResultHandler.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.command; import java.util.Optional; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/OptionalIntCollectorHandler.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/OptionalIntCollectorHandler.java index 8fb76f92f..871cc1fe9 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/OptionalIntCollectorHandler.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/OptionalIntCollectorHandler.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.command; import java.util.OptionalInt; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/OptionalIntResultListHandler.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/OptionalIntResultListHandler.java index 7390f73c8..5ea2dbe70 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/OptionalIntResultListHandler.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/OptionalIntResultListHandler.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.command; import java.util.OptionalInt; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/OptionalIntSingleResultHandler.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/OptionalIntSingleResultHandler.java index 1a5cce326..183029410 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/OptionalIntSingleResultHandler.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/OptionalIntSingleResultHandler.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.command; import java.util.OptionalInt; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/OptionalIntStreamHandler.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/OptionalIntStreamHandler.java index 417422e72..ba0573af5 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/OptionalIntStreamHandler.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/OptionalIntStreamHandler.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.command; import java.util.OptionalInt; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/OptionalLongCollectorHandler.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/OptionalLongCollectorHandler.java index 8b719a469..f45582843 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/OptionalLongCollectorHandler.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/OptionalLongCollectorHandler.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.command; import java.util.OptionalLong; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/OptionalLongResultListHandler.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/OptionalLongResultListHandler.java index 668d358f7..433e91a11 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/OptionalLongResultListHandler.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/OptionalLongResultListHandler.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.command; import java.util.OptionalLong; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/OptionalLongSingleResultHandler.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/OptionalLongSingleResultHandler.java index e78d6440a..892704ee4 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/OptionalLongSingleResultHandler.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/OptionalLongSingleResultHandler.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.command; import java.util.OptionalLong; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/OptionalLongStreamHandler.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/OptionalLongStreamHandler.java index c8fe95369..5d595146a 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/OptionalLongStreamHandler.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/OptionalLongStreamHandler.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.command; import java.util.OptionalLong; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/OptionalMapSingleResultHandler.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/OptionalMapSingleResultHandler.java index 73999ebdb..03385d9fc 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/OptionalMapSingleResultHandler.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/OptionalMapSingleResultHandler.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.command; import java.util.Map; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/OptionalSingleResultCallback.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/OptionalSingleResultCallback.java index 3b547c2d7..6c26b0817 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/OptionalSingleResultCallback.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/OptionalSingleResultCallback.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.command; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/ParameterBinder.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/ParameterBinder.java index b3d76c4b6..432ef2fac 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/ParameterBinder.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/ParameterBinder.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.command; import java.sql.PreparedStatement; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/PreparedSqlParameterBinder.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/PreparedSqlParameterBinder.java index b27c94e4c..24a1bdaf5 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/PreparedSqlParameterBinder.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/PreparedSqlParameterBinder.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.command; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/ResultListCallback.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/ResultListCallback.java index 1e4e07767..1795acf29 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/ResultListCallback.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/ResultListCallback.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.command; import java.util.ArrayList; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/ResultSetIterator.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/ResultSetIterator.java index 34874143b..6d1297dc4 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/ResultSetIterator.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/ResultSetIterator.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.command; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/ScalarCollectorHandler.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/ScalarCollectorHandler.java index 3a9d939fe..85503e852 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/ScalarCollectorHandler.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/ScalarCollectorHandler.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.command; import java.util.function.Supplier; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/ScalarIterationHandler.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/ScalarIterationHandler.java index 7cfa84d6e..c5c59da71 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/ScalarIterationHandler.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/ScalarIterationHandler.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.command; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/ScalarProvider.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/ScalarProvider.java index d677b5aad..a4e99b7c1 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/ScalarProvider.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/ScalarProvider.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.command; import static org.seasar.doma.internal.Constants.ROWNUMBER_COLUMN_NAME; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/ScalarResultListHandler.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/ScalarResultListHandler.java index c01b39150..6fa5a067e 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/ScalarResultListHandler.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/ScalarResultListHandler.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.command; import java.util.function.Supplier; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/ScalarSingleResultHandler.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/ScalarSingleResultHandler.java index d6bb9e0be..129be302e 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/ScalarSingleResultHandler.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/ScalarSingleResultHandler.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.command; import java.util.function.Supplier; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/ScalarStreamHandler.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/ScalarStreamHandler.java index a95c817c7..ecbb54734 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/ScalarStreamHandler.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/ScalarStreamHandler.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.command; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/ScriptReader.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/ScriptReader.java index 600e1bb24..e727c0b73 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/ScriptReader.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/ScriptReader.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.command; import static org.seasar.doma.internal.util.AssertionUtil.*; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/ScriptTokenType.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/ScriptTokenType.java index b9b261228..50b076703 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/ScriptTokenType.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/ScriptTokenType.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.command; public enum ScriptTokenType { diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/ScriptTokenizer.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/ScriptTokenizer.java index eee4edf91..596c35e45 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/ScriptTokenizer.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/ScriptTokenizer.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.command; import static org.seasar.doma.internal.jdbc.command.ScriptTokenType.*; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/SingleResultCallback.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/SingleResultCallback.java index cc8807323..3716499b5 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/SingleResultCallback.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/command/SingleResultCallback.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.command; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/dao/DaoImplSupport.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/dao/DaoImplSupport.java index e3bb7931a..2549e959b 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/dao/DaoImplSupport.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/dao/DaoImplSupport.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.dao; import java.lang.reflect.Method; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/dao/NeverClosedConnection.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/dao/NeverClosedConnection.java index 4766fc1fa..36f70307c 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/dao/NeverClosedConnection.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/dao/NeverClosedConnection.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.dao; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/dao/NeverClosedConnectionProvider.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/dao/NeverClosedConnectionProvider.java index f3e389e84..245237202 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/dao/NeverClosedConnectionProvider.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/dao/NeverClosedConnectionProvider.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.dao; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/dialect/AbstractTransformer.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/dialect/AbstractTransformer.java index ff389d9ef..ace959cb0 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/dialect/AbstractTransformer.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/dialect/AbstractTransformer.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.dialect; import org.seasar.doma.internal.jdbc.sql.SimpleSqlNodeVisitor; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/dialect/Db2ForUpdateTransformer.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/dialect/Db2ForUpdateTransformer.java index 43dc83f79..d21941f51 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/dialect/Db2ForUpdateTransformer.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/dialect/Db2ForUpdateTransformer.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.dialect; import org.seasar.doma.internal.jdbc.sql.node.ForUpdateClauseNode; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/dialect/Db2PagingTransformer.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/dialect/Db2PagingTransformer.java index 619aa9476..48e1c32ac 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/dialect/Db2PagingTransformer.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/dialect/Db2PagingTransformer.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.dialect; import org.seasar.doma.internal.jdbc.sql.node.AnonymousNode; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/dialect/H212126ForUpdateTransformer.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/dialect/H212126ForUpdateTransformer.java index 8b02f26c4..7d445c8c9 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/dialect/H212126ForUpdateTransformer.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/dialect/H212126ForUpdateTransformer.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.dialect; import org.seasar.doma.internal.jdbc.sql.node.ForUpdateClauseNode; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/dialect/H212126PagingTransformer.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/dialect/H212126PagingTransformer.java index 6096ffa78..b4079c93f 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/dialect/H212126PagingTransformer.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/dialect/H212126PagingTransformer.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.dialect; import org.seasar.doma.internal.jdbc.sql.node.FragmentNode; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/dialect/H2ForUpdateTransformer.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/dialect/H2ForUpdateTransformer.java index 1a76ae2cb..dfd81dfea 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/dialect/H2ForUpdateTransformer.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/dialect/H2ForUpdateTransformer.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.dialect; import org.seasar.doma.jdbc.SelectForUpdateType; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/dialect/H2PagingTransformer.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/dialect/H2PagingTransformer.java index 0edf838ce..e384b4606 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/dialect/H2PagingTransformer.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/dialect/H2PagingTransformer.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.dialect; import org.seasar.doma.internal.jdbc.sql.node.FragmentNode; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/dialect/HsqldbPagingTransformer.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/dialect/HsqldbPagingTransformer.java index 61d9059c8..f84bfb78f 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/dialect/HsqldbPagingTransformer.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/dialect/HsqldbPagingTransformer.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.dialect; import org.seasar.doma.internal.jdbc.sql.node.FragmentNode; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/dialect/Mssql2008ForUpdateTransformer.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/dialect/Mssql2008ForUpdateTransformer.java index 5cf130ca1..0540d1243 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/dialect/Mssql2008ForUpdateTransformer.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/dialect/Mssql2008ForUpdateTransformer.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.dialect; import org.seasar.doma.internal.jdbc.sql.node.FragmentNode; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/dialect/Mssql2008PagingTransformer.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/dialect/Mssql2008PagingTransformer.java index 1773d9d38..6c0b9aac9 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/dialect/Mssql2008PagingTransformer.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/dialect/Mssql2008PagingTransformer.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.dialect; import java.util.Optional; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/dialect/MssqlForUpdateTransformer.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/dialect/MssqlForUpdateTransformer.java index df55d5680..87591b4e3 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/dialect/MssqlForUpdateTransformer.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/dialect/MssqlForUpdateTransformer.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.dialect; import org.seasar.doma.jdbc.SelectForUpdateType; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/dialect/MssqlPagingTransformer.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/dialect/MssqlPagingTransformer.java index b3ca0a952..a566595b4 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/dialect/MssqlPagingTransformer.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/dialect/MssqlPagingTransformer.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.dialect; import org.seasar.doma.internal.jdbc.sql.node.FragmentNode; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/dialect/MysqlCountCalculatingTransformer.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/dialect/MysqlCountCalculatingTransformer.java index 5e2f089b6..c45063826 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/dialect/MysqlCountCalculatingTransformer.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/dialect/MysqlCountCalculatingTransformer.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.dialect; import org.seasar.doma.internal.jdbc.sql.node.FragmentNode; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/dialect/MysqlCountGettingTransformer.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/dialect/MysqlCountGettingTransformer.java index ede144032..74cfa14db 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/dialect/MysqlCountGettingTransformer.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/dialect/MysqlCountGettingTransformer.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.dialect; import org.seasar.doma.internal.jdbc.sql.node.FragmentNode; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/dialect/MysqlForUpdateTransformer.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/dialect/MysqlForUpdateTransformer.java index 177c6d91d..ab3ed4014 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/dialect/MysqlForUpdateTransformer.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/dialect/MysqlForUpdateTransformer.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.dialect; import java.util.Objects; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/dialect/MysqlPagingTransformer.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/dialect/MysqlPagingTransformer.java index 3c667f9f4..d20971ebe 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/dialect/MysqlPagingTransformer.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/dialect/MysqlPagingTransformer.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.dialect; import org.seasar.doma.internal.jdbc.sql.node.FragmentNode; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/dialect/OracleForUpdateTransformer.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/dialect/OracleForUpdateTransformer.java index 591ce64e3..891f1c7d1 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/dialect/OracleForUpdateTransformer.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/dialect/OracleForUpdateTransformer.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.dialect; import org.seasar.doma.internal.jdbc.sql.node.ForUpdateClauseNode; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/dialect/OraclePagingTransformer.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/dialect/OraclePagingTransformer.java index 7171f7524..02f24a4b5 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/dialect/OraclePagingTransformer.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/dialect/OraclePagingTransformer.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.dialect; import static org.seasar.doma.internal.Constants.ROWNUMBER_COLUMN_NAME; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/dialect/PostgresForUpdateTransformer.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/dialect/PostgresForUpdateTransformer.java index 2d94c3a35..779198e46 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/dialect/PostgresForUpdateTransformer.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/dialect/PostgresForUpdateTransformer.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.dialect; import org.seasar.doma.internal.jdbc.sql.node.ForUpdateClauseNode; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/dialect/PostgresPagingTransformer.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/dialect/PostgresPagingTransformer.java index 3305fcd5c..80fe5476a 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/dialect/PostgresPagingTransformer.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/dialect/PostgresPagingTransformer.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.dialect; import org.seasar.doma.internal.jdbc.sql.node.FragmentNode; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/dialect/SqlitePagingTransformer.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/dialect/SqlitePagingTransformer.java index 3fc2f73a3..7ab6385bb 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/dialect/SqlitePagingTransformer.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/dialect/SqlitePagingTransformer.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.dialect; import org.seasar.doma.internal.jdbc.sql.node.FragmentNode; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/dialect/StandardCountCalculatingTransformer.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/dialect/StandardCountCalculatingTransformer.java index 53858ea92..5aa6cf660 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/dialect/StandardCountCalculatingTransformer.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/dialect/StandardCountCalculatingTransformer.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.dialect; import org.seasar.doma.internal.jdbc.sql.node.AnonymousNode; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/dialect/StandardCountGettingTransformer.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/dialect/StandardCountGettingTransformer.java index f97706990..81adcb214 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/dialect/StandardCountGettingTransformer.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/dialect/StandardCountGettingTransformer.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.dialect; import org.seasar.doma.internal.jdbc.sql.node.AnonymousNode; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/dialect/StandardForUpdateTransformer.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/dialect/StandardForUpdateTransformer.java index cdef6087f..e99092d93 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/dialect/StandardForUpdateTransformer.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/dialect/StandardForUpdateTransformer.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.dialect; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/dialect/StandardPagingTransformer.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/dialect/StandardPagingTransformer.java index 9502a3730..cfc1e70cc 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/dialect/StandardPagingTransformer.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/dialect/StandardPagingTransformer.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.dialect; import static org.seasar.doma.internal.Constants.ROWNUMBER_COLUMN_NAME; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/entity/AbstractEntityListenerContext.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/entity/AbstractEntityListenerContext.java index 9ebed5665..66968b375 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/entity/AbstractEntityListenerContext.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/entity/AbstractEntityListenerContext.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.entity; import static org.seasar.doma.internal.util.AssertionUtil.*; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/entity/AbstractPostDeleteContext.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/entity/AbstractPostDeleteContext.java index b11266aaf..85465d7fe 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/entity/AbstractPostDeleteContext.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/entity/AbstractPostDeleteContext.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.entity; import java.lang.reflect.Method; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/entity/AbstractPostInsertContext.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/entity/AbstractPostInsertContext.java index 46d8ad543..b647a0721 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/entity/AbstractPostInsertContext.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/entity/AbstractPostInsertContext.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.entity; import java.lang.reflect.Method; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/entity/AbstractPostUpdateContext.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/entity/AbstractPostUpdateContext.java index 32f4c4e38..7008958e1 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/entity/AbstractPostUpdateContext.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/entity/AbstractPostUpdateContext.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.entity; import static org.seasar.doma.internal.util.AssertionUtil.*; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/entity/AbstractPreDeleteContext.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/entity/AbstractPreDeleteContext.java index 44a190d7d..55c0501f0 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/entity/AbstractPreDeleteContext.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/entity/AbstractPreDeleteContext.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.entity; import java.lang.reflect.Method; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/entity/AbstractPreInsertContext.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/entity/AbstractPreInsertContext.java index b149123d8..3e63ecac7 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/entity/AbstractPreInsertContext.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/entity/AbstractPreInsertContext.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.entity; import java.lang.reflect.Method; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/entity/AbstractPreUpdateContext.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/entity/AbstractPreUpdateContext.java index f8b30c595..35f7d6be0 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/entity/AbstractPreUpdateContext.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/entity/AbstractPreUpdateContext.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.entity; import static org.seasar.doma.internal.util.AssertionUtil.*; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/entity/NullEntityListenerSuppliers.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/entity/NullEntityListenerSuppliers.java index 25b28e0ea..3038567e4 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/entity/NullEntityListenerSuppliers.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/entity/NullEntityListenerSuppliers.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.entity; import java.util.function.Supplier; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/entity/PropertyField.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/entity/PropertyField.java index 46c5e2b5c..b8996e459 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/entity/PropertyField.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/entity/PropertyField.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.entity; import java.lang.reflect.Field; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/entity/TableNames.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/entity/TableNames.java index b504cc1ad..9a094eb0c 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/entity/TableNames.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/entity/TableNames.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.entity; import java.util.function.BiFunction; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/scalar/BasicScalar.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/scalar/BasicScalar.java index d9ff4bd9f..b8e77559d 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/scalar/BasicScalar.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/scalar/BasicScalar.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.scalar; import java.util.Optional; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/scalar/BasicScalarSuppliers.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/scalar/BasicScalarSuppliers.java index b59a3badc..401a10cd5 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/scalar/BasicScalarSuppliers.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/scalar/BasicScalarSuppliers.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.scalar; import java.math.BigDecimal; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/scalar/OptionalBasicScalar.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/scalar/OptionalBasicScalar.java index b7baac3cc..173f0298d 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/scalar/OptionalBasicScalar.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/scalar/OptionalBasicScalar.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.scalar; import java.util.Optional; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/scalar/OptionalBasicScalarSuppliers.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/scalar/OptionalBasicScalarSuppliers.java index 9d833eb96..9266fc776 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/scalar/OptionalBasicScalarSuppliers.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/scalar/OptionalBasicScalarSuppliers.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.scalar; import java.math.BigDecimal; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/scalar/OptionalDoubleScalar.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/scalar/OptionalDoubleScalar.java index e42fdec8f..c2e0b904b 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/scalar/OptionalDoubleScalar.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/scalar/OptionalDoubleScalar.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.scalar; import java.util.Optional; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/scalar/OptionalDoubleScalarSuppliers.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/scalar/OptionalDoubleScalarSuppliers.java index 9ed2af03d..79328a0a8 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/scalar/OptionalDoubleScalarSuppliers.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/scalar/OptionalDoubleScalarSuppliers.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.scalar; import java.util.OptionalDouble; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/scalar/OptionalIntScalar.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/scalar/OptionalIntScalar.java index b50933c9d..d64093f42 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/scalar/OptionalIntScalar.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/scalar/OptionalIntScalar.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.scalar; import java.util.Optional; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/scalar/OptionalIntScalarSuppliers.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/scalar/OptionalIntScalarSuppliers.java index ca7888fef..e554b1e8d 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/scalar/OptionalIntScalarSuppliers.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/scalar/OptionalIntScalarSuppliers.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.scalar; import java.util.OptionalInt; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/scalar/OptionalLongScalar.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/scalar/OptionalLongScalar.java index 23a365afd..c6a4238e2 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/scalar/OptionalLongScalar.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/scalar/OptionalLongScalar.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.scalar; import java.util.Optional; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/scalar/OptionalLongScalarSuppliers.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/scalar/OptionalLongScalarSuppliers.java index f775b70b0..b6b518156 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/scalar/OptionalLongScalarSuppliers.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/scalar/OptionalLongScalarSuppliers.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.scalar; import java.util.OptionalLong; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/scalar/Scalar.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/scalar/Scalar.java index 9295776ef..b05a5fd98 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/scalar/Scalar.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/scalar/Scalar.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.scalar; import org.seasar.doma.jdbc.JdbcMappable; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/scalar/ScalarException.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/scalar/ScalarException.java index 39dc9fae1..20c2eb38b 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/scalar/ScalarException.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/scalar/ScalarException.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.scalar; import org.seasar.doma.DomaException; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/scalar/Scalars.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/scalar/Scalars.java index 17cdfdcb5..a929ea66c 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/scalar/Scalars.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/scalar/Scalars.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.scalar; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/AbstractListParameter.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/AbstractListParameter.java index 0ba6c62d9..357b63240 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/AbstractListParameter.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/AbstractListParameter.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.sql; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/AbstractResultListParameter.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/AbstractResultListParameter.java index e073a1b47..3bb712468 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/AbstractResultListParameter.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/AbstractResultListParameter.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.sql; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/BasicInOutParameter.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/BasicInOutParameter.java index 322b6c6ed..2b19474ae 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/BasicInOutParameter.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/BasicInOutParameter.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.sql; import java.util.function.Supplier; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/BasicInParameter.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/BasicInParameter.java index 00444a1be..440f09000 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/BasicInParameter.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/BasicInParameter.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.sql; import java.util.function.Supplier; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/BasicListParameter.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/BasicListParameter.java index d7abb26ea..244f08274 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/BasicListParameter.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/BasicListParameter.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.sql; import java.util.List; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/BasicOutParameter.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/BasicOutParameter.java index 5238b2e6c..90410f98e 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/BasicOutParameter.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/BasicOutParameter.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.sql; import java.util.function.Supplier; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/BasicResultListParameter.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/BasicResultListParameter.java index 164627692..69339b4f2 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/BasicResultListParameter.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/BasicResultListParameter.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.sql; import java.util.function.Supplier; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/BasicSingleResultParameter.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/BasicSingleResultParameter.java index e8f407ee0..008e923fe 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/BasicSingleResultParameter.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/BasicSingleResultParameter.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.sql; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/CallableSqlBuilder.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/CallableSqlBuilder.java index 41fb1a364..35a7d5795 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/CallableSqlBuilder.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/CallableSqlBuilder.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.sql; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/ConvertToLogFormatFunction.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/ConvertToLogFormatFunction.java index c0260d56c..e8d7b071d 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/ConvertToLogFormatFunction.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/ConvertToLogFormatFunction.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.sql; import org.seasar.doma.jdbc.SqlLogFormatter; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/DomainInOutParameter.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/DomainInOutParameter.java index 2d7282d30..8c4058e92 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/DomainInOutParameter.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/DomainInOutParameter.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.sql; import org.seasar.doma.jdbc.Reference; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/DomainInParameter.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/DomainInParameter.java index 2bc569bd8..0c35284e8 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/DomainInParameter.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/DomainInParameter.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.sql; import org.seasar.doma.jdbc.domain.DomainType; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/DomainListParameter.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/DomainListParameter.java index e4c1185e2..8e4b0f7c2 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/DomainListParameter.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/DomainListParameter.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.sql; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/DomainOutParameter.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/DomainOutParameter.java index 254100a7a..f8f741201 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/DomainOutParameter.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/DomainOutParameter.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.sql; import org.seasar.doma.jdbc.Reference; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/DomainResultListParameter.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/DomainResultListParameter.java index 39e4d359e..119baabf5 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/DomainResultListParameter.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/DomainResultListParameter.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.sql; import org.seasar.doma.jdbc.domain.DomainType; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/DomainSingleResultParameter.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/DomainSingleResultParameter.java index 18e5a0a23..7a4318236 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/DomainSingleResultParameter.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/DomainSingleResultParameter.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.sql; import org.seasar.doma.jdbc.domain.DomainType; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/EntityListParameter.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/EntityListParameter.java index 6df7b369d..a14d5d0fc 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/EntityListParameter.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/EntityListParameter.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.sql; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/EntityResultListParameter.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/EntityResultListParameter.java index 408ef5762..da09f46d5 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/EntityResultListParameter.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/EntityResultListParameter.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.sql; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/MapListParameter.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/MapListParameter.java index 3041cb538..ee0376a35 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/MapListParameter.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/MapListParameter.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.sql; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/MapResultListParameter.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/MapResultListParameter.java index 4b28c18f8..d8485ebab 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/MapResultListParameter.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/MapResultListParameter.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.sql; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/NodePreparedSqlBuilder.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/NodePreparedSqlBuilder.java index 132cdf145..ded4a3f98 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/NodePreparedSqlBuilder.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/NodePreparedSqlBuilder.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.sql; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/OptionalBasicInOutParameter.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/OptionalBasicInOutParameter.java index 81a5e41d6..f49ab0a41 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/OptionalBasicInOutParameter.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/OptionalBasicInOutParameter.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.sql; import java.util.Optional; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/OptionalBasicInParameter.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/OptionalBasicInParameter.java index f4064ae06..a83f23781 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/OptionalBasicInParameter.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/OptionalBasicInParameter.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.sql; import java.util.Optional; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/OptionalBasicListParameter.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/OptionalBasicListParameter.java index b6341cb6d..c476c5603 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/OptionalBasicListParameter.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/OptionalBasicListParameter.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.sql; import java.util.List; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/OptionalBasicOutParameter.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/OptionalBasicOutParameter.java index 4284ec37c..abc426610 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/OptionalBasicOutParameter.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/OptionalBasicOutParameter.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.sql; import java.util.Optional; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/OptionalBasicResultListParameter.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/OptionalBasicResultListParameter.java index 839a94cd3..36c02e8ae 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/OptionalBasicResultListParameter.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/OptionalBasicResultListParameter.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.sql; import java.util.Optional; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/OptionalBasicSingleResultParameter.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/OptionalBasicSingleResultParameter.java index 0a0e2d7ab..117c352c6 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/OptionalBasicSingleResultParameter.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/OptionalBasicSingleResultParameter.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.sql; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/OptionalDomainInOutParameter.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/OptionalDomainInOutParameter.java index 7a27c8e0d..373013d0b 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/OptionalDomainInOutParameter.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/OptionalDomainInOutParameter.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.sql; import java.util.Optional; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/OptionalDomainInParameter.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/OptionalDomainInParameter.java index 287b8cdb3..8374f1f45 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/OptionalDomainInParameter.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/OptionalDomainInParameter.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.sql; import java.util.Optional; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/OptionalDomainListParameter.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/OptionalDomainListParameter.java index 70eecc7a0..7501a6794 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/OptionalDomainListParameter.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/OptionalDomainListParameter.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.sql; import java.util.List; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/OptionalDomainOutParameter.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/OptionalDomainOutParameter.java index 4c498d4ee..faddcd916 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/OptionalDomainOutParameter.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/OptionalDomainOutParameter.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.sql; import java.util.Optional; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/OptionalDomainResultListParameter.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/OptionalDomainResultListParameter.java index 9c7cef2bb..5b5780448 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/OptionalDomainResultListParameter.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/OptionalDomainResultListParameter.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.sql; import java.util.Optional; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/OptionalDomainSingleResultParameter.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/OptionalDomainSingleResultParameter.java index 7e0e3689c..e34306942 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/OptionalDomainSingleResultParameter.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/OptionalDomainSingleResultParameter.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.sql; import java.util.Optional; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/OptionalDoubleInOutParameter.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/OptionalDoubleInOutParameter.java index ae7f96417..d918f643c 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/OptionalDoubleInOutParameter.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/OptionalDoubleInOutParameter.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.sql; import java.util.OptionalDouble; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/OptionalDoubleInParameter.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/OptionalDoubleInParameter.java index 4f7f2c018..4dc29dbe8 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/OptionalDoubleInParameter.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/OptionalDoubleInParameter.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.sql; import java.util.OptionalDouble; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/OptionalDoubleListParameter.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/OptionalDoubleListParameter.java index bd27af1ee..64d41b34c 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/OptionalDoubleListParameter.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/OptionalDoubleListParameter.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.sql; import java.util.List; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/OptionalDoubleOutParameter.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/OptionalDoubleOutParameter.java index 8236ee8d5..6140a360c 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/OptionalDoubleOutParameter.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/OptionalDoubleOutParameter.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.sql; import java.util.OptionalDouble; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/OptionalDoubleResultListParameter.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/OptionalDoubleResultListParameter.java index a55267385..074d52b4a 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/OptionalDoubleResultListParameter.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/OptionalDoubleResultListParameter.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.sql; import java.util.OptionalDouble; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/OptionalDoubleSingleResultParameter.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/OptionalDoubleSingleResultParameter.java index 53c3ae3e1..6a6f0a9fa 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/OptionalDoubleSingleResultParameter.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/OptionalDoubleSingleResultParameter.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.sql; import java.util.OptionalDouble; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/OptionalIntInOutParameter.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/OptionalIntInOutParameter.java index c18bf6e53..9b9454b53 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/OptionalIntInOutParameter.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/OptionalIntInOutParameter.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.sql; import java.util.OptionalInt; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/OptionalIntInParameter.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/OptionalIntInParameter.java index c862d8548..dbf85bbe5 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/OptionalIntInParameter.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/OptionalIntInParameter.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.sql; import java.util.OptionalInt; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/OptionalIntListParameter.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/OptionalIntListParameter.java index f9d5f616c..796a77d8f 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/OptionalIntListParameter.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/OptionalIntListParameter.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.sql; import java.util.List; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/OptionalIntOutParameter.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/OptionalIntOutParameter.java index 6ace2571d..cb6b59398 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/OptionalIntOutParameter.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/OptionalIntOutParameter.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.sql; import java.util.OptionalInt; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/OptionalIntResultListParameter.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/OptionalIntResultListParameter.java index 6803a8798..396c2fc76 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/OptionalIntResultListParameter.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/OptionalIntResultListParameter.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.sql; import java.util.OptionalInt; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/OptionalIntSingleResultParameter.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/OptionalIntSingleResultParameter.java index 8f7617a98..8905bc270 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/OptionalIntSingleResultParameter.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/OptionalIntSingleResultParameter.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.sql; import java.util.OptionalInt; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/OptionalLongInOutParameter.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/OptionalLongInOutParameter.java index 929d53805..f6ecdffc7 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/OptionalLongInOutParameter.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/OptionalLongInOutParameter.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.sql; import java.util.OptionalLong; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/OptionalLongInParameter.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/OptionalLongInParameter.java index 2b5efd54f..b4e34cb28 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/OptionalLongInParameter.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/OptionalLongInParameter.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.sql; import java.util.OptionalLong; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/OptionalLongListParameter.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/OptionalLongListParameter.java index 72fc0ad72..c3f072ff7 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/OptionalLongListParameter.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/OptionalLongListParameter.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.sql; import java.util.List; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/OptionalLongOutParameter.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/OptionalLongOutParameter.java index 452ca42fa..8ad240b01 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/OptionalLongOutParameter.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/OptionalLongOutParameter.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.sql; import java.util.OptionalLong; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/OptionalLongResultListParameter.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/OptionalLongResultListParameter.java index 1788c973a..b296c29c8 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/OptionalLongResultListParameter.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/OptionalLongResultListParameter.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.sql; import java.util.OptionalLong; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/OptionalLongSingleResultParameter.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/OptionalLongSingleResultParameter.java index 49558a1b9..9746748f1 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/OptionalLongSingleResultParameter.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/OptionalLongSingleResultParameter.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.sql; import java.util.OptionalLong; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/PreparedSqlBuilder.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/PreparedSqlBuilder.java index 8ec7d36cf..d4e07099b 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/PreparedSqlBuilder.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/PreparedSqlBuilder.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.sql; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/ScalarInOutParameter.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/ScalarInOutParameter.java index 4f8cfc9f1..d249194b1 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/ScalarInOutParameter.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/ScalarInOutParameter.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.sql; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/ScalarInParameter.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/ScalarInParameter.java index a0e9eeef6..ca8197be4 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/ScalarInParameter.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/ScalarInParameter.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.sql; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/ScalarListParameter.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/ScalarListParameter.java index 53d12426f..06c9ecd25 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/ScalarListParameter.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/ScalarListParameter.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.sql; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/ScalarOutParameter.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/ScalarOutParameter.java index c47024f0e..43fb462f8 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/ScalarOutParameter.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/ScalarOutParameter.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.sql; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/ScalarResultListParameter.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/ScalarResultListParameter.java index 6c53863a8..5204ad187 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/ScalarResultListParameter.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/ScalarResultListParameter.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.sql; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/ScalarSingleResultParameter.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/ScalarSingleResultParameter.java index f21a0f460..8c0cd64db 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/ScalarSingleResultParameter.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/ScalarSingleResultParameter.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.sql; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/SimpleSqlNodeVisitor.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/SimpleSqlNodeVisitor.java index f6b551af5..5ce4364df 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/SimpleSqlNodeVisitor.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/SimpleSqlNodeVisitor.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.sql; import org.seasar.doma.internal.jdbc.sql.node.AnonymousNode; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/SqlContext.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/SqlContext.java index bd7442554..6e12fc8cd 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/SqlContext.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/SqlContext.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.sql; import org.seasar.doma.jdbc.InParameter; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/SqlParser.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/SqlParser.java index 4927beaa9..ddc5511bb 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/SqlParser.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/SqlParser.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.sql; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/SqlTokenType.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/SqlTokenType.java index cbe51b1df..fd128eca1 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/SqlTokenType.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/SqlTokenType.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.sql; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/SqlTokenizer.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/SqlTokenizer.java index b78f1ff30..5528aee25 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/SqlTokenizer.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/SqlTokenizer.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.sql; import static org.seasar.doma.internal.jdbc.sql.SqlTokenType.AND_WORD; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/AbstractClauseNode.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/AbstractClauseNode.java index 8fce6d958..3765bfd9b 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/AbstractClauseNode.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/AbstractClauseNode.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.sql.node; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/AbstractSqlNode.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/AbstractSqlNode.java index e6a11e293..ab5460847 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/AbstractSqlNode.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/AbstractSqlNode.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.sql.node; import java.util.ArrayList; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/AnonymousNode.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/AnonymousNode.java index c4b254a2e..5f066e359 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/AnonymousNode.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/AnonymousNode.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.sql.node; import org.seasar.doma.DomaNullPointerException; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/AppendableSqlNode.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/AppendableSqlNode.java index e111124a8..aeabf7496 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/AppendableSqlNode.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/AppendableSqlNode.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.sql.node; import org.seasar.doma.jdbc.SqlNode; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/BindVariableNode.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/BindVariableNode.java index fceb3c500..3a03e7578 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/BindVariableNode.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/BindVariableNode.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.sql.node; import org.seasar.doma.DomaNullPointerException; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/BlankNode.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/BlankNode.java index 4513f8d55..99891699e 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/BlankNode.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/BlankNode.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.sql.node; import org.seasar.doma.jdbc.SqlNode; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/BlockNode.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/BlockNode.java index 8ffc1f89c..ef9ae5e98 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/BlockNode.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/BlockNode.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.sql.node; public interface BlockNode extends AppendableSqlNode { diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/ClauseNode.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/ClauseNode.java index fecb6b1e6..63c9ca0bb 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/ClauseNode.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/ClauseNode.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.sql.node; public interface ClauseNode extends AppendableSqlNode { diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/CommentNode.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/CommentNode.java index 0bfd87f15..096564f94 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/CommentNode.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/CommentNode.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.sql.node; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/CommentType.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/CommentType.java index b8cd660d4..d6ff1d7d8 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/CommentType.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/CommentType.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.sql.node; public enum CommentType { diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/DistinctNode.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/DistinctNode.java index f04693fe3..97d41338d 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/DistinctNode.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/DistinctNode.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.sql.node; import org.seasar.doma.DomaNullPointerException; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/ElseNode.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/ElseNode.java index c0d36277a..23ea2cb99 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/ElseNode.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/ElseNode.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.sql.node; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/ElseifNode.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/ElseifNode.java index 8a6de215b..b5ba5c1ef 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/ElseifNode.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/ElseifNode.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.sql.node; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/EmbeddedVariableNode.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/EmbeddedVariableNode.java index 48a60583e..386b58db5 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/EmbeddedVariableNode.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/EmbeddedVariableNode.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.sql.node; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/EndNode.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/EndNode.java index 1fa99968e..ae35c6109 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/EndNode.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/EndNode.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.sql.node; import org.seasar.doma.DomaNullPointerException; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/EolNode.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/EolNode.java index d79d2c97b..d59d16193 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/EolNode.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/EolNode.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.sql.node; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/ExpandNode.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/ExpandNode.java index 8c8598e83..dfa16e4a0 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/ExpandNode.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/ExpandNode.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.sql.node; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/ForBlockNode.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/ForBlockNode.java index 1c40549bf..ca60ebb19 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/ForBlockNode.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/ForBlockNode.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.sql.node; import org.seasar.doma.DomaNullPointerException; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/ForNode.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/ForNode.java index ad34303a1..db9e7d1dd 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/ForNode.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/ForNode.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.sql.node; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/ForUpdateClauseNode.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/ForUpdateClauseNode.java index a977f0d92..ecf8bf8b8 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/ForUpdateClauseNode.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/ForUpdateClauseNode.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.sql.node; import org.seasar.doma.DomaNullPointerException; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/FragmentNode.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/FragmentNode.java index e5662d34e..0d8a7ffa4 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/FragmentNode.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/FragmentNode.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.sql.node; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/FromClauseNode.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/FromClauseNode.java index 3fc755a98..b97cbc2e6 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/FromClauseNode.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/FromClauseNode.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.sql.node; import org.seasar.doma.DomaNullPointerException; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/GroupByClauseNode.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/GroupByClauseNode.java index 7b0f16670..bc0149932 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/GroupByClauseNode.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/GroupByClauseNode.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.sql.node; import org.seasar.doma.DomaNullPointerException; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/HavingClauseNode.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/HavingClauseNode.java index c863d88d9..53543b852 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/HavingClauseNode.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/HavingClauseNode.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.sql.node; import org.seasar.doma.DomaNullPointerException; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/IfBlockNode.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/IfBlockNode.java index b06530eca..083edfd10 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/IfBlockNode.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/IfBlockNode.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.sql.node; import java.util.ArrayList; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/IfNode.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/IfNode.java index ceaaa67b2..d8073562a 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/IfNode.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/IfNode.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.sql.node; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/InNode.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/InNode.java index 0b01693f6..ca26fedb6 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/InNode.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/InNode.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.sql.node; import org.seasar.doma.DomaNullPointerException; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/LiteralVariableNode.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/LiteralVariableNode.java index a1f56c2d7..67923a39a 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/LiteralVariableNode.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/LiteralVariableNode.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.sql.node; import org.seasar.doma.DomaNullPointerException; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/LogicalOperatorNode.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/LogicalOperatorNode.java index 216665939..866460e17 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/LogicalOperatorNode.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/LogicalOperatorNode.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.sql.node; import org.seasar.doma.DomaNullPointerException; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/OptionClauseNode.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/OptionClauseNode.java index 195491ba7..631f62493 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/OptionClauseNode.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/OptionClauseNode.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.sql.node; import org.seasar.doma.DomaNullPointerException; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/OrderByClauseNode.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/OrderByClauseNode.java index 4a09a1c9e..738b6f417 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/OrderByClauseNode.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/OrderByClauseNode.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.sql.node; import org.seasar.doma.DomaNullPointerException; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/OtherNode.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/OtherNode.java index e531c310d..c38a31d89 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/OtherNode.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/OtherNode.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.sql.node; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/ParensNode.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/ParensNode.java index 142e6d211..bca730a9e 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/ParensNode.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/ParensNode.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.sql.node; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/PopulateNode.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/PopulateNode.java index 4b6dde9ff..a43cee797 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/PopulateNode.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/PopulateNode.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.sql.node; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/RemovableClauseNode.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/RemovableClauseNode.java index 71e993565..3b502147e 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/RemovableClauseNode.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/RemovableClauseNode.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.sql.node; public interface RemovableClauseNode extends ClauseNode {} diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/SelectClauseNode.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/SelectClauseNode.java index 43d804267..41c880163 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/SelectClauseNode.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/SelectClauseNode.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.sql.node; import org.seasar.doma.DomaNullPointerException; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/SelectStatementNode.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/SelectStatementNode.java index 700b747af..6ef8df5b7 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/SelectStatementNode.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/SelectStatementNode.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.sql.node; import org.seasar.doma.DomaNullPointerException; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/SetClauseNode.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/SetClauseNode.java index 0690d0534..95c2289ae 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/SetClauseNode.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/SetClauseNode.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.sql.node; import org.seasar.doma.DomaNullPointerException; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/SpaceStrippingNode.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/SpaceStrippingNode.java index 70ec82f49..14e9ee70f 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/SpaceStrippingNode.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/SpaceStrippingNode.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.sql.node; public interface SpaceStrippingNode extends AppendableSqlNode { diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/SqlLocation.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/SqlLocation.java index 3f50befad..0418e683d 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/SqlLocation.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/SqlLocation.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.sql.node; public class SqlLocation { diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/UpdateClauseNode.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/UpdateClauseNode.java index 2e8551c72..e9805b063 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/UpdateClauseNode.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/UpdateClauseNode.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.sql.node; import org.seasar.doma.DomaNullPointerException; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/UpdateStatementNode.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/UpdateStatementNode.java index d504d8d5f..f54785348 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/UpdateStatementNode.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/UpdateStatementNode.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.sql.node; import org.seasar.doma.DomaNullPointerException; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/ValueNode.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/ValueNode.java index d568154f0..4d76478e6 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/ValueNode.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/ValueNode.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.sql.node; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/WhereClauseAwareNode.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/WhereClauseAwareNode.java index 07d8f8b1e..11ff997cd 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/WhereClauseAwareNode.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/WhereClauseAwareNode.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.sql.node; import org.seasar.doma.jdbc.SqlNode; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/WhereClauseNode.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/WhereClauseNode.java index 7522ae4ec..fcd9dc648 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/WhereClauseNode.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/WhereClauseNode.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.sql.node; import org.seasar.doma.DomaNullPointerException; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/WhitespaceNode.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/WhitespaceNode.java index 39608959d..f47883230 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/WhitespaceNode.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/WhitespaceNode.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.sql.node; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/WordNode.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/WordNode.java index 8de53ea49..500d586c9 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/WordNode.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/sql/node/WordNode.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.sql.node; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/util/DatabaseObjectUtil.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/util/DatabaseObjectUtil.java index 41acaa261..552b84e84 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/util/DatabaseObjectUtil.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/util/DatabaseObjectUtil.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.util; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/util/FileUtil.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/util/FileUtil.java index d7ea895af..8d37f7155 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/util/FileUtil.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/util/FileUtil.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.util; import static org.seasar.doma.internal.util.AssertionUtil.*; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/util/JdbcUtil.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/util/JdbcUtil.java index a4a1507b3..845f91053 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/util/JdbcUtil.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/util/JdbcUtil.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.util; import java.sql.CallableStatement; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/util/ScriptFileUtil.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/util/ScriptFileUtil.java index cb3b5e6e9..35e962a75 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/util/ScriptFileUtil.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/util/ScriptFileUtil.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.util; import java.io.File; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/util/SqlFileUtil.java b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/util/SqlFileUtil.java index 87ffd5926..b619baeb9 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/jdbc/util/SqlFileUtil.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/jdbc/util/SqlFileUtil.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.util; import java.io.File; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/util/AssertionUtil.java b/doma-core/src/main/java/org/seasar/doma/internal/util/AssertionUtil.java index 818e65f10..08561b0f8 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/util/AssertionUtil.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/util/AssertionUtil.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.util; import java.util.Map; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/util/BoxedPrimitiveUtil.java b/doma-core/src/main/java/org/seasar/doma/internal/util/BoxedPrimitiveUtil.java index cf67b3979..df1b4fb85 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/util/BoxedPrimitiveUtil.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/util/BoxedPrimitiveUtil.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.util; public final class BoxedPrimitiveUtil { diff --git a/doma-core/src/main/java/org/seasar/doma/internal/util/CharSequenceUtil.java b/doma-core/src/main/java/org/seasar/doma/internal/util/CharSequenceUtil.java index 7242e6044..69a9da6eb 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/util/CharSequenceUtil.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/util/CharSequenceUtil.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.util; public final class CharSequenceUtil { diff --git a/doma-core/src/main/java/org/seasar/doma/internal/util/ClassUtil.java b/doma-core/src/main/java/org/seasar/doma/internal/util/ClassUtil.java index 02b56651a..bbafbe1b7 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/util/ClassUtil.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/util/ClassUtil.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.util; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/util/Combinations.java b/doma-core/src/main/java/org/seasar/doma/internal/util/Combinations.java index 42086295c..d172d4507 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/util/Combinations.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/util/Combinations.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.util; import java.util.HashSet; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/util/ConstructorUtil.java b/doma-core/src/main/java/org/seasar/doma/internal/util/ConstructorUtil.java index 97bc86b4d..b504c0c42 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/util/ConstructorUtil.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/util/ConstructorUtil.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.util; import java.lang.reflect.Constructor; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/util/FieldUtil.java b/doma-core/src/main/java/org/seasar/doma/internal/util/FieldUtil.java index 282ddc238..5e31303a0 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/util/FieldUtil.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/util/FieldUtil.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.util; import static org.seasar.doma.internal.util.AssertionUtil.*; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/util/GenericsUtil.java b/doma-core/src/main/java/org/seasar/doma/internal/util/GenericsUtil.java index 9a739f6e3..cde294c53 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/util/GenericsUtil.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/util/GenericsUtil.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.util; import static org.seasar.doma.internal.util.AssertionUtil.*; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/util/IOUtil.java b/doma-core/src/main/java/org/seasar/doma/internal/util/IOUtil.java index 0890498ab..9222afda9 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/util/IOUtil.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/util/IOUtil.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.util; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/util/IntegerUtil.java b/doma-core/src/main/java/org/seasar/doma/internal/util/IntegerUtil.java index e722c034a..201e6e767 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/util/IntegerUtil.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/util/IntegerUtil.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.util; public final class IntegerUtil { diff --git a/doma-core/src/main/java/org/seasar/doma/internal/util/IteratorUtil.java b/doma-core/src/main/java/org/seasar/doma/internal/util/IteratorUtil.java index ab9c54bdd..6503e940c 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/util/IteratorUtil.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/util/IteratorUtil.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.util; import java.util.Iterator; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/util/MethodUtil.java b/doma-core/src/main/java/org/seasar/doma/internal/util/MethodUtil.java index 1824450fc..35671bef3 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/util/MethodUtil.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/util/MethodUtil.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.util; import static org.seasar.doma.internal.util.AssertionUtil.*; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/util/PaddingIterator.java b/doma-core/src/main/java/org/seasar/doma/internal/util/PaddingIterator.java index f4eb4f1ee..29b267032 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/util/PaddingIterator.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/util/PaddingIterator.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.util; import java.util.Iterator; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/util/Pair.java b/doma-core/src/main/java/org/seasar/doma/internal/util/Pair.java index b66e4c18b..31e30f59e 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/util/Pair.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/util/Pair.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.util; import java.util.Objects; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/util/ResourceUtil.java b/doma-core/src/main/java/org/seasar/doma/internal/util/ResourceUtil.java index 76eeba469..4fe28333d 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/util/ResourceUtil.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/util/ResourceUtil.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.util; import static org.seasar.doma.internal.util.AssertionUtil.*; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/util/SqlTokenUtil.java b/doma-core/src/main/java/org/seasar/doma/internal/util/SqlTokenUtil.java index dab859cf9..5c712cad3 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/util/SqlTokenUtil.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/util/SqlTokenUtil.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.util; public final class SqlTokenUtil { diff --git a/doma-core/src/main/java/org/seasar/doma/internal/util/StringUtil.java b/doma-core/src/main/java/org/seasar/doma/internal/util/StringUtil.java index fdb16bf7b..1043eee12 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/util/StringUtil.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/util/StringUtil.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.util; import java.nio.CharBuffer; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/util/Zip.java b/doma-core/src/main/java/org/seasar/doma/internal/util/Zip.java index 5bd6062ef..6a4f0c1f9 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/util/Zip.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/util/Zip.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.util; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-core/src/main/java/org/seasar/doma/internal/wrapper/WrapperSuppliers.java b/doma-core/src/main/java/org/seasar/doma/internal/wrapper/WrapperSuppliers.java index 1cb28c34a..afaa1ab88 100644 --- a/doma-core/src/main/java/org/seasar/doma/internal/wrapper/WrapperSuppliers.java +++ b/doma-core/src/main/java/org/seasar/doma/internal/wrapper/WrapperSuppliers.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.wrapper; import java.math.BigDecimal; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/AbstractJdbcLogger.java b/doma-core/src/main/java/org/seasar/doma/jdbc/AbstractJdbcLogger.java index e6ff96a09..8188fac62 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/AbstractJdbcLogger.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/AbstractJdbcLogger.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc; import java.sql.SQLException; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/AbstractSql.java b/doma-core/src/main/java/org/seasar/doma/jdbc/AbstractSql.java index c88b4f0cb..b8fc9ef89 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/AbstractSql.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/AbstractSql.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc; import java.util.Collections; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/AbstractSqlFileRepository.java b/doma-core/src/main/java/org/seasar/doma/jdbc/AbstractSqlFileRepository.java index f546431be..40b554ff0 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/AbstractSqlFileRepository.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/AbstractSqlFileRepository.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc; import java.lang.reflect.Method; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/BatchOptimisticLockException.java b/doma-core/src/main/java/org/seasar/doma/jdbc/BatchOptimisticLockException.java index 705d0d447..c2ac8ad8b 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/BatchOptimisticLockException.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/BatchOptimisticLockException.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc; import org.seasar.doma.message.Message; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/BatchResult.java b/doma-core/src/main/java/org/seasar/doma/jdbc/BatchResult.java index c9ffa0012..0998499b2 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/BatchResult.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/BatchResult.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc; import java.util.Arrays; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/BatchSqlExecutionException.java b/doma-core/src/main/java/org/seasar/doma/jdbc/BatchSqlExecutionException.java index c6564ef87..798952e6d 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/BatchSqlExecutionException.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/BatchSqlExecutionException.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc; import org.seasar.doma.message.Message; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/BatchUniqueConstraintException.java b/doma-core/src/main/java/org/seasar/doma/jdbc/BatchUniqueConstraintException.java index 9113855e6..76cafae45 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/BatchUniqueConstraintException.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/BatchUniqueConstraintException.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc; import org.seasar.doma.message.Message; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/CallableSql.java b/doma-core/src/main/java/org/seasar/doma/jdbc/CallableSql.java index 117175e10..422556d5a 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/CallableSql.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/CallableSql.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc; import java.sql.CallableStatement; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/CallerCommenter.java b/doma-core/src/main/java/org/seasar/doma/jdbc/CallerCommenter.java index 59315ff87..acf822bcb 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/CallerCommenter.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/CallerCommenter.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc; /** A commenter that appends information about the caller class and the caller method. */ diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/ClassHelper.java b/doma-core/src/main/java/org/seasar/doma/jdbc/ClassHelper.java index 8dbaf4f9f..edd1f403a 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/ClassHelper.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/ClassHelper.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc; import org.seasar.doma.internal.WrapException; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/CommandImplementors.java b/doma-core/src/main/java/org/seasar/doma/jdbc/CommandImplementors.java index bcd9940b5..a44a8cd25 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/CommandImplementors.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/CommandImplementors.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc; import java.lang.reflect.Method; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/CommentContext.java b/doma-core/src/main/java/org/seasar/doma/jdbc/CommentContext.java index 900b79dc0..7614150b3 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/CommentContext.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/CommentContext.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc; import java.lang.reflect.Method; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/Commenter.java b/doma-core/src/main/java/org/seasar/doma/jdbc/Commenter.java index ae008dc8e..5cd80391b 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/Commenter.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/Commenter.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc; /** diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/Config.java b/doma-core/src/main/java/org/seasar/doma/jdbc/Config.java index b94173039..ab041f978 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/Config.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/Config.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc; import java.sql.PreparedStatement; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/ConfigException.java b/doma-core/src/main/java/org/seasar/doma/jdbc/ConfigException.java index a037f34be..958723cb1 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/ConfigException.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/ConfigException.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc; import org.seasar.doma.message.Message; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/ConfigProvider.java b/doma-core/src/main/java/org/seasar/doma/jdbc/ConfigProvider.java index 0894d5b3c..fe8180ca3 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/ConfigProvider.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/ConfigProvider.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc; /** A provider for a {@link Config} object. */ diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/ConfigSupport.java b/doma-core/src/main/java/org/seasar/doma/jdbc/ConfigSupport.java index 84fcb4401..17723fcd2 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/ConfigSupport.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/ConfigSupport.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc; import org.seasar.doma.jdbc.statistic.DefaultStatisticManager; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/DaoMethodNotFoundException.java b/doma-core/src/main/java/org/seasar/doma/jdbc/DaoMethodNotFoundException.java index d62ab9670..51d874ade 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/DaoMethodNotFoundException.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/DaoMethodNotFoundException.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc; import org.seasar.doma.message.Message; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/EntityListenerProvider.java b/doma-core/src/main/java/org/seasar/doma/jdbc/EntityListenerProvider.java index 24e1ab419..931cafd66 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/EntityListenerProvider.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/EntityListenerProvider.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc; import java.util.function.Supplier; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/GreedyCacheSqlFileRepository.java b/doma-core/src/main/java/org/seasar/doma/jdbc/GreedyCacheSqlFileRepository.java index f6930f798..3ee1f3bbc 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/GreedyCacheSqlFileRepository.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/GreedyCacheSqlFileRepository.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc; import java.lang.reflect.Method; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/InParameter.java b/doma-core/src/main/java/org/seasar/doma/jdbc/InParameter.java index f74ac93a6..ea0baf78d 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/InParameter.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/InParameter.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc; /** diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/IterationCallback.java b/doma-core/src/main/java/org/seasar/doma/jdbc/IterationCallback.java index 7bcc9c7f9..759e72b1d 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/IterationCallback.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/IterationCallback.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc; import java.sql.ResultSet; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/IterationContext.java b/doma-core/src/main/java/org/seasar/doma/jdbc/IterationContext.java index 547838059..cc912a2f2 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/IterationContext.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/IterationContext.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc; /** An execution context of {@link IterationCallback}. */ diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/JdbcException.java b/doma-core/src/main/java/org/seasar/doma/jdbc/JdbcException.java index 2ce5caea5..ad18ab822 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/JdbcException.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/JdbcException.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc; import org.seasar.doma.DomaException; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/JdbcLogger.java b/doma-core/src/main/java/org/seasar/doma/jdbc/JdbcLogger.java index a5e173652..0b7de7861 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/JdbcLogger.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/JdbcLogger.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc; import java.sql.Connection; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/JdbcMappable.java b/doma-core/src/main/java/org/seasar/doma/jdbc/JdbcMappable.java index 534909658..c78dcb097 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/JdbcMappable.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/JdbcMappable.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc; import org.seasar.doma.wrapper.Wrapper; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/JdbcMappingFunction.java b/doma-core/src/main/java/org/seasar/doma/jdbc/JdbcMappingFunction.java index d47153b40..6fbb03b9f 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/JdbcMappingFunction.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/JdbcMappingFunction.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc; import java.sql.SQLException; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/JdbcMappingHint.java b/doma-core/src/main/java/org/seasar/doma/jdbc/JdbcMappingHint.java index 2151045f7..7170e1535 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/JdbcMappingHint.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/JdbcMappingHint.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc; import java.util.Optional; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/JdbcMappingVisitor.java b/doma-core/src/main/java/org/seasar/doma/jdbc/JdbcMappingVisitor.java index d324e955f..7f164972b 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/JdbcMappingVisitor.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/JdbcMappingVisitor.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc; import java.sql.SQLException; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/JdbcUnsupportedOperationException.java b/doma-core/src/main/java/org/seasar/doma/jdbc/JdbcUnsupportedOperationException.java index 2f400758a..c3e1add01 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/JdbcUnsupportedOperationException.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/JdbcUnsupportedOperationException.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc; import org.seasar.doma.message.Message; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/ListParameter.java b/doma-core/src/main/java/org/seasar/doma/jdbc/ListParameter.java index 90ce73871..f6fcbdef6 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/ListParameter.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/ListParameter.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc; import org.seasar.doma.jdbc.query.Query; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/LogKind.java b/doma-core/src/main/java/org/seasar/doma/jdbc/LogKind.java index 3b0292eb3..d9942308c 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/LogKind.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/LogKind.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc; public enum LogKind { diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/MapKeyNaming.java b/doma-core/src/main/java/org/seasar/doma/jdbc/MapKeyNaming.java index dbec28c86..0c66d80fb 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/MapKeyNaming.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/MapKeyNaming.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc; import java.lang.reflect.Method; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/MultiResult.java b/doma-core/src/main/java/org/seasar/doma/jdbc/MultiResult.java index c72b35fdd..133864c04 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/MultiResult.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/MultiResult.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc; import java.util.List; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/Naming.java b/doma-core/src/main/java/org/seasar/doma/jdbc/Naming.java index ef31cf20b..eb17684da 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/Naming.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/Naming.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc; import org.seasar.doma.DomaNullPointerException; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/NoCacheSqlFileRepository.java b/doma-core/src/main/java/org/seasar/doma/jdbc/NoCacheSqlFileRepository.java index 264d9aea7..7d42536ef 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/NoCacheSqlFileRepository.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/NoCacheSqlFileRepository.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc; import java.lang.reflect.Method; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/NoResultException.java b/doma-core/src/main/java/org/seasar/doma/jdbc/NoResultException.java index 661f9a3b0..ff13a0065 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/NoResultException.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/NoResultException.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc; import org.seasar.doma.message.Message; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/NonSingleColumnException.java b/doma-core/src/main/java/org/seasar/doma/jdbc/NonSingleColumnException.java index e3414fff6..b4370bd5c 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/NonSingleColumnException.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/NonSingleColumnException.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc; import org.seasar.doma.message.Message; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/NonUniqueResultException.java b/doma-core/src/main/java/org/seasar/doma/jdbc/NonUniqueResultException.java index 65600eb33..dca0a0a50 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/NonUniqueResultException.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/NonUniqueResultException.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc; import org.seasar.doma.message.Message; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/ObjectProvider.java b/doma-core/src/main/java/org/seasar/doma/jdbc/ObjectProvider.java index c009966db..18ee035b4 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/ObjectProvider.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/ObjectProvider.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc; import java.sql.ResultSet; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/OptimisticLockException.java b/doma-core/src/main/java/org/seasar/doma/jdbc/OptimisticLockException.java index 828082869..aa28e70d9 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/OptimisticLockException.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/OptimisticLockException.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc; import org.seasar.doma.message.Message; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/OutParameter.java b/doma-core/src/main/java/org/seasar/doma/jdbc/OutParameter.java index 6d595ed3f..fa9b0055e 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/OutParameter.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/OutParameter.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc; /** diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/PreparedSql.java b/doma-core/src/main/java/org/seasar/doma/jdbc/PreparedSql.java index 6f3a8e81b..19e6b0373 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/PreparedSql.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/PreparedSql.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc; import java.sql.PreparedStatement; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/QueryImplementors.java b/doma-core/src/main/java/org/seasar/doma/jdbc/QueryImplementors.java index 680967139..923dbcf5e 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/QueryImplementors.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/QueryImplementors.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc; import java.lang.reflect.Method; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/Reference.java b/doma-core/src/main/java/org/seasar/doma/jdbc/Reference.java index e384b257e..3fcb1ebac 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/Reference.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/Reference.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc; /** diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/RequiresNewController.java b/doma-core/src/main/java/org/seasar/doma/jdbc/RequiresNewController.java index d05a01f12..133afa65e 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/RequiresNewController.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/RequiresNewController.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc; import org.seasar.doma.DomaNullPointerException; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/Result.java b/doma-core/src/main/java/org/seasar/doma/jdbc/Result.java index 8fb683d4b..0c76aa02e 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/Result.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/Result.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc; /** diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/ResultListParameter.java b/doma-core/src/main/java/org/seasar/doma/jdbc/ResultListParameter.java index 9e22328a9..ff41ff2d3 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/ResultListParameter.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/ResultListParameter.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc; import java.util.List; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/ResultMappingException.java b/doma-core/src/main/java/org/seasar/doma/jdbc/ResultMappingException.java index e19449571..dad739288 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/ResultMappingException.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/ResultMappingException.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc; import java.util.List; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/ResultParameter.java b/doma-core/src/main/java/org/seasar/doma/jdbc/ResultParameter.java index 97936c433..ff601dc8e 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/ResultParameter.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/ResultParameter.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc; /** A result parameter. */ diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/ScriptBlockContext.java b/doma-core/src/main/java/org/seasar/doma/jdbc/ScriptBlockContext.java index 3ce8fd878..236ac5f0a 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/ScriptBlockContext.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/ScriptBlockContext.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc; /** A context that corresponds to an SQL block in a script file. */ diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/ScriptException.java b/doma-core/src/main/java/org/seasar/doma/jdbc/ScriptException.java index 431dadb2b..1185fbb41 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/ScriptException.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/ScriptException.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc; import org.seasar.doma.message.Message; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/ScriptFileLoader.java b/doma-core/src/main/java/org/seasar/doma/jdbc/ScriptFileLoader.java index 4948c79f3..9faf239ba 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/ScriptFileLoader.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/ScriptFileLoader.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc; import java.net.URL; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/ScriptFileNotFoundException.java b/doma-core/src/main/java/org/seasar/doma/jdbc/ScriptFileNotFoundException.java index 71c7bcf97..382d13932 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/ScriptFileNotFoundException.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/ScriptFileNotFoundException.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc; import org.seasar.doma.message.Message; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/SelectForUpdateType.java b/doma-core/src/main/java/org/seasar/doma/jdbc/SelectForUpdateType.java index b99c7373c..6ad1e5827 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/SelectForUpdateType.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/SelectForUpdateType.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc; /** Defines the kinds of pessimistic locking. */ diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/SelectOptions.java b/doma-core/src/main/java/org/seasar/doma/jdbc/SelectOptions.java index 4e596eb82..9d771c5b0 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/SelectOptions.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/SelectOptions.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc; import java.io.Serializable; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/SelectOptionsAccessor.java b/doma-core/src/main/java/org/seasar/doma/jdbc/SelectOptionsAccessor.java index 20711c47c..0ec6cf2ad 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/SelectOptionsAccessor.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/SelectOptionsAccessor.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc; /** diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/SimpleDataSource.java b/doma-core/src/main/java/org/seasar/doma/jdbc/SimpleDataSource.java index 06ca5f41b..5e4c8efdc 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/SimpleDataSource.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/SimpleDataSource.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc; import java.io.PrintWriter; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/SingleResultParameter.java b/doma-core/src/main/java/org/seasar/doma/jdbc/SingleResultParameter.java index cb4cafbed..924bab445 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/SingleResultParameter.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/SingleResultParameter.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc; /** A single result parameter. */ diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/Sql.java b/doma-core/src/main/java/org/seasar/doma/jdbc/Sql.java index 1a162e76f..85a3be68c 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/Sql.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/Sql.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc; import java.util.List; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/SqlBuilderSettings.java b/doma-core/src/main/java/org/seasar/doma/jdbc/SqlBuilderSettings.java index e782d741b..8d9d214b4 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/SqlBuilderSettings.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/SqlBuilderSettings.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc; /** A context for SQL builder settings. */ diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/SqlExecutionException.java b/doma-core/src/main/java/org/seasar/doma/jdbc/SqlExecutionException.java index f953eb83a..97c146683 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/SqlExecutionException.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/SqlExecutionException.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc; import org.seasar.doma.message.Message; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/SqlExecutionSkipCause.java b/doma-core/src/main/java/org/seasar/doma/jdbc/SqlExecutionSkipCause.java index cc02121de..ad78563f4 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/SqlExecutionSkipCause.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/SqlExecutionSkipCause.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc; /** Defines the causes that skip the SQL execution. */ diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/SqlFile.java b/doma-core/src/main/java/org/seasar/doma/jdbc/SqlFile.java index 9d74193c9..ec3cb88ba 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/SqlFile.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/SqlFile.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc; import org.seasar.doma.DomaNullPointerException; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/SqlFileNotFoundException.java b/doma-core/src/main/java/org/seasar/doma/jdbc/SqlFileNotFoundException.java index 028ab296c..83b5e8702 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/SqlFileNotFoundException.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/SqlFileNotFoundException.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc; import org.seasar.doma.message.Message; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/SqlFileRepository.java b/doma-core/src/main/java/org/seasar/doma/jdbc/SqlFileRepository.java index 460bb2519..b77b7516f 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/SqlFileRepository.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/SqlFileRepository.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc; import java.lang.reflect.Method; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/SqlKind.java b/doma-core/src/main/java/org/seasar/doma/jdbc/SqlKind.java index bbf80fe2b..dec8ffb34 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/SqlKind.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/SqlKind.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc; /** Defines the SQL kinds. */ diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/SqlLogFormatter.java b/doma-core/src/main/java/org/seasar/doma/jdbc/SqlLogFormatter.java index acfaba66b..95c5f185f 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/SqlLogFormatter.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/SqlLogFormatter.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc; /** diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/SqlLogFormattingFunction.java b/doma-core/src/main/java/org/seasar/doma/jdbc/SqlLogFormattingFunction.java index 7fc46260d..a192e491f 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/SqlLogFormattingFunction.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/SqlLogFormattingFunction.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc; import org.seasar.doma.wrapper.Wrapper; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/SqlLogFormattingVisitor.java b/doma-core/src/main/java/org/seasar/doma/jdbc/SqlLogFormattingVisitor.java index 4248aec64..85e0358f3 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/SqlLogFormattingVisitor.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/SqlLogFormattingVisitor.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc; import org.seasar.doma.wrapper.Wrapper; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/SqlLogType.java b/doma-core/src/main/java/org/seasar/doma/jdbc/SqlLogType.java index 5be8d2e2e..3309321ed 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/SqlLogType.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/SqlLogType.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc; import org.seasar.doma.jdbc.dialect.Dialect; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/SqlNode.java b/doma-core/src/main/java/org/seasar/doma/jdbc/SqlNode.java index e31e3334a..f4bd58afe 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/SqlNode.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/SqlNode.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc; import java.util.List; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/SqlNodeVisitor.java b/doma-core/src/main/java/org/seasar/doma/jdbc/SqlNodeVisitor.java index 9e76cb316..3c6fa02a6 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/SqlNodeVisitor.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/SqlNodeVisitor.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc; import org.seasar.doma.internal.jdbc.sql.node.*; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/SqlParameter.java b/doma-core/src/main/java/org/seasar/doma/jdbc/SqlParameter.java index 3b9b7f3c0..e610c2ed6 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/SqlParameter.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/SqlParameter.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc; /** An SQL parameter. */ diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/SqlParameterVisitor.java b/doma-core/src/main/java/org/seasar/doma/jdbc/SqlParameterVisitor.java index 8840d97cf..49c36a553 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/SqlParameterVisitor.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/SqlParameterVisitor.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc; @SuppressWarnings("SameReturnValue") diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/UniqueConstraintException.java b/doma-core/src/main/java/org/seasar/doma/jdbc/UniqueConstraintException.java index ca3d54533..6aa8a40ae 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/UniqueConstraintException.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/UniqueConstraintException.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc; import org.seasar.doma.message.Message; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/UnknownColumnException.java b/doma-core/src/main/java/org/seasar/doma/jdbc/UnknownColumnException.java index 0c64b8649..8a8974151 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/UnknownColumnException.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/UnknownColumnException.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc; import org.seasar.doma.message.Message; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/UnknownColumnHandler.java b/doma-core/src/main/java/org/seasar/doma/jdbc/UnknownColumnHandler.java index 7d58c844b..754efc189 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/UnknownColumnHandler.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/UnknownColumnHandler.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc; import org.seasar.doma.jdbc.entity.EntityType; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/UtilLoggingJdbcLogger.java b/doma-core/src/main/java/org/seasar/doma/jdbc/UtilLoggingJdbcLogger.java index 54ffa6594..e9833ea57 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/UtilLoggingJdbcLogger.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/UtilLoggingJdbcLogger.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc; import java.util.function.Supplier; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/builder/BatchBuilder.java b/doma-core/src/main/java/org/seasar/doma/jdbc/builder/BatchBuilder.java index 24ce8a04c..4f9a11f69 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/builder/BatchBuilder.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/builder/BatchBuilder.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.builder; import java.util.HashMap; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/builder/BatchBuildingHelper.java b/doma-core/src/main/java/org/seasar/doma/jdbc/builder/BatchBuildingHelper.java index ab2bbdffb..62a1a55ca 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/builder/BatchBuildingHelper.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/builder/BatchBuildingHelper.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.builder; import static org.seasar.doma.internal.util.AssertionUtil.assertUnreachable; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/builder/BatchDeleteExecutor.java b/doma-core/src/main/java/org/seasar/doma/jdbc/builder/BatchDeleteExecutor.java index 1bcb88446..3697f2b41 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/builder/BatchDeleteExecutor.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/builder/BatchDeleteExecutor.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.builder; import java.sql.Statement; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/builder/BatchInsertExecutor.java b/doma-core/src/main/java/org/seasar/doma/jdbc/builder/BatchInsertExecutor.java index 469748124..c495ce366 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/builder/BatchInsertExecutor.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/builder/BatchInsertExecutor.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.builder; import java.sql.Statement; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/builder/BatchParam.java b/doma-core/src/main/java/org/seasar/doma/jdbc/builder/BatchParam.java index 33dba38b5..7ef62b43c 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/builder/BatchParam.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/builder/BatchParam.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.builder; import static org.seasar.doma.internal.util.AssertionUtil.assertEquals; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/builder/BatchUpdateExecutor.java b/doma-core/src/main/java/org/seasar/doma/jdbc/builder/BatchUpdateExecutor.java index 1d95c6922..5f43dade5 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/builder/BatchUpdateExecutor.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/builder/BatchUpdateExecutor.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.builder; import java.sql.Statement; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/builder/BuildingHelper.java b/doma-core/src/main/java/org/seasar/doma/jdbc/builder/BuildingHelper.java index 677b1c4cd..77035a279 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/builder/BuildingHelper.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/builder/BuildingHelper.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.builder; import static org.seasar.doma.internal.util.AssertionUtil.assertUnreachable; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/builder/DeleteBuilder.java b/doma-core/src/main/java/org/seasar/doma/jdbc/builder/DeleteBuilder.java index 07398303c..055c1e152 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/builder/DeleteBuilder.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/builder/DeleteBuilder.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.builder; import java.sql.Statement; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/builder/InsertBuilder.java b/doma-core/src/main/java/org/seasar/doma/jdbc/builder/InsertBuilder.java index 872e37045..7b2124632 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/builder/InsertBuilder.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/builder/InsertBuilder.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.builder; import java.sql.Statement; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/builder/MapBatchInsertBuilder.java b/doma-core/src/main/java/org/seasar/doma/jdbc/builder/MapBatchInsertBuilder.java index 30562f04f..0ccbac71d 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/builder/MapBatchInsertBuilder.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/builder/MapBatchInsertBuilder.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.builder; import java.sql.Statement; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/builder/MapInsertBuilder.java b/doma-core/src/main/java/org/seasar/doma/jdbc/builder/MapInsertBuilder.java index 0ec04fcc3..e24f3e461 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/builder/MapInsertBuilder.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/builder/MapInsertBuilder.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.builder; import java.util.Map; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/builder/Param.java b/doma-core/src/main/java/org/seasar/doma/jdbc/builder/Param.java index 575002933..30d276e71 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/builder/Param.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/builder/Param.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.builder; class Param { diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/builder/ParamIndex.java b/doma-core/src/main/java/org/seasar/doma/jdbc/builder/ParamIndex.java index 324290319..00d4ee3c6 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/builder/ParamIndex.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/builder/ParamIndex.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.builder; class ParamIndex { diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/builder/SelectBuilder.java b/doma-core/src/main/java/org/seasar/doma/jdbc/builder/SelectBuilder.java index 534af3485..862b55852 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/builder/SelectBuilder.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/builder/SelectBuilder.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.builder; import java.sql.Statement; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/builder/UpdateBuilder.java b/doma-core/src/main/java/org/seasar/doma/jdbc/builder/UpdateBuilder.java index b07813b8e..0a35cdc4d 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/builder/UpdateBuilder.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/builder/UpdateBuilder.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.builder; import java.sql.Statement; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/builder/package-info.java b/doma-core/src/main/java/org/seasar/doma/jdbc/builder/package-info.java index cad0b3284..22e2af952 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/builder/package-info.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/builder/package-info.java @@ -1,2 +1,17 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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. + */ /** Provides classes to build dynamic SQL statements. */ package org.seasar.doma.jdbc.builder; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/command/BatchDeleteCommand.java b/doma-core/src/main/java/org/seasar/doma/jdbc/command/BatchDeleteCommand.java index 8d8c3254b..45d28f109 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/command/BatchDeleteCommand.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/command/BatchDeleteCommand.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.command; import java.sql.PreparedStatement; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/command/BatchInsertCommand.java b/doma-core/src/main/java/org/seasar/doma/jdbc/command/BatchInsertCommand.java index 28ff5940c..56e1671a4 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/command/BatchInsertCommand.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/command/BatchInsertCommand.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.command; import java.sql.PreparedStatement; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/command/BatchModifyCommand.java b/doma-core/src/main/java/org/seasar/doma/jdbc/command/BatchModifyCommand.java index 636e2796f..c2f44b2bf 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/command/BatchModifyCommand.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/command/BatchModifyCommand.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.command; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/command/BatchUpdateCommand.java b/doma-core/src/main/java/org/seasar/doma/jdbc/command/BatchUpdateCommand.java index e5ca4f131..efc9a6718 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/command/BatchUpdateCommand.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/command/BatchUpdateCommand.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.command; import java.sql.PreparedStatement; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/command/Command.java b/doma-core/src/main/java/org/seasar/doma/jdbc/command/Command.java index f8842f1d0..15513f206 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/command/Command.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/command/Command.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.command; import org.seasar.doma.jdbc.query.Query; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/command/CreateCommand.java b/doma-core/src/main/java/org/seasar/doma/jdbc/command/CreateCommand.java index 039031db9..7792061ce 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/command/CreateCommand.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/command/CreateCommand.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.command; import java.sql.Connection; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/command/DeleteCommand.java b/doma-core/src/main/java/org/seasar/doma/jdbc/command/DeleteCommand.java index fa4d65652..e68cc046b 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/command/DeleteCommand.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/command/DeleteCommand.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.command; import java.sql.PreparedStatement; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/command/FunctionCommand.java b/doma-core/src/main/java/org/seasar/doma/jdbc/command/FunctionCommand.java index 394170163..ca55d4c54 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/command/FunctionCommand.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/command/FunctionCommand.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.command; import java.sql.CallableStatement; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/command/InsertCommand.java b/doma-core/src/main/java/org/seasar/doma/jdbc/command/InsertCommand.java index 5abbe7591..830e988b5 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/command/InsertCommand.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/command/InsertCommand.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.command; import java.sql.PreparedStatement; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/command/JdbcOutParameterRegistrar.java b/doma-core/src/main/java/org/seasar/doma/jdbc/command/JdbcOutParameterRegistrar.java index 68b9ed602..693c8a20f 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/command/JdbcOutParameterRegistrar.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/command/JdbcOutParameterRegistrar.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.command; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/command/ModifyCommand.java b/doma-core/src/main/java/org/seasar/doma/jdbc/command/ModifyCommand.java index 8b6079a7d..c30511766 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/command/ModifyCommand.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/command/ModifyCommand.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.command; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/command/ModuleCommand.java b/doma-core/src/main/java/org/seasar/doma/jdbc/command/ModuleCommand.java index 940e461b4..9835dbbce 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/command/ModuleCommand.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/command/ModuleCommand.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.command; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/command/ProcedureCommand.java b/doma-core/src/main/java/org/seasar/doma/jdbc/command/ProcedureCommand.java index c121625d2..9bf779630 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/command/ProcedureCommand.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/command/ProcedureCommand.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.command; import java.sql.CallableStatement; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/command/ResultSetHandler.java b/doma-core/src/main/java/org/seasar/doma/jdbc/command/ResultSetHandler.java index c0f29a388..aee541732 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/command/ResultSetHandler.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/command/ResultSetHandler.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.command; import java.sql.ResultSet; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/command/ResultSetRowIndexConsumer.java b/doma-core/src/main/java/org/seasar/doma/jdbc/command/ResultSetRowIndexConsumer.java index f8e1d9cb7..2af3256b9 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/command/ResultSetRowIndexConsumer.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/command/ResultSetRowIndexConsumer.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.command; @FunctionalInterface diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/command/ScriptCommand.java b/doma-core/src/main/java/org/seasar/doma/jdbc/command/ScriptCommand.java index c4425a65d..e05ac2f06 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/command/ScriptCommand.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/command/ScriptCommand.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.command; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/command/SelectCommand.java b/doma-core/src/main/java/org/seasar/doma/jdbc/command/SelectCommand.java index 312bea659..f190293b5 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/command/SelectCommand.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/command/SelectCommand.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.command; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/command/SqlProcessorCommand.java b/doma-core/src/main/java/org/seasar/doma/jdbc/command/SqlProcessorCommand.java index 54fd55d6d..cd22e7c62 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/command/SqlProcessorCommand.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/command/SqlProcessorCommand.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.command; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/command/UpdateCommand.java b/doma-core/src/main/java/org/seasar/doma/jdbc/command/UpdateCommand.java index 81b5da6c8..d800e9258 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/command/UpdateCommand.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/command/UpdateCommand.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.command; import java.sql.PreparedStatement; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/command/package-info.java b/doma-core/src/main/java/org/seasar/doma/jdbc/command/package-info.java index ac75bf27f..3e42cfea0 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/command/package-info.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/command/package-info.java @@ -1,2 +1,17 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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. + */ /** Provides classes and interfaces to execute SQL statements. */ package org.seasar.doma.jdbc.command; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/Entityql.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/Entityql.java index 49a89181b..ab00d3e3a 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/Entityql.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/Entityql.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria; import java.util.List; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/NativeSql.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/NativeSql.java index 14076c551..630c67742 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/NativeSql.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/NativeSql.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria; import java.util.Objects; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/QueryDsl.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/QueryDsl.java index 5dd298513..dd495720b 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/QueryDsl.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/QueryDsl.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria; import java.util.List; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/WithQueryDsl.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/WithQueryDsl.java index f2e4fa1b8..c619333cb 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/WithQueryDsl.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/WithQueryDsl.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria; import java.util.ArrayList; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/command/AssociateCommand.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/command/AssociateCommand.java index f956f5744..d2e9839ba 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/command/AssociateCommand.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/command/AssociateCommand.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.command; import static java.util.stream.Collectors.toList; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/command/DataRow.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/command/DataRow.java index 4ebd60718..da5b61d65 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/command/DataRow.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/command/DataRow.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.command; import java.util.List; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/command/EntityData.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/command/EntityData.java index 29a6cbba9..ec3074c96 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/command/EntityData.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/command/EntityData.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.command; import java.util.Collections; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/command/EntityKey.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/command/EntityKey.java index 7a31a1163..1b20e5aa7 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/command/EntityKey.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/command/EntityKey.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.command; import java.util.Collections; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/command/EntityPool.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/command/EntityPool.java index 544d18181..650f63804 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/command/EntityPool.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/command/EntityPool.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.command; import java.util.LinkedHashMap; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/command/EntityPoolIterationHandler.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/command/EntityPoolIterationHandler.java index 9dcfaf176..828cebbe1 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/command/EntityPoolIterationHandler.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/command/EntityPoolIterationHandler.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.command; import java.util.List; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/command/EntityPoolProvider.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/command/EntityPoolProvider.java index e882a39d9..38a69fbcb 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/command/EntityPoolProvider.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/command/EntityPoolProvider.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.command; import static java.util.stream.Collectors.toList; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/command/FetchSupport.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/command/FetchSupport.java index 609db6383..2b83a2105 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/command/FetchSupport.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/command/FetchSupport.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.command; import java.sql.CallableStatement; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/command/MappedResultProvider.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/command/MappedResultProvider.java index 06f1d8a49..b8dc97f32 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/command/MappedResultProvider.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/command/MappedResultProvider.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.command; import java.sql.ResultSet; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/command/MappedResultStreamHandler.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/command/MappedResultStreamHandler.java index d113ef3d4..cc2929b47 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/command/MappedResultStreamHandler.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/command/MappedResultStreamHandler.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.command; import java.util.Objects; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/command/UncheckedSQLException.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/command/UncheckedSQLException.java index 6cbd7fe80..9ce69d140 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/command/UncheckedSQLException.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/command/UncheckedSQLException.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.command; import java.sql.SQLException; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/command/package-info.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/command/package-info.java index c76a65910..572d26fcc 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/command/package-info.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/command/package-info.java @@ -1,2 +1,17 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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. + */ /** Provides classes that execute SQL statements and handle the results. */ package org.seasar.doma.jdbc.criteria.command; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/context/Context.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/context/Context.java index e41d2d9e6..a5f424515 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/context/Context.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/context/Context.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.context; import java.util.List; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/context/Criterion.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/context/Criterion.java index bd594b3ac..3b81bf941 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/context/Criterion.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/context/Criterion.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.context; import java.util.Collections; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/context/DeleteContext.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/context/DeleteContext.java index 4f769476f..b28f6faf4 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/context/DeleteContext.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/context/DeleteContext.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.context; import java.util.ArrayList; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/context/DeleteSettings.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/context/DeleteSettings.java index 58cd4896f..c38bfa51c 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/context/DeleteSettings.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/context/DeleteSettings.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.context; import java.sql.PreparedStatement; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/context/ForUpdate.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/context/ForUpdate.java index 65a11ff54..03a7dc737 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/context/ForUpdate.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/context/ForUpdate.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.context; import java.util.Objects; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/context/InsertContext.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/context/InsertContext.java index 79f490a79..fe2a195eb 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/context/InsertContext.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/context/InsertContext.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.context; import java.util.Collections; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/context/InsertSettings.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/context/InsertSettings.java index ec4e85194..8fed3a7b3 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/context/InsertSettings.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/context/InsertSettings.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.context; import java.sql.PreparedStatement; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/context/Join.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/context/Join.java index ee84123e9..1bfb123e2 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/context/Join.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/context/Join.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.context; import java.util.ArrayList; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/context/JoinKind.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/context/JoinKind.java index 349f2ceca..1088713f8 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/context/JoinKind.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/context/JoinKind.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.context; public enum JoinKind { diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/context/Operand.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/context/Operand.java index 34e5ff1f2..c6394bacf 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/context/Operand.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/context/Operand.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.context; import java.util.Objects; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/context/OrderByItem.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/context/OrderByItem.java index bdc4e4e4c..e48c50e0a 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/context/OrderByItem.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/context/OrderByItem.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.context; import java.util.Objects; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/context/Projection.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/context/Projection.java index 270991778..dafcca082 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/context/Projection.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/context/Projection.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.context; import java.util.Arrays; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/context/SelectContext.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/context/SelectContext.java index 951f603d1..efa6ba972 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/context/SelectContext.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/context/SelectContext.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.context; import static java.util.stream.Collectors.toList; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/context/SelectSettings.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/context/SelectSettings.java index 644a473a8..54ed33c1c 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/context/SelectSettings.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/context/SelectSettings.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.context; import java.sql.Statement; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/context/SetOperationContext.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/context/SetOperationContext.java index 10ef4165d..f10cdc925 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/context/SetOperationContext.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/context/SetOperationContext.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.context; import java.util.ArrayList; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/context/Settings.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/context/Settings.java index 6b5b274dd..d56750507 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/context/Settings.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/context/Settings.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.context; import java.sql.Statement; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/context/SubSelectContext.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/context/SubSelectContext.java index 0a0704721..fe37f99e5 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/context/SubSelectContext.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/context/SubSelectContext.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.context; import java.util.Objects; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/context/UpdateContext.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/context/UpdateContext.java index 0b86a5b75..a3716bfe5 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/context/UpdateContext.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/context/UpdateContext.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.context; import java.util.ArrayList; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/context/UpdateSettings.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/context/UpdateSettings.java index 00587ace9..fdaa0c050 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/context/UpdateSettings.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/context/UpdateSettings.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.context; import java.sql.PreparedStatement; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/context/WithContext.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/context/WithContext.java index 4bbac6938..0f9e93ba4 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/context/WithContext.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/context/WithContext.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.context; import java.util.Objects; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/context/package-info.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/context/package-info.java index 205082630..671f36ba6 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/context/package-info.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/context/package-info.java @@ -1,2 +1,17 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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. + */ /** Provides contexts and settings used to build the criteria query statements. */ package org.seasar.doma.jdbc.criteria.context; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/declaration/ComparisonDeclaration.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/declaration/ComparisonDeclaration.java index f8442884d..1b6fcf7a4 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/declaration/ComparisonDeclaration.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/declaration/ComparisonDeclaration.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.declaration; import static java.util.stream.Collectors.toList; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/declaration/DeleteDeclaration.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/declaration/DeleteDeclaration.java index 03961b95f..2c559e798 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/declaration/DeleteDeclaration.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/declaration/DeleteDeclaration.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.declaration; import java.util.Objects; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/declaration/HavingDeclaration.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/declaration/HavingDeclaration.java index cea2521af..4a3265026 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/declaration/HavingDeclaration.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/declaration/HavingDeclaration.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.declaration; import java.util.Objects; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/declaration/InsertDeclaration.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/declaration/InsertDeclaration.java index 8dc9f5947..ea758d992 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/declaration/InsertDeclaration.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/declaration/InsertDeclaration.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.declaration; import java.util.Objects; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/declaration/InsertOnDuplicateKeyUpdateSetValuesDeclaration.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/declaration/InsertOnDuplicateKeyUpdateSetValuesDeclaration.java index 4d191d367..205a66d2f 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/declaration/InsertOnDuplicateKeyUpdateSetValuesDeclaration.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/declaration/InsertOnDuplicateKeyUpdateSetValuesDeclaration.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.declaration; import java.util.Objects; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/declaration/InsertSelectDeclaration.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/declaration/InsertSelectDeclaration.java index c89a7f3ee..aaf9f46ff 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/declaration/InsertSelectDeclaration.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/declaration/InsertSelectDeclaration.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.declaration; import org.seasar.doma.jdbc.criteria.metamodel.EntityMetamodel; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/declaration/JoinDeclaration.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/declaration/JoinDeclaration.java index 2c8796840..4cbcdae54 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/declaration/JoinDeclaration.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/declaration/JoinDeclaration.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.declaration; import org.seasar.doma.jdbc.criteria.context.Join; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/declaration/OrderByIndexDeclaration.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/declaration/OrderByIndexDeclaration.java index 81aca078a..ec28cf5ce 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/declaration/OrderByIndexDeclaration.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/declaration/OrderByIndexDeclaration.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.declaration; import java.util.Objects; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/declaration/OrderByNameDeclaration.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/declaration/OrderByNameDeclaration.java index 8b544e543..24afc93a2 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/declaration/OrderByNameDeclaration.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/declaration/OrderByNameDeclaration.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.declaration; import java.util.Objects; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/declaration/SelectFromDeclaration.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/declaration/SelectFromDeclaration.java index 44aaeb4f1..b464610a4 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/declaration/SelectFromDeclaration.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/declaration/SelectFromDeclaration.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.declaration; import java.util.ArrayList; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/declaration/SetDeclaration.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/declaration/SetDeclaration.java index 71b5794fa..c788fb2cc 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/declaration/SetDeclaration.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/declaration/SetDeclaration.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.declaration; import java.util.Objects; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/declaration/SubSelectFromDeclaration.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/declaration/SubSelectFromDeclaration.java index 6d7b1dc44..ac7a380fb 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/declaration/SubSelectFromDeclaration.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/declaration/SubSelectFromDeclaration.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.declaration; import java.util.ArrayList; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/declaration/UpdateDeclaration.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/declaration/UpdateDeclaration.java index 144610a44..c663bb7a0 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/declaration/UpdateDeclaration.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/declaration/UpdateDeclaration.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.declaration; import java.util.Objects; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/declaration/ValuesDeclaration.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/declaration/ValuesDeclaration.java index afa0bb1f1..f27ed4d81 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/declaration/ValuesDeclaration.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/declaration/ValuesDeclaration.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.declaration; import java.util.Objects; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/declaration/WhereDeclaration.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/declaration/WhereDeclaration.java index eb6635692..7f883082f 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/declaration/WhereDeclaration.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/declaration/WhereDeclaration.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.declaration; import java.util.Objects; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/declaration/package-info.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/declaration/package-info.java index 29d3fa9de..06236d6ba 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/declaration/package-info.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/declaration/package-info.java @@ -1,2 +1,17 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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. + */ /** Provides classes that build the criteria query statements. */ package org.seasar.doma.jdbc.criteria.declaration; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/expression/AggregateFunction.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/expression/AggregateFunction.java index 1f0073966..74e692968 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/expression/AggregateFunction.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/expression/AggregateFunction.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.expression; import java.util.Objects; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/expression/AliasExpression.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/expression/AliasExpression.java index 828bd0a91..dc07bdd54 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/expression/AliasExpression.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/expression/AliasExpression.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.expression; import java.util.Objects; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/expression/ArithmeticExpression.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/expression/ArithmeticExpression.java index c03b48b5b..9a2c09d64 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/expression/ArithmeticExpression.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/expression/ArithmeticExpression.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.expression; import java.util.Objects; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/expression/BasicPropertyTypes.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/expression/BasicPropertyTypes.java index b63a03eae..557f1ec66 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/expression/BasicPropertyTypes.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/expression/BasicPropertyTypes.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.expression; import java.math.BigDecimal; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/expression/CaseExpression.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/expression/CaseExpression.java index 0be7f2ce7..91240af8e 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/expression/CaseExpression.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/expression/CaseExpression.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.expression; import java.util.ArrayList; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/expression/Expressions.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/expression/Expressions.java index e3160107f..3fa785c9f 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/expression/Expressions.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/expression/Expressions.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.expression; import java.math.BigDecimal; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/expression/LiteralExpression.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/expression/LiteralExpression.java index b748b764c..c8bc91984 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/expression/LiteralExpression.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/expression/LiteralExpression.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.expression; import java.util.Objects; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/expression/SelectExpression.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/expression/SelectExpression.java index 0070d84b1..5862af49d 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/expression/SelectExpression.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/expression/SelectExpression.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.expression; import java.util.Objects; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/expression/StringExpression.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/expression/StringExpression.java index f92e5c360..91632d00a 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/expression/StringExpression.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/expression/StringExpression.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.expression; import java.util.Objects; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/expression/UserDefinedExpression.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/expression/UserDefinedExpression.java index a23293e00..525aae69e 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/expression/UserDefinedExpression.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/expression/UserDefinedExpression.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.expression; import java.util.ArrayList; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/expression/package-info.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/expression/package-info.java index 26a2ffde4..381f04179 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/expression/package-info.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/expression/package-info.java @@ -1,2 +1,17 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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. + */ /** Provides classes that represent the SQL expressions. */ package org.seasar.doma.jdbc.criteria.expression; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/metamodel/DefaultPropertyMetamodel.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/metamodel/DefaultPropertyMetamodel.java index 70bb874ee..4be293ed6 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/metamodel/DefaultPropertyMetamodel.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/metamodel/DefaultPropertyMetamodel.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.metamodel; import java.util.Objects; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/metamodel/EntityMetamodel.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/metamodel/EntityMetamodel.java index bb5a0d4c6..c4df1b4e8 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/metamodel/EntityMetamodel.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/metamodel/EntityMetamodel.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.metamodel; import java.util.List; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/metamodel/EntityTypeProxy.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/metamodel/EntityTypeProxy.java index 1da980b1d..4810b25ad 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/metamodel/EntityTypeProxy.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/metamodel/EntityTypeProxy.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.metamodel; import java.util.List; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/metamodel/PropertyMetamodel.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/metamodel/PropertyMetamodel.java index 2ca1302a8..d281cafe8 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/metamodel/PropertyMetamodel.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/metamodel/PropertyMetamodel.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.metamodel; import org.seasar.doma.jdbc.entity.EntityPropertyType; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/metamodel/package-info.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/metamodel/package-info.java index 3c9dd8fe6..d4b4c16cc 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/metamodel/package-info.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/metamodel/package-info.java @@ -1,2 +1,17 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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. + */ /** Provides metamodels used to build the criteria query statements. */ package org.seasar.doma.jdbc.criteria.metamodel; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/option/AssociationOption.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/option/AssociationOption.java index de747937f..f5bc6f400 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/option/AssociationOption.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/option/AssociationOption.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.option; /** Represents the option about the associate and associateWith operators. */ diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/option/DistinctOption.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/option/DistinctOption.java index 0c11a4e43..715c88849 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/option/DistinctOption.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/option/DistinctOption.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.option; /** Represents the option that decides whether to append the DISTINCT keyword or not. */ diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/option/ForUpdateOption.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/option/ForUpdateOption.java index 721cfad44..8a9ea5c3d 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/option/ForUpdateOption.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/option/ForUpdateOption.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.option; import java.util.Arrays; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/option/LikeOption.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/option/LikeOption.java index 8f8bb7043..c0ffec7dc 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/option/LikeOption.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/option/LikeOption.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.option; import java.util.Objects; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/option/package-info.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/option/package-info.java index dbc89876e..65b9e6e5e 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/option/package-info.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/option/package-info.java @@ -1,2 +1,17 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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. + */ /** Provides options used to build the criteria query statement. */ package org.seasar.doma.jdbc.criteria.option; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/package-info.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/package-info.java index db6203c75..c0f40f12e 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/package-info.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/package-info.java @@ -1,2 +1,17 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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. + */ /** Provides entry points for the Criteria API. */ package org.seasar.doma.jdbc.criteria; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/query/AliasManager.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/query/AliasManager.java index d387d091b..ed412ab95 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/query/AliasManager.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/query/AliasManager.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.query; import java.util.HashMap; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/query/BuilderSupport.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/query/BuilderSupport.java index 075443201..abf5e6f51 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/query/BuilderSupport.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/query/BuilderSupport.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.query; import java.util.ArrayList; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/query/CriteriaBuilder.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/query/CriteriaBuilder.java index d2bbcaed1..083e7f58b 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/query/CriteriaBuilder.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/query/CriteriaBuilder.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.query; import java.util.function.Consumer; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/query/CriteriaQuery.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/query/CriteriaQuery.java index e1393aba0..108851824 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/query/CriteriaQuery.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/query/CriteriaQuery.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.query; import java.lang.reflect.Method; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/query/DeleteBuilder.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/query/DeleteBuilder.java index 83f8ab183..0d71d67d6 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/query/DeleteBuilder.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/query/DeleteBuilder.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.query; import java.util.Objects; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/query/EmptyAliasManager.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/query/EmptyAliasManager.java index dc0498e88..acd601f33 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/query/EmptyAliasManager.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/query/EmptyAliasManager.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.query; import java.util.List; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/query/InsertBuilder.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/query/InsertBuilder.java index a87c0e171..3e4aaa03f 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/query/InsertBuilder.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/query/InsertBuilder.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.query; import java.util.Objects; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/query/SelectBuilder.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/query/SelectBuilder.java index c099226db..ac2821947 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/query/SelectBuilder.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/query/SelectBuilder.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.query; import static java.util.stream.Collectors.toList; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/query/SetOperationBuilder.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/query/SetOperationBuilder.java index 593ae38ac..074440c52 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/query/SetOperationBuilder.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/query/SetOperationBuilder.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.query; import java.util.List; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/query/UpdateBuilder.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/query/UpdateBuilder.java index 9d0462ccc..2fadcb05e 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/query/UpdateBuilder.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/query/UpdateBuilder.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.query; import java.util.Map; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/query/package-info.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/query/package-info.java index b241bba8a..1e0f1faae 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/query/package-info.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/query/package-info.java @@ -1,2 +1,17 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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. + */ /** Provides the SQL queries and builders. */ package org.seasar.doma.jdbc.criteria.query; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/AbstractSetOperand.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/AbstractSetOperand.java index 5f87bc9ab..b579632b6 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/AbstractSetOperand.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/AbstractSetOperand.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.statement; import java.util.List; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/AbstractStatement.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/AbstractStatement.java index 32fb78445..245808321 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/AbstractStatement.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/AbstractStatement.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.statement; import java.lang.reflect.Method; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/Buildable.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/Buildable.java index 1844fb04e..759c2b679 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/Buildable.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/Buildable.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.statement; import java.util.Objects; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/EmptySql.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/EmptySql.java index 1e9456360..713576cc9 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/EmptySql.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/EmptySql.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.statement; import java.util.Collections; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/EmptyWhereClauseException.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/EmptyWhereClauseException.java index 8e89c0a51..67b39d92e 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/EmptyWhereClauseException.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/EmptyWhereClauseException.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.statement; import org.seasar.doma.jdbc.JdbcException; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/EntityQueryable.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/EntityQueryable.java index c0df7b7b3..5f8cdd314 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/EntityQueryable.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/EntityQueryable.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.statement; import java.util.function.BiConsumer; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/EntityqlBatchDeleteStatement.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/EntityqlBatchDeleteStatement.java index 996d3530d..29a5a85e8 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/EntityqlBatchDeleteStatement.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/EntityqlBatchDeleteStatement.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.statement; import java.util.List; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/EntityqlBatchInsertIntermediate.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/EntityqlBatchInsertIntermediate.java index d67571770..16b207bd2 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/EntityqlBatchInsertIntermediate.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/EntityqlBatchInsertIntermediate.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.statement; import static org.seasar.doma.jdbc.criteria.statement.EntityqlBatchInsertStatement.EMPTY_SQL; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/EntityqlBatchInsertStatement.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/EntityqlBatchInsertStatement.java index 27a830186..980471442 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/EntityqlBatchInsertStatement.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/EntityqlBatchInsertStatement.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.statement; import java.util.Collections; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/EntityqlBatchInsertTerminate.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/EntityqlBatchInsertTerminate.java index ac9016b24..e5eecd925 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/EntityqlBatchInsertTerminate.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/EntityqlBatchInsertTerminate.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.statement; import static org.seasar.doma.jdbc.criteria.statement.EntityqlBatchInsertStatement.EMPTY_SQL; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/EntityqlBatchUpdateStatement.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/EntityqlBatchUpdateStatement.java index 36190e18e..f0fd10a58 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/EntityqlBatchUpdateStatement.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/EntityqlBatchUpdateStatement.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.statement; import java.util.List; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/EntityqlDeleteStatement.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/EntityqlDeleteStatement.java index e9de42eb6..dd24f9734 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/EntityqlDeleteStatement.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/EntityqlDeleteStatement.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.statement; import java.util.Objects; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/EntityqlInsertIntermediate.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/EntityqlInsertIntermediate.java index ba2d5dfcc..1259ea0b4 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/EntityqlInsertIntermediate.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/EntityqlInsertIntermediate.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.statement; import java.util.ArrayList; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/EntityqlInsertStatement.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/EntityqlInsertStatement.java index 87c5f3c65..aee32b86b 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/EntityqlInsertStatement.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/EntityqlInsertStatement.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.statement; import java.util.Collections; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/EntityqlInsertTerminal.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/EntityqlInsertTerminal.java index 126bce84f..13168b328 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/EntityqlInsertTerminal.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/EntityqlInsertTerminal.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.statement; import java.util.List; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/EntityqlMultiInsertIntermediate.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/EntityqlMultiInsertIntermediate.java index d2b9a6e1c..a01eb5036 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/EntityqlMultiInsertIntermediate.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/EntityqlMultiInsertIntermediate.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.statement; import static org.seasar.doma.jdbc.criteria.statement.EntityqlMultiInsertStatement.EMPTY_SQL; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/EntityqlMultiInsertStatement.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/EntityqlMultiInsertStatement.java index aee93ed30..daf255383 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/EntityqlMultiInsertStatement.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/EntityqlMultiInsertStatement.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.statement; import java.util.Collections; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/EntityqlMultiInsertTerminal.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/EntityqlMultiInsertTerminal.java index 69cfb178f..afaa7a17a 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/EntityqlMultiInsertTerminal.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/EntityqlMultiInsertTerminal.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.statement; import static org.seasar.doma.jdbc.criteria.statement.EntityqlMultiInsertStatement.EMPTY_SQL; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/EntityqlSelectStarting.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/EntityqlSelectStarting.java index d52e4a1d2..4d3576010 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/EntityqlSelectStarting.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/EntityqlSelectStarting.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.statement; import java.util.Arrays; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/EntityqlSelectTerminal.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/EntityqlSelectTerminal.java index 099d40034..60b051e55 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/EntityqlSelectTerminal.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/EntityqlSelectTerminal.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.statement; import java.util.List; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/EntityqlUpdateStatement.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/EntityqlUpdateStatement.java index 7088da997..f077e6228 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/EntityqlUpdateStatement.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/EntityqlUpdateStatement.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.statement; import java.util.Objects; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/Listable.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/Listable.java index 11e543c20..64d73f13d 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/Listable.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/Listable.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.statement; import java.util.Iterator; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/NativeSqlDeleteStarting.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/NativeSqlDeleteStarting.java index e88cca757..884d9c2df 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/NativeSqlDeleteStarting.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/NativeSqlDeleteStarting.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.statement; import java.util.Objects; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/NativeSqlDeleteTerminal.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/NativeSqlDeleteTerminal.java index 169ddfdcc..46487f627 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/NativeSqlDeleteTerminal.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/NativeSqlDeleteTerminal.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.statement; import java.util.Objects; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/NativeSqlInsertStarting.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/NativeSqlInsertStarting.java index 29e68f1b7..0b49f6854 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/NativeSqlInsertStarting.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/NativeSqlInsertStarting.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.statement; import java.util.Objects; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/NativeSqlInsertTerminal.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/NativeSqlInsertTerminal.java index 04cd25156..1c9736923 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/NativeSqlInsertTerminal.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/NativeSqlInsertTerminal.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.statement; import java.util.Objects; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/NativeSqlSelectIntermediate.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/NativeSqlSelectIntermediate.java index 6e5afdab1..3680bf0f7 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/NativeSqlSelectIntermediate.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/NativeSqlSelectIntermediate.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.statement; import static java.util.stream.Collectors.toList; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/NativeSqlSelectStarting.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/NativeSqlSelectStarting.java index b5fe82722..2eaf3dc93 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/NativeSqlSelectStarting.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/NativeSqlSelectStarting.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.statement; import java.util.ArrayList; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/NativeSqlSelectTerminal.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/NativeSqlSelectTerminal.java index b9f6756a4..78bebbb81 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/NativeSqlSelectTerminal.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/NativeSqlSelectTerminal.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.statement; import java.util.Objects; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/NativeSqlSetStarting.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/NativeSqlSetStarting.java index 88ce1847c..3c86c0f8c 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/NativeSqlSetStarting.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/NativeSqlSetStarting.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.statement; import static java.util.stream.Collectors.toList; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/NativeSqlSetTerminal.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/NativeSqlSetTerminal.java index 8a196ecb5..79b5c36fc 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/NativeSqlSetTerminal.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/NativeSqlSetTerminal.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.statement; import java.util.Objects; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/NativeSqlUpdateStarting.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/NativeSqlUpdateStarting.java index a764b6be9..7d4fff1db 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/NativeSqlUpdateStarting.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/NativeSqlUpdateStarting.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.statement; import java.util.Objects; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/NativeSqlUpdateTerminal.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/NativeSqlUpdateTerminal.java index 6d68fb096..771a80660 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/NativeSqlUpdateTerminal.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/NativeSqlUpdateTerminal.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.statement; import java.util.Objects; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/NativeSqlUpsertOnDuplicateKeyIgnoreSelectingKeys.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/NativeSqlUpsertOnDuplicateKeyIgnoreSelectingKeys.java index 05c0aeb35..732cc6d50 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/NativeSqlUpsertOnDuplicateKeyIgnoreSelectingKeys.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/NativeSqlUpsertOnDuplicateKeyIgnoreSelectingKeys.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.statement; import java.util.Arrays; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/NativeSqlUpsertOnDuplicateKeyUpdateSelectingKeys.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/NativeSqlUpsertOnDuplicateKeyUpdateSelectingKeys.java index 1a057c947..90634fdb8 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/NativeSqlUpsertOnDuplicateKeyUpdateSelectingKeys.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/NativeSqlUpsertOnDuplicateKeyUpdateSelectingKeys.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.statement; import java.util.Arrays; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/NativeSqlUpsertOnDuplicateKeyUpdateSelectingSet.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/NativeSqlUpsertOnDuplicateKeyUpdateSelectingSet.java index 2e3c56bc7..fbb295445 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/NativeSqlUpsertOnDuplicateKeyUpdateSelectingSet.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/NativeSqlUpsertOnDuplicateKeyUpdateSelectingSet.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.statement; import java.util.Objects; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/NativeSqlUpsertTerminal.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/NativeSqlUpsertTerminal.java index 06db7f9e3..63e9fd3ad 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/NativeSqlUpsertTerminal.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/NativeSqlUpsertTerminal.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.statement; import static java.util.stream.Collectors.toList; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/SetOperand.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/SetOperand.java index a035826be..58e2cfe4d 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/SetOperand.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/SetOperand.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.statement; import java.util.function.Consumer; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/SetOperator.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/SetOperator.java index 0fe9e794c..2b3347a84 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/SetOperator.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/SetOperator.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.statement; import java.util.function.Consumer; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/Statement.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/Statement.java index 34a2ec05c..cc851bebe 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/Statement.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/Statement.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.statement; import java.util.function.Consumer; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/StreamMappable.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/StreamMappable.java index ebc280c1c..1ab25e1be 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/StreamMappable.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/StreamMappable.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.statement; import java.util.function.Consumer; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/UnifiedDeleteStarting.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/UnifiedDeleteStarting.java index 69bd3f4c2..eb3be8709 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/UnifiedDeleteStarting.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/UnifiedDeleteStarting.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.statement; import java.util.List; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/UnifiedInsertStarting.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/UnifiedInsertStarting.java index 1040a2c5b..b420e49fc 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/UnifiedInsertStarting.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/UnifiedInsertStarting.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.statement; import java.util.List; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/UnifiedSelectStarting.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/UnifiedSelectStarting.java index b62d6cc48..b9b69c1cd 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/UnifiedSelectStarting.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/UnifiedSelectStarting.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.statement; import java.util.Arrays; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/UnifiedSelectTerminal.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/UnifiedSelectTerminal.java index d02d346fa..eeeff3021 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/UnifiedSelectTerminal.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/UnifiedSelectTerminal.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.statement; import java.util.List; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/UnifiedUpdateStarting.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/UnifiedUpdateStarting.java index 63f4d768d..d2330de15 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/UnifiedUpdateStarting.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/UnifiedUpdateStarting.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.statement; import java.util.List; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/package-info.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/package-info.java index ad420ae99..29a104b08 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/package-info.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/package-info.java @@ -1,2 +1,17 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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. + */ /** Provides criteria query statements. */ package org.seasar.doma.jdbc.criteria.statement; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/tuple/Row.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/tuple/Row.java index 6c265fe0b..0339e3138 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/tuple/Row.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/tuple/Row.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.tuple; import java.util.Collection; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/tuple/Tuple2.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/tuple/Tuple2.java index 5e6b42de9..e7a8e89e5 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/tuple/Tuple2.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/tuple/Tuple2.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.tuple; import java.util.Objects; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/tuple/Tuple3.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/tuple/Tuple3.java index 3910830d7..4354546e2 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/tuple/Tuple3.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/tuple/Tuple3.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.tuple; import java.util.Objects; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/tuple/Tuple4.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/tuple/Tuple4.java index 1c17f8ab7..dc293f373 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/tuple/Tuple4.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/tuple/Tuple4.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.tuple; import java.util.Objects; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/tuple/Tuple5.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/tuple/Tuple5.java index 53e4ca3d5..b608c4862 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/tuple/Tuple5.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/tuple/Tuple5.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.tuple; import java.util.Objects; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/tuple/Tuple6.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/tuple/Tuple6.java index 20b9256ac..5e52749e3 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/tuple/Tuple6.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/tuple/Tuple6.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.tuple; import java.util.Objects; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/tuple/Tuple7.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/tuple/Tuple7.java index 3c3267f1e..f47b4d2ef 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/tuple/Tuple7.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/tuple/Tuple7.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.tuple; import java.util.Objects; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/tuple/Tuple8.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/tuple/Tuple8.java index 343b9a71e..2c1997e25 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/tuple/Tuple8.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/tuple/Tuple8.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.tuple; import java.util.Objects; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/tuple/Tuple9.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/tuple/Tuple9.java index ae34575a0..a5691b94f 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/tuple/Tuple9.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/tuple/Tuple9.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.tuple; import java.util.Objects; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/tuple/package-info.java b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/tuple/package-info.java index a153f54fb..9f0caf453 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/tuple/package-info.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/criteria/tuple/package-info.java @@ -1,2 +1,17 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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. + */ /** Provides classes that represent a row as a result of criteria query execution. */ package org.seasar.doma.jdbc.criteria.tuple; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/dialect/Db2Dialect.java b/doma-core/src/main/java/org/seasar/doma/jdbc/dialect/Db2Dialect.java index 3562a24a1..b000524a0 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/dialect/Db2Dialect.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/dialect/Db2Dialect.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.dialect; import java.sql.SQLException; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/dialect/Dialect.java b/doma-core/src/main/java/org/seasar/doma/jdbc/dialect/Dialect.java index 26fefb526..6f751e250 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/dialect/Dialect.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/dialect/Dialect.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.dialect; import java.sql.ResultSet; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/dialect/H212126Dialect.java b/doma-core/src/main/java/org/seasar/doma/jdbc/dialect/H212126Dialect.java index 5f1e64e99..69ad4814c 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/dialect/H212126Dialect.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/dialect/H212126Dialect.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.dialect; import java.sql.SQLException; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/dialect/H214199Dialect.java b/doma-core/src/main/java/org/seasar/doma/jdbc/dialect/H214199Dialect.java index 5f9bc899d..bff3106ee 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/dialect/H214199Dialect.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/dialect/H214199Dialect.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.dialect; import java.sql.SQLException; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/dialect/H2Dialect.java b/doma-core/src/main/java/org/seasar/doma/jdbc/dialect/H2Dialect.java index e3bb6d1a6..cac254e28 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/dialect/H2Dialect.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/dialect/H2Dialect.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.dialect; import org.seasar.doma.expr.ExpressionFunctions; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/dialect/H2UpsertAssembler.java b/doma-core/src/main/java/org/seasar/doma/jdbc/dialect/H2UpsertAssembler.java index 83456053f..0b3c8d047 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/dialect/H2UpsertAssembler.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/dialect/H2UpsertAssembler.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.dialect; import java.util.List; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/dialect/HsqldbDialect.java b/doma-core/src/main/java/org/seasar/doma/jdbc/dialect/HsqldbDialect.java index 0a6c1eedc..8bcbf29d5 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/dialect/HsqldbDialect.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/dialect/HsqldbDialect.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.dialect; import java.sql.SQLException; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/dialect/Mssql2008Dialect.java b/doma-core/src/main/java/org/seasar/doma/jdbc/dialect/Mssql2008Dialect.java index e77e72da1..77412064e 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/dialect/Mssql2008Dialect.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/dialect/Mssql2008Dialect.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.dialect; import java.sql.SQLException; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/dialect/MssqlDialect.java b/doma-core/src/main/java/org/seasar/doma/jdbc/dialect/MssqlDialect.java index d8f925461..0ab714ac9 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/dialect/MssqlDialect.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/dialect/MssqlDialect.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.dialect; import java.util.Collections; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/dialect/MssqlUpsertAssembler.java b/doma-core/src/main/java/org/seasar/doma/jdbc/dialect/MssqlUpsertAssembler.java index 37f28379a..3a34c8025 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/dialect/MssqlUpsertAssembler.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/dialect/MssqlUpsertAssembler.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.dialect; import java.util.List; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/dialect/MysqlDialect.java b/doma-core/src/main/java/org/seasar/doma/jdbc/dialect/MysqlDialect.java index cee695e68..53c2c2d75 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/dialect/MysqlDialect.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/dialect/MysqlDialect.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.dialect; import java.sql.SQLException; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/dialect/MysqlUpsertAssembler.java b/doma-core/src/main/java/org/seasar/doma/jdbc/dialect/MysqlUpsertAssembler.java index 74fd45aaf..1655565a5 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/dialect/MysqlUpsertAssembler.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/dialect/MysqlUpsertAssembler.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.dialect; import java.util.List; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/dialect/Oracle11Dialect.java b/doma-core/src/main/java/org/seasar/doma/jdbc/dialect/Oracle11Dialect.java index 31f6a3102..d66c3b500 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/dialect/Oracle11Dialect.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/dialect/Oracle11Dialect.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.dialect; import java.sql.Date; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/dialect/OracleDialect.java b/doma-core/src/main/java/org/seasar/doma/jdbc/dialect/OracleDialect.java index 5b89692be..a47e51f20 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/dialect/OracleDialect.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/dialect/OracleDialect.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.dialect; import org.seasar.doma.expr.ExpressionFunctions; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/dialect/OracleMultiInsertAssembler.java b/doma-core/src/main/java/org/seasar/doma/jdbc/dialect/OracleMultiInsertAssembler.java index 61b389b9d..09f7a0441 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/dialect/OracleMultiInsertAssembler.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/dialect/OracleMultiInsertAssembler.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.dialect; import java.util.List; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/dialect/OracleUpsertAssembler.java b/doma-core/src/main/java/org/seasar/doma/jdbc/dialect/OracleUpsertAssembler.java index edaf1d526..6afd246a6 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/dialect/OracleUpsertAssembler.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/dialect/OracleUpsertAssembler.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.dialect; import java.util.List; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/dialect/PostgreSqlUpsertAssembler.java b/doma-core/src/main/java/org/seasar/doma/jdbc/dialect/PostgreSqlUpsertAssembler.java index d1b88a4c3..b4d15d21b 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/dialect/PostgreSqlUpsertAssembler.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/dialect/PostgreSqlUpsertAssembler.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.dialect; import java.util.List; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/dialect/PostgresDialect.java b/doma-core/src/main/java/org/seasar/doma/jdbc/dialect/PostgresDialect.java index 7dc900dc6..db4b6b52d 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/dialect/PostgresDialect.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/dialect/PostgresDialect.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.dialect; import java.sql.ResultSet; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/dialect/SqliteDialect.java b/doma-core/src/main/java/org/seasar/doma/jdbc/dialect/SqliteDialect.java index e83838078..690f0a2b2 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/dialect/SqliteDialect.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/dialect/SqliteDialect.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.dialect; import java.sql.SQLException; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/dialect/SqliteUpsertAssembler.java b/doma-core/src/main/java/org/seasar/doma/jdbc/dialect/SqliteUpsertAssembler.java index 8d47002c0..bcbbfb806 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/dialect/SqliteUpsertAssembler.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/dialect/SqliteUpsertAssembler.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.dialect; import java.util.List; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/dialect/StandardDialect.java b/doma-core/src/main/java/org/seasar/doma/jdbc/dialect/StandardDialect.java index b47c6e7f8..8dc10f8cc 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/dialect/StandardDialect.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/dialect/StandardDialect.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.dialect; import java.sql.Date; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/dialect/StandardMultiInsertAssembler.java b/doma-core/src/main/java/org/seasar/doma/jdbc/dialect/StandardMultiInsertAssembler.java index 0358ccc1b..220aa2567 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/dialect/StandardMultiInsertAssembler.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/dialect/StandardMultiInsertAssembler.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.dialect; import java.util.List; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/dialect/package-info.java b/doma-core/src/main/java/org/seasar/doma/jdbc/dialect/package-info.java index 1446f3195..f2a3e564b 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/dialect/package-info.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/dialect/package-info.java @@ -1,2 +1,17 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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. + */ /** Provides {@literal RDBMS} dialects. */ package org.seasar.doma.jdbc.dialect; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/domain/AbstractDomainType.java b/doma-core/src/main/java/org/seasar/doma/jdbc/domain/AbstractDomainType.java index 2ef74f67e..4b27851e0 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/domain/AbstractDomainType.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/domain/AbstractDomainType.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.domain; import java.util.Optional; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/domain/DomainConverter.java b/doma-core/src/main/java/org/seasar/doma/jdbc/domain/DomainConverter.java index ad051312c..f9c098e41 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/domain/DomainConverter.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/domain/DomainConverter.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.domain; import org.seasar.doma.DomainConverters; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/domain/DomainType.java b/doma-core/src/main/java/org/seasar/doma/jdbc/domain/DomainType.java index da6663725..f13a1a69d 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/domain/DomainType.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/domain/DomainType.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.domain; import java.util.Optional; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/domain/DomainTypeFactory.java b/doma-core/src/main/java/org/seasar/doma/jdbc/domain/DomainTypeFactory.java index ecddfb455..2729b7889 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/domain/DomainTypeFactory.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/domain/DomainTypeFactory.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.domain; import static org.seasar.doma.internal.Constants.EXTERNAL_DOMAIN_TYPE_ARRAY_SUFFIX; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/domain/DomainTypeNotFoundException.java b/doma-core/src/main/java/org/seasar/doma/jdbc/domain/DomainTypeNotFoundException.java index 138d603ec..bbccb3eec 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/domain/DomainTypeNotFoundException.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/domain/DomainTypeNotFoundException.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.domain; import org.seasar.doma.jdbc.JdbcException; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/domain/JdbcTypeProvider.java b/doma-core/src/main/java/org/seasar/doma/jdbc/domain/JdbcTypeProvider.java index 0b0603b97..1fc6c609d 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/domain/JdbcTypeProvider.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/domain/JdbcTypeProvider.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.domain; import org.seasar.doma.jdbc.type.JdbcType; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/domain/package-info.java b/doma-core/src/main/java/org/seasar/doma/jdbc/domain/package-info.java index 2ab846200..7155daff9 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/domain/package-info.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/domain/package-info.java @@ -1,2 +1,17 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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. + */ /** Provides the classes that are related to domains. */ package org.seasar.doma.jdbc.domain; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/entity/AbstractEntityType.java b/doma-core/src/main/java/org/seasar/doma/jdbc/entity/AbstractEntityType.java index a71166d2a..56f1e02bf 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/entity/AbstractEntityType.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/entity/AbstractEntityType.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.entity; import java.util.function.BiFunction; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/entity/AssignedIdPropertyType.java b/doma-core/src/main/java/org/seasar/doma/jdbc/entity/AssignedIdPropertyType.java index 68a583783..ef888fc70 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/entity/AssignedIdPropertyType.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/entity/AssignedIdPropertyType.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.entity; import java.util.function.Supplier; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/entity/DefaultPropertyType.java b/doma-core/src/main/java/org/seasar/doma/jdbc/entity/DefaultPropertyType.java index 0138d36e6..dbd512f21 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/entity/DefaultPropertyType.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/entity/DefaultPropertyType.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.entity; import java.util.HashMap; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/entity/EmbeddableType.java b/doma-core/src/main/java/org/seasar/doma/jdbc/entity/EmbeddableType.java index d673b17be..34b567bc9 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/entity/EmbeddableType.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/entity/EmbeddableType.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.entity; import java.util.List; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/entity/EmbeddedPropertyType.java b/doma-core/src/main/java/org/seasar/doma/jdbc/entity/EmbeddedPropertyType.java index 0308fe317..721e1fcdc 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/entity/EmbeddedPropertyType.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/entity/EmbeddedPropertyType.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.entity; import static java.util.stream.Collectors.toMap; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/entity/EntityListener.java b/doma-core/src/main/java/org/seasar/doma/jdbc/entity/EntityListener.java index 7ea2115d3..62eb2abfe 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/entity/EntityListener.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/entity/EntityListener.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.entity; /** diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/entity/EntityPropertyAccessException.java b/doma-core/src/main/java/org/seasar/doma/jdbc/entity/EntityPropertyAccessException.java index c97e0d728..de7f5e425 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/entity/EntityPropertyAccessException.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/entity/EntityPropertyAccessException.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.entity; import org.seasar.doma.jdbc.JdbcException; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/entity/EntityPropertyNotDefinedException.java b/doma-core/src/main/java/org/seasar/doma/jdbc/entity/EntityPropertyNotDefinedException.java index 121220197..a1045c6cf 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/entity/EntityPropertyNotDefinedException.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/entity/EntityPropertyNotDefinedException.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.entity; import org.seasar.doma.jdbc.JdbcException; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/entity/EntityPropertyNotFoundException.java b/doma-core/src/main/java/org/seasar/doma/jdbc/entity/EntityPropertyNotFoundException.java index 7e74947e0..46f0ba7e2 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/entity/EntityPropertyNotFoundException.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/entity/EntityPropertyNotFoundException.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.entity; import org.seasar.doma.jdbc.JdbcException; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/entity/EntityPropertyType.java b/doma-core/src/main/java/org/seasar/doma/jdbc/entity/EntityPropertyType.java index c602910e5..49bb4ab30 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/entity/EntityPropertyType.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/entity/EntityPropertyType.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.entity; import java.util.function.BiFunction; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/entity/EntityType.java b/doma-core/src/main/java/org/seasar/doma/jdbc/entity/EntityType.java index 4c12830ac..d7ae73269 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/entity/EntityType.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/entity/EntityType.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.entity; import java.util.List; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/entity/EntityTypeFactory.java b/doma-core/src/main/java/org/seasar/doma/jdbc/entity/EntityTypeFactory.java index c85b86462..0492e1dc5 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/entity/EntityTypeFactory.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/entity/EntityTypeFactory.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.entity; import java.lang.reflect.Method; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/entity/EntityTypeNotFoundException.java b/doma-core/src/main/java/org/seasar/doma/jdbc/entity/EntityTypeNotFoundException.java index 88c6d3df3..3f83c0e2f 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/entity/EntityTypeNotFoundException.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/entity/EntityTypeNotFoundException.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.entity; import org.seasar.doma.jdbc.JdbcException; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/entity/GeneratedIdPropertyType.java b/doma-core/src/main/java/org/seasar/doma/jdbc/entity/GeneratedIdPropertyType.java index baecb2220..e1b58afeb 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/entity/GeneratedIdPropertyType.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/entity/GeneratedIdPropertyType.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.entity; import java.sql.Statement; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/entity/NamingType.java b/doma-core/src/main/java/org/seasar/doma/jdbc/entity/NamingType.java index 866849f4f..dacbcaaf7 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/entity/NamingType.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/entity/NamingType.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.entity; import org.seasar.doma.Column; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/entity/NullEntityListener.java b/doma-core/src/main/java/org/seasar/doma/jdbc/entity/NullEntityListener.java index 1a2e22a8c..c1ce601b0 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/entity/NullEntityListener.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/entity/NullEntityListener.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.entity; /** diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/entity/OriginalStatesAccessException.java b/doma-core/src/main/java/org/seasar/doma/jdbc/entity/OriginalStatesAccessException.java index dab64c9a5..a32996d4f 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/entity/OriginalStatesAccessException.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/entity/OriginalStatesAccessException.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.entity; import org.seasar.doma.OriginalStates; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/entity/OriginalStatesAccessor.java b/doma-core/src/main/java/org/seasar/doma/jdbc/entity/OriginalStatesAccessor.java index de24a9e67..ec08c4468 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/entity/OriginalStatesAccessor.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/entity/OriginalStatesAccessor.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.entity; import java.lang.reflect.Field; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/entity/OriginalStatesNotFoundException.java b/doma-core/src/main/java/org/seasar/doma/jdbc/entity/OriginalStatesNotFoundException.java index f0ce28c07..50ec74c02 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/entity/OriginalStatesNotFoundException.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/entity/OriginalStatesNotFoundException.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.entity; import org.seasar.doma.OriginalStates; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/entity/PostDeleteContext.java b/doma-core/src/main/java/org/seasar/doma/jdbc/entity/PostDeleteContext.java index 658a993ae..871cddc8c 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/entity/PostDeleteContext.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/entity/PostDeleteContext.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.entity; import java.lang.reflect.Method; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/entity/PostInsertContext.java b/doma-core/src/main/java/org/seasar/doma/jdbc/entity/PostInsertContext.java index 2827be862..2ce17a69c 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/entity/PostInsertContext.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/entity/PostInsertContext.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.entity; import java.lang.reflect.Method; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/entity/PostUpdateContext.java b/doma-core/src/main/java/org/seasar/doma/jdbc/entity/PostUpdateContext.java index b327754c3..f7466e000 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/entity/PostUpdateContext.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/entity/PostUpdateContext.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.entity; import java.lang.reflect.Method; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/entity/PreDeleteContext.java b/doma-core/src/main/java/org/seasar/doma/jdbc/entity/PreDeleteContext.java index 48293b1f3..e910b639a 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/entity/PreDeleteContext.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/entity/PreDeleteContext.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.entity; import java.lang.reflect.Method; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/entity/PreInsertContext.java b/doma-core/src/main/java/org/seasar/doma/jdbc/entity/PreInsertContext.java index 9e67c00d0..e053f9cf0 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/entity/PreInsertContext.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/entity/PreInsertContext.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.entity; import java.lang.reflect.Method; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/entity/PreUpdateContext.java b/doma-core/src/main/java/org/seasar/doma/jdbc/entity/PreUpdateContext.java index 5513bb4d9..a53be2fbf 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/entity/PreUpdateContext.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/entity/PreUpdateContext.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.entity; import java.lang.reflect.Method; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/entity/Property.java b/doma-core/src/main/java/org/seasar/doma/jdbc/entity/Property.java index f15dcbe2c..de02f477c 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/entity/Property.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/entity/Property.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.entity; import org.seasar.doma.jdbc.InParameter; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/entity/TenantIdPropertyType.java b/doma-core/src/main/java/org/seasar/doma/jdbc/entity/TenantIdPropertyType.java index 0c5653de5..ed292ae5b 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/entity/TenantIdPropertyType.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/entity/TenantIdPropertyType.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.entity; import java.util.function.Supplier; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/entity/VersionPropertyType.java b/doma-core/src/main/java/org/seasar/doma/jdbc/entity/VersionPropertyType.java index ca7e43a21..755b5dbb7 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/entity/VersionPropertyType.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/entity/VersionPropertyType.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.entity; import java.util.function.Supplier; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/entity/package-info.java b/doma-core/src/main/java/org/seasar/doma/jdbc/entity/package-info.java index ac62691aa..56c18abe1 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/entity/package-info.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/entity/package-info.java @@ -1,2 +1,17 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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. + */ /** Provides the classes that are related to entities. */ package org.seasar.doma.jdbc.entity; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/id/AbstractIdGenerator.java b/doma-core/src/main/java/org/seasar/doma/jdbc/id/AbstractIdGenerator.java index ebe248a61..da18df481 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/id/AbstractIdGenerator.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/id/AbstractIdGenerator.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.id; import java.sql.Connection; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/id/AbstractPreGenerateIdGenerator.java b/doma-core/src/main/java/org/seasar/doma/jdbc/id/AbstractPreGenerateIdGenerator.java index 0ba336a0c..553af09a9 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/id/AbstractPreGenerateIdGenerator.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/id/AbstractPreGenerateIdGenerator.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.id; import java.sql.Statement; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/id/AutoGeneratedKeysType.java b/doma-core/src/main/java/org/seasar/doma/jdbc/id/AutoGeneratedKeysType.java index fb38d71d4..34be483ba 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/id/AutoGeneratedKeysType.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/id/AutoGeneratedKeysType.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.id; import java.sql.Connection; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/id/BuiltinIdentityIdGenerator.java b/doma-core/src/main/java/org/seasar/doma/jdbc/id/BuiltinIdentityIdGenerator.java index 112cbb60e..8375f7631 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/id/BuiltinIdentityIdGenerator.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/id/BuiltinIdentityIdGenerator.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.id; import java.sql.ResultSet; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/id/BuiltinSequenceIdGenerator.java b/doma-core/src/main/java/org/seasar/doma/jdbc/id/BuiltinSequenceIdGenerator.java index 3bb1daf75..e826be46d 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/id/BuiltinSequenceIdGenerator.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/id/BuiltinSequenceIdGenerator.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.id; import org.seasar.doma.GenerationType; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/id/BuiltinTableIdGenerator.java b/doma-core/src/main/java/org/seasar/doma/jdbc/id/BuiltinTableIdGenerator.java index 33a3e2c14..96eac457e 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/id/BuiltinTableIdGenerator.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/id/BuiltinTableIdGenerator.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.id; import java.sql.Connection; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/id/IdGenerationConfig.java b/doma-core/src/main/java/org/seasar/doma/jdbc/id/IdGenerationConfig.java index 1bbd16131..c7aae3d01 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/id/IdGenerationConfig.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/id/IdGenerationConfig.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.id; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/id/IdGenerator.java b/doma-core/src/main/java/org/seasar/doma/jdbc/id/IdGenerator.java index 3341e2ad3..f926034c6 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/id/IdGenerator.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/id/IdGenerator.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.id; import java.sql.Statement; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/id/IdProvider.java b/doma-core/src/main/java/org/seasar/doma/jdbc/id/IdProvider.java index 32af67988..2bdc017d0 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/id/IdProvider.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/id/IdProvider.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.id; /** An identity provider. */ diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/id/IdentityIdGenerator.java b/doma-core/src/main/java/org/seasar/doma/jdbc/id/IdentityIdGenerator.java index fed773b66..4ddda9832 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/id/IdentityIdGenerator.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/id/IdentityIdGenerator.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.id; /** A generator that uses a database IDENTITY column. */ diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/id/ReservedIdProvider.java b/doma-core/src/main/java/org/seasar/doma/jdbc/id/ReservedIdProvider.java index 3f41ace99..0aaee1e6a 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/id/ReservedIdProvider.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/id/ReservedIdProvider.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.id; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/id/SequenceIdGenerator.java b/doma-core/src/main/java/org/seasar/doma/jdbc/id/SequenceIdGenerator.java index afb9ce504..63275417a 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/id/SequenceIdGenerator.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/id/SequenceIdGenerator.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.id; import org.seasar.doma.jdbc.JdbcException; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/id/TableIdGenerator.java b/doma-core/src/main/java/org/seasar/doma/jdbc/id/TableIdGenerator.java index a046b5204..31e27b2bb 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/id/TableIdGenerator.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/id/TableIdGenerator.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.id; import org.seasar.doma.jdbc.JdbcException; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/id/package-info.java b/doma-core/src/main/java/org/seasar/doma/jdbc/id/package-info.java index 1ff4f7f74..788346ab2 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/id/package-info.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/id/package-info.java @@ -1,2 +1,17 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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. + */ /** Provides classes that are related to identity generation of entity. */ package org.seasar.doma.jdbc.id; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/package-info.java b/doma-core/src/main/java/org/seasar/doma/jdbc/package-info.java index 49e9fce65..c3d05b7fc 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/package-info.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/package-info.java @@ -1,2 +1,17 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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. + */ /** Provides {@literal JDBC} related interfaces and classes. */ package org.seasar.doma.jdbc; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/query/AbstractCreateQuery.java b/doma-core/src/main/java/org/seasar/doma/jdbc/query/AbstractCreateQuery.java index f4c9894af..7c5d3a0cb 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/query/AbstractCreateQuery.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/query/AbstractCreateQuery.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.query; import org.seasar.doma.jdbc.Sql; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/query/AbstractQuery.java b/doma-core/src/main/java/org/seasar/doma/jdbc/query/AbstractQuery.java index 816f3457e..0d740eb96 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/query/AbstractQuery.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/query/AbstractQuery.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.query; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/query/AbstractSelectQuery.java b/doma-core/src/main/java/org/seasar/doma/jdbc/query/AbstractSelectQuery.java index 19bdc83c9..6d65a1b47 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/query/AbstractSelectQuery.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/query/AbstractSelectQuery.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.query; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/query/ArrayCreateQuery.java b/doma-core/src/main/java/org/seasar/doma/jdbc/query/ArrayCreateQuery.java index 948cb1e58..a3ef78ae5 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/query/ArrayCreateQuery.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/query/ArrayCreateQuery.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.query; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/query/AutoBatchDeleteQuery.java b/doma-core/src/main/java/org/seasar/doma/jdbc/query/AutoBatchDeleteQuery.java index 8c1917ef4..050f8f6bb 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/query/AutoBatchDeleteQuery.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/query/AutoBatchDeleteQuery.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.query; import static org.seasar.doma.internal.util.AssertionUtil.assertEquals; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/query/AutoBatchInsertQuery.java b/doma-core/src/main/java/org/seasar/doma/jdbc/query/AutoBatchInsertQuery.java index 495e291c9..efb9ee859 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/query/AutoBatchInsertQuery.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/query/AutoBatchInsertQuery.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.query; import static org.seasar.doma.internal.util.AssertionUtil.assertEquals; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/query/AutoBatchModifyQuery.java b/doma-core/src/main/java/org/seasar/doma/jdbc/query/AutoBatchModifyQuery.java index 9e62a2839..e7eaf940a 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/query/AutoBatchModifyQuery.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/query/AutoBatchModifyQuery.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.query; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/query/AutoBatchUpdateQuery.java b/doma-core/src/main/java/org/seasar/doma/jdbc/query/AutoBatchUpdateQuery.java index 9d233258d..8e33eb379 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/query/AutoBatchUpdateQuery.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/query/AutoBatchUpdateQuery.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.query; import static org.seasar.doma.internal.util.AssertionUtil.assertEquals; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/query/AutoDeleteQuery.java b/doma-core/src/main/java/org/seasar/doma/jdbc/query/AutoDeleteQuery.java index 4680423cf..afdd6d4c0 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/query/AutoDeleteQuery.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/query/AutoDeleteQuery.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.query; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/query/AutoFunctionQuery.java b/doma-core/src/main/java/org/seasar/doma/jdbc/query/AutoFunctionQuery.java index 974191f0d..48f21f6e0 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/query/AutoFunctionQuery.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/query/AutoFunctionQuery.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.query; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/query/AutoInsertQuery.java b/doma-core/src/main/java/org/seasar/doma/jdbc/query/AutoInsertQuery.java index b6db3ea8d..328156575 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/query/AutoInsertQuery.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/query/AutoInsertQuery.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.query; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/query/AutoModifyQuery.java b/doma-core/src/main/java/org/seasar/doma/jdbc/query/AutoModifyQuery.java index 70440e535..e304bdc64 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/query/AutoModifyQuery.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/query/AutoModifyQuery.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.query; import java.util.List; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/query/AutoModuleQuery.java b/doma-core/src/main/java/org/seasar/doma/jdbc/query/AutoModuleQuery.java index 647aca26b..e7b7d8dce 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/query/AutoModuleQuery.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/query/AutoModuleQuery.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.query; import java.util.ArrayList; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/query/AutoMultiInsertQuery.java b/doma-core/src/main/java/org/seasar/doma/jdbc/query/AutoMultiInsertQuery.java index dc96a8e1c..ea2a8894d 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/query/AutoMultiInsertQuery.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/query/AutoMultiInsertQuery.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.query; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/query/AutoProcedureQuery.java b/doma-core/src/main/java/org/seasar/doma/jdbc/query/AutoProcedureQuery.java index 6d13dbf63..065446f5e 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/query/AutoProcedureQuery.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/query/AutoProcedureQuery.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.query; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/query/AutoUpdateQuery.java b/doma-core/src/main/java/org/seasar/doma/jdbc/query/AutoUpdateQuery.java index 044a721c3..20eafcba5 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/query/AutoUpdateQuery.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/query/AutoUpdateQuery.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.query; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/query/BatchDeleteQuery.java b/doma-core/src/main/java/org/seasar/doma/jdbc/query/BatchDeleteQuery.java index 082063ae6..8d8e144e1 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/query/BatchDeleteQuery.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/query/BatchDeleteQuery.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.query; public interface BatchDeleteQuery extends BatchModifyQuery {} diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/query/BatchInsertQuery.java b/doma-core/src/main/java/org/seasar/doma/jdbc/query/BatchInsertQuery.java index 77ee6b4a3..de1b705ba 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/query/BatchInsertQuery.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/query/BatchInsertQuery.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.query; import java.sql.Statement; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/query/BatchModifyQuery.java b/doma-core/src/main/java/org/seasar/doma/jdbc/query/BatchModifyQuery.java index ef583b63e..46c5855d0 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/query/BatchModifyQuery.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/query/BatchModifyQuery.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.query; import java.util.List; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/query/BatchUpdateQuery.java b/doma-core/src/main/java/org/seasar/doma/jdbc/query/BatchUpdateQuery.java index e2eaa4245..449e3b91f 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/query/BatchUpdateQuery.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/query/BatchUpdateQuery.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.query; public interface BatchUpdateQuery extends BatchModifyQuery { diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/query/BatchUpdateQueryHelper.java b/doma-core/src/main/java/org/seasar/doma/jdbc/query/BatchUpdateQueryHelper.java index c3f389773..b8344ad1e 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/query/BatchUpdateQueryHelper.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/query/BatchUpdateQueryHelper.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.query; import java.util.ArrayList; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/query/BlobCreateQuery.java b/doma-core/src/main/java/org/seasar/doma/jdbc/query/BlobCreateQuery.java index 40c51ef33..b68fdbdde 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/query/BlobCreateQuery.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/query/BlobCreateQuery.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.query; import java.sql.Blob; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/query/ClobCreateQuery.java b/doma-core/src/main/java/org/seasar/doma/jdbc/query/ClobCreateQuery.java index 197786925..b510ae94b 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/query/ClobCreateQuery.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/query/ClobCreateQuery.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.query; import java.sql.Clob; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/query/CountQuery.java b/doma-core/src/main/java/org/seasar/doma/jdbc/query/CountQuery.java index baf8e5e8e..4a16c01d5 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/query/CountQuery.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/query/CountQuery.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.query; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/query/CreateQuery.java b/doma-core/src/main/java/org/seasar/doma/jdbc/query/CreateQuery.java index a7d0fa25e..c0010286d 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/query/CreateQuery.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/query/CreateQuery.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.query; import java.sql.Connection; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/query/DeleteQuery.java b/doma-core/src/main/java/org/seasar/doma/jdbc/query/DeleteQuery.java index fcc4bb758..5825563a7 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/query/DeleteQuery.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/query/DeleteQuery.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.query; public interface DeleteQuery extends ModifyQuery {} diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/query/DuplicateKeyType.java b/doma-core/src/main/java/org/seasar/doma/jdbc/query/DuplicateKeyType.java index aac5bae35..5835ad3c3 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/query/DuplicateKeyType.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/query/DuplicateKeyType.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.query; /** Retrieves the type of the duplicate key when inserting a new entity. */ diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/query/FunctionQuery.java b/doma-core/src/main/java/org/seasar/doma/jdbc/query/FunctionQuery.java index 1784c1405..1c4aafebf 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/query/FunctionQuery.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/query/FunctionQuery.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.query; public interface FunctionQuery extends ModuleQuery { diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/query/InsertQuery.java b/doma-core/src/main/java/org/seasar/doma/jdbc/query/InsertQuery.java index 143ca0bf7..fc91a821f 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/query/InsertQuery.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/query/InsertQuery.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.query; import java.sql.Statement; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/query/InsertRow.java b/doma-core/src/main/java/org/seasar/doma/jdbc/query/InsertRow.java index 38d77a6d8..214742052 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/query/InsertRow.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/query/InsertRow.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.query; import java.util.Iterator; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/query/ModifyQuery.java b/doma-core/src/main/java/org/seasar/doma/jdbc/query/ModifyQuery.java index 75afd8b95..a027ed0ed 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/query/ModifyQuery.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/query/ModifyQuery.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.query; import org.seasar.doma.jdbc.PreparedSql; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/query/ModuleQuery.java b/doma-core/src/main/java/org/seasar/doma/jdbc/query/ModuleQuery.java index 603020ccb..17f9b745e 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/query/ModuleQuery.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/query/ModuleQuery.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.query; import org.seasar.doma.jdbc.CallableSql; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/query/MultiInsertAssembler.java b/doma-core/src/main/java/org/seasar/doma/jdbc/query/MultiInsertAssembler.java index 90e92cf09..30cc7df77 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/query/MultiInsertAssembler.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/query/MultiInsertAssembler.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.query; /** Assemble the multi-row insert query interface. Implement this interface for each dialect. */ diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/query/MultiInsertAssemblerContext.java b/doma-core/src/main/java/org/seasar/doma/jdbc/query/MultiInsertAssemblerContext.java index 0d59019f1..f925d552b 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/query/MultiInsertAssemblerContext.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/query/MultiInsertAssemblerContext.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.query; import java.util.List; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/query/MultiInsertAssemblerContextBuilder.java b/doma-core/src/main/java/org/seasar/doma/jdbc/query/MultiInsertAssemblerContextBuilder.java index 9a10b5cb0..268eb6c99 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/query/MultiInsertAssemblerContextBuilder.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/query/MultiInsertAssemblerContextBuilder.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.query; import java.util.List; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/query/NClobCreateQuery.java b/doma-core/src/main/java/org/seasar/doma/jdbc/query/NClobCreateQuery.java index 1b9874ad2..05cfbe8a6 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/query/NClobCreateQuery.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/query/NClobCreateQuery.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.query; import java.sql.Connection; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/query/ProcedureQuery.java b/doma-core/src/main/java/org/seasar/doma/jdbc/query/ProcedureQuery.java index 5eb172991..c1c67b3ae 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/query/ProcedureQuery.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/query/ProcedureQuery.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.query; public interface ProcedureQuery extends ModuleQuery {} diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/query/Query.java b/doma-core/src/main/java/org/seasar/doma/jdbc/query/Query.java index 0be68bdda..214eafe0c 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/query/Query.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/query/Query.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.query; import java.lang.reflect.Method; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/query/QueryOperand.java b/doma-core/src/main/java/org/seasar/doma/jdbc/query/QueryOperand.java index 1d26fb26b..95ce45354 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/query/QueryOperand.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/query/QueryOperand.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.query; import java.util.Objects; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/query/QueryOperandPair.java b/doma-core/src/main/java/org/seasar/doma/jdbc/query/QueryOperandPair.java index d1ab55e3e..2058b10dc 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/query/QueryOperandPair.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/query/QueryOperandPair.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.query; import java.util.Objects; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/query/QueryUtil.java b/doma-core/src/main/java/org/seasar/doma/jdbc/query/QueryUtil.java index 6b0948bb7..05ae05958 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/query/QueryUtil.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/query/QueryUtil.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.query; import java.util.Arrays; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/query/SQLXMLCreateQuery.java b/doma-core/src/main/java/org/seasar/doma/jdbc/query/SQLXMLCreateQuery.java index 2d2886344..ee8550dbb 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/query/SQLXMLCreateQuery.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/query/SQLXMLCreateQuery.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.query; import java.sql.Connection; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/query/ScriptQuery.java b/doma-core/src/main/java/org/seasar/doma/jdbc/query/ScriptQuery.java index 453758791..0b19de5cf 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/query/ScriptQuery.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/query/ScriptQuery.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.query; import java.io.Reader; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/query/SelectQuery.java b/doma-core/src/main/java/org/seasar/doma/jdbc/query/SelectQuery.java index 1244ac068..85a59d9fc 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/query/SelectQuery.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/query/SelectQuery.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.query; import org.seasar.doma.FetchType; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/query/SqlBatchDeleteQuery.java b/doma-core/src/main/java/org/seasar/doma/jdbc/query/SqlBatchDeleteQuery.java index 7a696830c..330401fff 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/query/SqlBatchDeleteQuery.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/query/SqlBatchDeleteQuery.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.query; import org.seasar.doma.jdbc.SqlKind; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/query/SqlBatchInsertQuery.java b/doma-core/src/main/java/org/seasar/doma/jdbc/query/SqlBatchInsertQuery.java index 61ad07067..2947cb3c3 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/query/SqlBatchInsertQuery.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/query/SqlBatchInsertQuery.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.query; import java.sql.Statement; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/query/SqlBatchModifyQuery.java b/doma-core/src/main/java/org/seasar/doma/jdbc/query/SqlBatchModifyQuery.java index 52fc63cdb..0d12aec1b 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/query/SqlBatchModifyQuery.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/query/SqlBatchModifyQuery.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.query; import static org.seasar.doma.internal.util.AssertionUtil.assertEquals; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/query/SqlBatchUpdateQuery.java b/doma-core/src/main/java/org/seasar/doma/jdbc/query/SqlBatchUpdateQuery.java index 41003f4d0..4f146d04b 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/query/SqlBatchUpdateQuery.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/query/SqlBatchUpdateQuery.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.query; import org.seasar.doma.jdbc.SqlKind; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/query/SqlDeleteQuery.java b/doma-core/src/main/java/org/seasar/doma/jdbc/query/SqlDeleteQuery.java index ec428d806..bd2b4ce9e 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/query/SqlDeleteQuery.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/query/SqlDeleteQuery.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.query; import org.seasar.doma.jdbc.SqlKind; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/query/SqlFileBatchDeleteQuery.java b/doma-core/src/main/java/org/seasar/doma/jdbc/query/SqlFileBatchDeleteQuery.java index 200e07a8d..cca74fff7 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/query/SqlFileBatchDeleteQuery.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/query/SqlFileBatchDeleteQuery.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.query; import static org.seasar.doma.internal.util.AssertionUtil.assertEquals; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/query/SqlFileBatchInsertQuery.java b/doma-core/src/main/java/org/seasar/doma/jdbc/query/SqlFileBatchInsertQuery.java index eda874289..6ddf069fe 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/query/SqlFileBatchInsertQuery.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/query/SqlFileBatchInsertQuery.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.query; import static org.seasar.doma.internal.util.AssertionUtil.assertEquals; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/query/SqlFileBatchModifyQuery.java b/doma-core/src/main/java/org/seasar/doma/jdbc/query/SqlFileBatchModifyQuery.java index fc00b37fa..4772f1ad6 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/query/SqlFileBatchModifyQuery.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/query/SqlFileBatchModifyQuery.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.query; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/query/SqlFileBatchUpdateQuery.java b/doma-core/src/main/java/org/seasar/doma/jdbc/query/SqlFileBatchUpdateQuery.java index 3811a0536..4fa105eb2 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/query/SqlFileBatchUpdateQuery.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/query/SqlFileBatchUpdateQuery.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.query; import static org.seasar.doma.internal.util.AssertionUtil.assertEquals; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/query/SqlFileDeleteQuery.java b/doma-core/src/main/java/org/seasar/doma/jdbc/query/SqlFileDeleteQuery.java index 49f9ee9ff..1eb6cc1af 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/query/SqlFileDeleteQuery.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/query/SqlFileDeleteQuery.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.query; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/query/SqlFileInsertQuery.java b/doma-core/src/main/java/org/seasar/doma/jdbc/query/SqlFileInsertQuery.java index 91ac764ee..be95f1ee9 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/query/SqlFileInsertQuery.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/query/SqlFileInsertQuery.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.query; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/query/SqlFileModifyQuery.java b/doma-core/src/main/java/org/seasar/doma/jdbc/query/SqlFileModifyQuery.java index f9285eef8..2b6eaa18c 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/query/SqlFileModifyQuery.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/query/SqlFileModifyQuery.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.query; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/query/SqlFileScriptQuery.java b/doma-core/src/main/java/org/seasar/doma/jdbc/query/SqlFileScriptQuery.java index 26f2eb62b..ce9112a8b 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/query/SqlFileScriptQuery.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/query/SqlFileScriptQuery.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.query; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/query/SqlFileSelectQuery.java b/doma-core/src/main/java/org/seasar/doma/jdbc/query/SqlFileSelectQuery.java index 957ca6435..1293ed566 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/query/SqlFileSelectQuery.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/query/SqlFileSelectQuery.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.query; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/query/SqlFileUpdateQuery.java b/doma-core/src/main/java/org/seasar/doma/jdbc/query/SqlFileUpdateQuery.java index 6fb837f6c..91b71d5ce 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/query/SqlFileUpdateQuery.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/query/SqlFileUpdateQuery.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.query; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/query/SqlInsertQuery.java b/doma-core/src/main/java/org/seasar/doma/jdbc/query/SqlInsertQuery.java index 9b1e3e4fc..7f0acd11f 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/query/SqlInsertQuery.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/query/SqlInsertQuery.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.query; import java.sql.Statement; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/query/SqlModifyQuery.java b/doma-core/src/main/java/org/seasar/doma/jdbc/query/SqlModifyQuery.java index d725c52cf..07442b6fc 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/query/SqlModifyQuery.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/query/SqlModifyQuery.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.query; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/query/SqlProcessorQuery.java b/doma-core/src/main/java/org/seasar/doma/jdbc/query/SqlProcessorQuery.java index 316600e18..402ca463f 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/query/SqlProcessorQuery.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/query/SqlProcessorQuery.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.query; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/query/SqlSelectQuery.java b/doma-core/src/main/java/org/seasar/doma/jdbc/query/SqlSelectQuery.java index 62dde9d38..0b7aef916 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/query/SqlSelectQuery.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/query/SqlSelectQuery.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.query; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/query/SqlUpdateQuery.java b/doma-core/src/main/java/org/seasar/doma/jdbc/query/SqlUpdateQuery.java index a9723c421..00c4b02f0 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/query/SqlUpdateQuery.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/query/SqlUpdateQuery.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.query; import org.seasar.doma.jdbc.SqlKind; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/query/UpdateQuery.java b/doma-core/src/main/java/org/seasar/doma/jdbc/query/UpdateQuery.java index 71bf6aca0..ad73df3ad 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/query/UpdateQuery.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/query/UpdateQuery.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.query; public interface UpdateQuery extends ModifyQuery { diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/query/UpdateQueryHelper.java b/doma-core/src/main/java/org/seasar/doma/jdbc/query/UpdateQueryHelper.java index 7ed50f722..8c772770e 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/query/UpdateQueryHelper.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/query/UpdateQueryHelper.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.query; import java.util.ArrayList; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/query/UpsertAssembler.java b/doma-core/src/main/java/org/seasar/doma/jdbc/query/UpsertAssembler.java index 35fe5e3d6..5b3b83737 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/query/UpsertAssembler.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/query/UpsertAssembler.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.query; /** Assemble the upsert query interface. Implement this interface for each dialect. */ diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/query/UpsertAssemblerContext.java b/doma-core/src/main/java/org/seasar/doma/jdbc/query/UpsertAssemblerContext.java index 1462066da..326c7b9b7 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/query/UpsertAssemblerContext.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/query/UpsertAssemblerContext.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.query; import java.util.List; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/query/UpsertAssemblerContextBuilder.java b/doma-core/src/main/java/org/seasar/doma/jdbc/query/UpsertAssemblerContextBuilder.java index 2f677e88a..0032be82f 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/query/UpsertAssemblerContextBuilder.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/query/UpsertAssemblerContextBuilder.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.query; import java.util.Collections; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/query/UpsertAssemblerSupport.java b/doma-core/src/main/java/org/seasar/doma/jdbc/query/UpsertAssemblerSupport.java index f6a272099..1cabd3ec7 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/query/UpsertAssemblerSupport.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/query/UpsertAssemblerSupport.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.query; import java.util.List; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/query/package-info.java b/doma-core/src/main/java/org/seasar/doma/jdbc/query/package-info.java index 5e7c2eaa8..89d41e7fc 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/query/package-info.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/query/package-info.java @@ -1,2 +1,17 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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. + */ /** Provides query objects that build SQL statements. */ package org.seasar.doma.jdbc.query; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/statistic/DefaultStatisticManager.java b/doma-core/src/main/java/org/seasar/doma/jdbc/statistic/DefaultStatisticManager.java index 763a6832f..e6f12f996 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/statistic/DefaultStatisticManager.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/statistic/DefaultStatisticManager.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.statistic; import java.util.Objects; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/statistic/Statistic.java b/doma-core/src/main/java/org/seasar/doma/jdbc/statistic/Statistic.java index 64d2c48ae..854b5ecb5 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/statistic/Statistic.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/statistic/Statistic.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.statistic; import java.util.Objects; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/statistic/StatisticManager.java b/doma-core/src/main/java/org/seasar/doma/jdbc/statistic/StatisticManager.java index a4265fe3c..87dc7f6bf 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/statistic/StatisticManager.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/statistic/StatisticManager.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.statistic; import org.seasar.doma.jdbc.Sql; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/tx/KeepAliveLocalTransaction.java b/doma-core/src/main/java/org/seasar/doma/jdbc/tx/KeepAliveLocalTransaction.java index 312633476..a5e3a1f0a 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/tx/KeepAliveLocalTransaction.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/tx/KeepAliveLocalTransaction.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.tx; import javax.sql.DataSource; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/tx/LocalTransaction.java b/doma-core/src/main/java/org/seasar/doma/jdbc/tx/LocalTransaction.java index 98543ba35..b08712a30 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/tx/LocalTransaction.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/tx/LocalTransaction.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.tx; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/tx/LocalTransactionConnection.java b/doma-core/src/main/java/org/seasar/doma/jdbc/tx/LocalTransactionConnection.java index 560a5c6ac..1fa05f30e 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/tx/LocalTransactionConnection.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/tx/LocalTransactionConnection.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.tx; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/tx/LocalTransactionContext.java b/doma-core/src/main/java/org/seasar/doma/jdbc/tx/LocalTransactionContext.java index c9c849b7d..155eea15f 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/tx/LocalTransactionContext.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/tx/LocalTransactionContext.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.tx; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/tx/LocalTransactionDataSource.java b/doma-core/src/main/java/org/seasar/doma/jdbc/tx/LocalTransactionDataSource.java index 2f1550569..39cd7d018 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/tx/LocalTransactionDataSource.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/tx/LocalTransactionDataSource.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.tx; import java.io.PrintWriter; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/tx/LocalTransactionManager.java b/doma-core/src/main/java/org/seasar/doma/jdbc/tx/LocalTransactionManager.java index c894ff2ae..342ebbd20 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/tx/LocalTransactionManager.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/tx/LocalTransactionManager.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.tx; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/tx/SavepointAlreadyExistsException.java b/doma-core/src/main/java/org/seasar/doma/jdbc/tx/SavepointAlreadyExistsException.java index a72e43cb6..ba3344c51 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/tx/SavepointAlreadyExistsException.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/tx/SavepointAlreadyExistsException.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.tx; import org.seasar.doma.jdbc.JdbcException; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/tx/SavepointNotFoundException.java b/doma-core/src/main/java/org/seasar/doma/jdbc/tx/SavepointNotFoundException.java index db3fe77fe..c7fa1f12a 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/tx/SavepointNotFoundException.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/tx/SavepointNotFoundException.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.tx; import java.io.Serializable; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/tx/TransactionAlreadyBegunException.java b/doma-core/src/main/java/org/seasar/doma/jdbc/tx/TransactionAlreadyBegunException.java index 796e8f3cc..7491ea312 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/tx/TransactionAlreadyBegunException.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/tx/TransactionAlreadyBegunException.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.tx; import java.io.Serializable; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/tx/TransactionAttribute.java b/doma-core/src/main/java/org/seasar/doma/jdbc/tx/TransactionAttribute.java index 38b558c65..f3add1658 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/tx/TransactionAttribute.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/tx/TransactionAttribute.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.tx; /** Defines transaction propagation behaviors. */ diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/tx/TransactionIsolationLevel.java b/doma-core/src/main/java/org/seasar/doma/jdbc/tx/TransactionIsolationLevel.java index 3ba214adf..150848d95 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/tx/TransactionIsolationLevel.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/tx/TransactionIsolationLevel.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.tx; import java.sql.Connection; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/tx/TransactionManager.java b/doma-core/src/main/java/org/seasar/doma/jdbc/tx/TransactionManager.java index e839e234a..b8881b8d3 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/tx/TransactionManager.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/tx/TransactionManager.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.tx; import java.util.function.Supplier; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/tx/TransactionNotYetBegunException.java b/doma-core/src/main/java/org/seasar/doma/jdbc/tx/TransactionNotYetBegunException.java index 9b8ad6884..2ef1601d9 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/tx/TransactionNotYetBegunException.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/tx/TransactionNotYetBegunException.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.tx; import java.io.Serializable; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/tx/package-info.java b/doma-core/src/main/java/org/seasar/doma/jdbc/tx/package-info.java index 07cd240b5..ac6ff94a1 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/tx/package-info.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/tx/package-info.java @@ -1,2 +1,17 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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. + */ /** Provides transaction related classes. */ package org.seasar.doma.jdbc.tx; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/type/AbstractJdbcType.java b/doma-core/src/main/java/org/seasar/doma/jdbc/type/AbstractJdbcType.java index eff0e33af..e19b0d9a0 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/type/AbstractJdbcType.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/type/AbstractJdbcType.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.type; import java.sql.*; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/type/AbstractResultSetType.java b/doma-core/src/main/java/org/seasar/doma/jdbc/type/AbstractResultSetType.java index 141379a12..533e538ea 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/type/AbstractResultSetType.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/type/AbstractResultSetType.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.type; import java.sql.CallableStatement; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/type/ArrayType.java b/doma-core/src/main/java/org/seasar/doma/jdbc/type/ArrayType.java index ba1478a1c..c884b7d98 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/type/ArrayType.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/type/ArrayType.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.type; import java.sql.*; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/type/BigDecimalType.java b/doma-core/src/main/java/org/seasar/doma/jdbc/type/BigDecimalType.java index db0209705..2812547d4 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/type/BigDecimalType.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/type/BigDecimalType.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.type; import java.math.BigDecimal; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/type/BigIntegerType.java b/doma-core/src/main/java/org/seasar/doma/jdbc/type/BigIntegerType.java index 06cf12dbe..054ae99ff 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/type/BigIntegerType.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/type/BigIntegerType.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.type; import java.math.BigDecimal; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/type/BlobType.java b/doma-core/src/main/java/org/seasar/doma/jdbc/type/BlobType.java index ea18a36b6..9dce7286d 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/type/BlobType.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/type/BlobType.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.type; import java.sql.*; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/type/BooleanType.java b/doma-core/src/main/java/org/seasar/doma/jdbc/type/BooleanType.java index 9cca0b1bf..3672aeacc 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/type/BooleanType.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/type/BooleanType.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.type; import java.sql.*; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/type/ByteType.java b/doma-core/src/main/java/org/seasar/doma/jdbc/type/ByteType.java index fbfc6ae8e..92e805a2b 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/type/ByteType.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/type/ByteType.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.type; import java.sql.*; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/type/BytesType.java b/doma-core/src/main/java/org/seasar/doma/jdbc/type/BytesType.java index 983265a22..d11d349d6 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/type/BytesType.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/type/BytesType.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.type; import java.sql.*; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/type/ClobType.java b/doma-core/src/main/java/org/seasar/doma/jdbc/type/ClobType.java index f23450eda..dc9feb015 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/type/ClobType.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/type/ClobType.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.type; import java.sql.*; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/type/DateType.java b/doma-core/src/main/java/org/seasar/doma/jdbc/type/DateType.java index 02087c8c9..0f73a9a52 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/type/DateType.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/type/DateType.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.type; import java.sql.*; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/type/DoubleType.java b/doma-core/src/main/java/org/seasar/doma/jdbc/type/DoubleType.java index a875a7747..9717bace2 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/type/DoubleType.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/type/DoubleType.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.type; import java.sql.*; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/type/EnumType.java b/doma-core/src/main/java/org/seasar/doma/jdbc/type/EnumType.java index 9df5cb978..bf7cc104f 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/type/EnumType.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/type/EnumType.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.type; import java.sql.*; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/type/FloatType.java b/doma-core/src/main/java/org/seasar/doma/jdbc/type/FloatType.java index 7360fd89d..6da0cbb29 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/type/FloatType.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/type/FloatType.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.type; import java.sql.*; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/type/IntegerAdaptiveBooleanType.java b/doma-core/src/main/java/org/seasar/doma/jdbc/type/IntegerAdaptiveBooleanType.java index 93557b9be..af0b7f252 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/type/IntegerAdaptiveBooleanType.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/type/IntegerAdaptiveBooleanType.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.type; import java.sql.*; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/type/IntegerType.java b/doma-core/src/main/java/org/seasar/doma/jdbc/type/IntegerType.java index b0f5813f8..b83fe9645 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/type/IntegerType.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/type/IntegerType.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.type; import java.sql.*; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/type/JdbcType.java b/doma-core/src/main/java/org/seasar/doma/jdbc/type/JdbcType.java index 0cec4eb19..6087a8930 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/type/JdbcType.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/type/JdbcType.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.type; import java.sql.CallableStatement; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/type/JdbcTypes.java b/doma-core/src/main/java/org/seasar/doma/jdbc/type/JdbcTypes.java index 5925a6e65..abd2ae61f 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/type/JdbcTypes.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/type/JdbcTypes.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.type; /** Singleton objects of {@link JdbcType} implementation classes. */ diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/type/LocalDateTimeType.java b/doma-core/src/main/java/org/seasar/doma/jdbc/type/LocalDateTimeType.java index 335e8f863..8d4782a28 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/type/LocalDateTimeType.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/type/LocalDateTimeType.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.type; import java.sql.*; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/type/LocalDateType.java b/doma-core/src/main/java/org/seasar/doma/jdbc/type/LocalDateType.java index e9b78eb69..bbc4bc8fd 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/type/LocalDateType.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/type/LocalDateType.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.type; import java.sql.*; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/type/LocalTimeType.java b/doma-core/src/main/java/org/seasar/doma/jdbc/type/LocalTimeType.java index 26824098a..d8794a51c 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/type/LocalTimeType.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/type/LocalTimeType.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.type; import java.sql.*; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/type/LongType.java b/doma-core/src/main/java/org/seasar/doma/jdbc/type/LongType.java index 6c88bb7ed..0a1957fa5 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/type/LongType.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/type/LongType.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.type; import java.sql.*; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/type/NClobType.java b/doma-core/src/main/java/org/seasar/doma/jdbc/type/NClobType.java index f6d9e3206..e4ccc1be4 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/type/NClobType.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/type/NClobType.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.type; import java.sql.*; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/type/NStringType.java b/doma-core/src/main/java/org/seasar/doma/jdbc/type/NStringType.java index e64b53cc0..6a4aa5d69 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/type/NStringType.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/type/NStringType.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.type; import java.sql.*; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/type/ObjectType.java b/doma-core/src/main/java/org/seasar/doma/jdbc/type/ObjectType.java index 40934819f..799912717 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/type/ObjectType.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/type/ObjectType.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.type; import java.sql.*; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/type/PortableObjectType.java b/doma-core/src/main/java/org/seasar/doma/jdbc/type/PortableObjectType.java index 181409493..4875249a3 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/type/PortableObjectType.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/type/PortableObjectType.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.type; import java.sql.*; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/type/SQLXMLType.java b/doma-core/src/main/java/org/seasar/doma/jdbc/type/SQLXMLType.java index b806a9464..fdda51194 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/type/SQLXMLType.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/type/SQLXMLType.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.type; import java.sql.*; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/type/ShortType.java b/doma-core/src/main/java/org/seasar/doma/jdbc/type/ShortType.java index 04a5773c7..f67af5a9a 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/type/ShortType.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/type/ShortType.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.type; import java.sql.*; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/type/StringType.java b/doma-core/src/main/java/org/seasar/doma/jdbc/type/StringType.java index 37d2c3bcd..166b8c116 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/type/StringType.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/type/StringType.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.type; import java.sql.*; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/type/TimeType.java b/doma-core/src/main/java/org/seasar/doma/jdbc/type/TimeType.java index 5d64eae4f..a548b2a6f 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/type/TimeType.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/type/TimeType.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.type; import java.sql.*; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/type/TimestampType.java b/doma-core/src/main/java/org/seasar/doma/jdbc/type/TimestampType.java index 977393214..bf28f450c 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/type/TimestampType.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/type/TimestampType.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.type; import java.sql.*; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/type/UtilDateType.java b/doma-core/src/main/java/org/seasar/doma/jdbc/type/UtilDateType.java index f1beb0105..d8ab4b9ad 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/type/UtilDateType.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/type/UtilDateType.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.type; import java.sql.CallableStatement; diff --git a/doma-core/src/main/java/org/seasar/doma/jdbc/type/package-info.java b/doma-core/src/main/java/org/seasar/doma/jdbc/type/package-info.java index 0fbc7a169..69f6da501 100644 --- a/doma-core/src/main/java/org/seasar/doma/jdbc/type/package-info.java +++ b/doma-core/src/main/java/org/seasar/doma/jdbc/type/package-info.java @@ -1,2 +1,17 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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. + */ /** Provides JDBC types. */ package org.seasar.doma.jdbc.type; diff --git a/doma-core/src/main/java/org/seasar/doma/message/Message.java b/doma-core/src/main/java/org/seasar/doma/message/Message.java index 8aab2bcbb..a8f728e14 100644 --- a/doma-core/src/main/java/org/seasar/doma/message/Message.java +++ b/doma-core/src/main/java/org/seasar/doma/message/Message.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.message; import java.io.PrintWriter; diff --git a/doma-core/src/main/java/org/seasar/doma/message/MessageResource.java b/doma-core/src/main/java/org/seasar/doma/message/MessageResource.java index 2bf4377e4..388a713c1 100644 --- a/doma-core/src/main/java/org/seasar/doma/message/MessageResource.java +++ b/doma-core/src/main/java/org/seasar/doma/message/MessageResource.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.message; /** diff --git a/doma-core/src/main/java/org/seasar/doma/message/package-info.java b/doma-core/src/main/java/org/seasar/doma/message/package-info.java index c44ea0917..55de4ce89 100644 --- a/doma-core/src/main/java/org/seasar/doma/message/package-info.java +++ b/doma-core/src/main/java/org/seasar/doma/message/package-info.java @@ -1,2 +1,17 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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. + */ /** Provides messages. */ package org.seasar.doma.message; diff --git a/doma-core/src/main/java/org/seasar/doma/package-info.java b/doma-core/src/main/java/org/seasar/doma/package-info.java index b73694151..5987c4095 100644 --- a/doma-core/src/main/java/org/seasar/doma/package-info.java +++ b/doma-core/src/main/java/org/seasar/doma/package-info.java @@ -1,2 +1,17 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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. + */ /** Provides annotations and exceptions. */ package org.seasar.doma; diff --git a/doma-core/src/main/java/org/seasar/doma/util/ThrowingSupplier.java b/doma-core/src/main/java/org/seasar/doma/util/ThrowingSupplier.java index 9b6725441..5ed522c33 100644 --- a/doma-core/src/main/java/org/seasar/doma/util/ThrowingSupplier.java +++ b/doma-core/src/main/java/org/seasar/doma/util/ThrowingSupplier.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.util; /** diff --git a/doma-core/src/main/java/org/seasar/doma/wrapper/AbstractWrapper.java b/doma-core/src/main/java/org/seasar/doma/wrapper/AbstractWrapper.java index ec8d1c67d..f09857edb 100644 --- a/doma-core/src/main/java/org/seasar/doma/wrapper/AbstractWrapper.java +++ b/doma-core/src/main/java/org/seasar/doma/wrapper/AbstractWrapper.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.wrapper; /** diff --git a/doma-core/src/main/java/org/seasar/doma/wrapper/ArrayWrapper.java b/doma-core/src/main/java/org/seasar/doma/wrapper/ArrayWrapper.java index 1ced6f5a5..301b8cb71 100644 --- a/doma-core/src/main/java/org/seasar/doma/wrapper/ArrayWrapper.java +++ b/doma-core/src/main/java/org/seasar/doma/wrapper/ArrayWrapper.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.wrapper; import java.sql.Array; diff --git a/doma-core/src/main/java/org/seasar/doma/wrapper/BigDecimalWrapper.java b/doma-core/src/main/java/org/seasar/doma/wrapper/BigDecimalWrapper.java index 0be2ed63b..37b8bebc7 100644 --- a/doma-core/src/main/java/org/seasar/doma/wrapper/BigDecimalWrapper.java +++ b/doma-core/src/main/java/org/seasar/doma/wrapper/BigDecimalWrapper.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.wrapper; import java.math.BigDecimal; diff --git a/doma-core/src/main/java/org/seasar/doma/wrapper/BigIntegerWrapper.java b/doma-core/src/main/java/org/seasar/doma/wrapper/BigIntegerWrapper.java index c478d40b7..e29eff2f6 100644 --- a/doma-core/src/main/java/org/seasar/doma/wrapper/BigIntegerWrapper.java +++ b/doma-core/src/main/java/org/seasar/doma/wrapper/BigIntegerWrapper.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.wrapper; import java.math.BigDecimal; diff --git a/doma-core/src/main/java/org/seasar/doma/wrapper/BlobWrapper.java b/doma-core/src/main/java/org/seasar/doma/wrapper/BlobWrapper.java index b6ecc3a99..0dc3fbdc5 100644 --- a/doma-core/src/main/java/org/seasar/doma/wrapper/BlobWrapper.java +++ b/doma-core/src/main/java/org/seasar/doma/wrapper/BlobWrapper.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.wrapper; import java.sql.Blob; diff --git a/doma-core/src/main/java/org/seasar/doma/wrapper/BooleanWrapper.java b/doma-core/src/main/java/org/seasar/doma/wrapper/BooleanWrapper.java index f62ebac71..c6b30daaa 100644 --- a/doma-core/src/main/java/org/seasar/doma/wrapper/BooleanWrapper.java +++ b/doma-core/src/main/java/org/seasar/doma/wrapper/BooleanWrapper.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.wrapper; import org.seasar.doma.DomaNullPointerException; diff --git a/doma-core/src/main/java/org/seasar/doma/wrapper/ByteWrapper.java b/doma-core/src/main/java/org/seasar/doma/wrapper/ByteWrapper.java index b43247f7a..62d339411 100644 --- a/doma-core/src/main/java/org/seasar/doma/wrapper/ByteWrapper.java +++ b/doma-core/src/main/java/org/seasar/doma/wrapper/ByteWrapper.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.wrapper; import org.seasar.doma.DomaNullPointerException; diff --git a/doma-core/src/main/java/org/seasar/doma/wrapper/BytesWrapper.java b/doma-core/src/main/java/org/seasar/doma/wrapper/BytesWrapper.java index 4ca2b5fff..c26311a10 100644 --- a/doma-core/src/main/java/org/seasar/doma/wrapper/BytesWrapper.java +++ b/doma-core/src/main/java/org/seasar/doma/wrapper/BytesWrapper.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.wrapper; import java.util.Arrays; diff --git a/doma-core/src/main/java/org/seasar/doma/wrapper/ClobWrapper.java b/doma-core/src/main/java/org/seasar/doma/wrapper/ClobWrapper.java index 50bb6b877..d88f2f08a 100644 --- a/doma-core/src/main/java/org/seasar/doma/wrapper/ClobWrapper.java +++ b/doma-core/src/main/java/org/seasar/doma/wrapper/ClobWrapper.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.wrapper; import java.sql.Clob; diff --git a/doma-core/src/main/java/org/seasar/doma/wrapper/DateWrapper.java b/doma-core/src/main/java/org/seasar/doma/wrapper/DateWrapper.java index 675e24464..99ed6187c 100644 --- a/doma-core/src/main/java/org/seasar/doma/wrapper/DateWrapper.java +++ b/doma-core/src/main/java/org/seasar/doma/wrapper/DateWrapper.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.wrapper; import java.sql.Date; diff --git a/doma-core/src/main/java/org/seasar/doma/wrapper/DoubleWrapper.java b/doma-core/src/main/java/org/seasar/doma/wrapper/DoubleWrapper.java index 9e2e6293b..27f5001a8 100644 --- a/doma-core/src/main/java/org/seasar/doma/wrapper/DoubleWrapper.java +++ b/doma-core/src/main/java/org/seasar/doma/wrapper/DoubleWrapper.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.wrapper; import org.seasar.doma.DomaNullPointerException; diff --git a/doma-core/src/main/java/org/seasar/doma/wrapper/EnumWrapper.java b/doma-core/src/main/java/org/seasar/doma/wrapper/EnumWrapper.java index c555a0100..a7bf494b1 100644 --- a/doma-core/src/main/java/org/seasar/doma/wrapper/EnumWrapper.java +++ b/doma-core/src/main/java/org/seasar/doma/wrapper/EnumWrapper.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.wrapper; import org.seasar.doma.DomaNullPointerException; diff --git a/doma-core/src/main/java/org/seasar/doma/wrapper/FloatWrapper.java b/doma-core/src/main/java/org/seasar/doma/wrapper/FloatWrapper.java index 23904964d..74e038103 100644 --- a/doma-core/src/main/java/org/seasar/doma/wrapper/FloatWrapper.java +++ b/doma-core/src/main/java/org/seasar/doma/wrapper/FloatWrapper.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.wrapper; import org.seasar.doma.DomaNullPointerException; diff --git a/doma-core/src/main/java/org/seasar/doma/wrapper/IntegerWrapper.java b/doma-core/src/main/java/org/seasar/doma/wrapper/IntegerWrapper.java index e6540384e..163b37d78 100644 --- a/doma-core/src/main/java/org/seasar/doma/wrapper/IntegerWrapper.java +++ b/doma-core/src/main/java/org/seasar/doma/wrapper/IntegerWrapper.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.wrapper; import org.seasar.doma.DomaNullPointerException; diff --git a/doma-core/src/main/java/org/seasar/doma/wrapper/LocalDateTimeWrapper.java b/doma-core/src/main/java/org/seasar/doma/wrapper/LocalDateTimeWrapper.java index 883fa8ceb..47d12e406 100644 --- a/doma-core/src/main/java/org/seasar/doma/wrapper/LocalDateTimeWrapper.java +++ b/doma-core/src/main/java/org/seasar/doma/wrapper/LocalDateTimeWrapper.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.wrapper; import java.time.LocalDateTime; diff --git a/doma-core/src/main/java/org/seasar/doma/wrapper/LocalDateWrapper.java b/doma-core/src/main/java/org/seasar/doma/wrapper/LocalDateWrapper.java index 7df642e8a..40fcccef4 100644 --- a/doma-core/src/main/java/org/seasar/doma/wrapper/LocalDateWrapper.java +++ b/doma-core/src/main/java/org/seasar/doma/wrapper/LocalDateWrapper.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.wrapper; import java.time.LocalDate; diff --git a/doma-core/src/main/java/org/seasar/doma/wrapper/LocalTimeWrapper.java b/doma-core/src/main/java/org/seasar/doma/wrapper/LocalTimeWrapper.java index cdd839848..2becec144 100644 --- a/doma-core/src/main/java/org/seasar/doma/wrapper/LocalTimeWrapper.java +++ b/doma-core/src/main/java/org/seasar/doma/wrapper/LocalTimeWrapper.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.wrapper; import java.time.LocalTime; diff --git a/doma-core/src/main/java/org/seasar/doma/wrapper/LongWrapper.java b/doma-core/src/main/java/org/seasar/doma/wrapper/LongWrapper.java index 5e36c050e..0035aaf59 100644 --- a/doma-core/src/main/java/org/seasar/doma/wrapper/LongWrapper.java +++ b/doma-core/src/main/java/org/seasar/doma/wrapper/LongWrapper.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.wrapper; import org.seasar.doma.DomaNullPointerException; diff --git a/doma-core/src/main/java/org/seasar/doma/wrapper/NClobWrapper.java b/doma-core/src/main/java/org/seasar/doma/wrapper/NClobWrapper.java index 4b48bb4bc..bae1141d7 100644 --- a/doma-core/src/main/java/org/seasar/doma/wrapper/NClobWrapper.java +++ b/doma-core/src/main/java/org/seasar/doma/wrapper/NClobWrapper.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.wrapper; import java.sql.NClob; diff --git a/doma-core/src/main/java/org/seasar/doma/wrapper/NumberWrapper.java b/doma-core/src/main/java/org/seasar/doma/wrapper/NumberWrapper.java index 32849b09c..341b4eb69 100644 --- a/doma-core/src/main/java/org/seasar/doma/wrapper/NumberWrapper.java +++ b/doma-core/src/main/java/org/seasar/doma/wrapper/NumberWrapper.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.wrapper; /** diff --git a/doma-core/src/main/java/org/seasar/doma/wrapper/NumberWrapperVisitor.java b/doma-core/src/main/java/org/seasar/doma/wrapper/NumberWrapperVisitor.java index 684db1cbe..4e3fd4631 100644 --- a/doma-core/src/main/java/org/seasar/doma/wrapper/NumberWrapperVisitor.java +++ b/doma-core/src/main/java/org/seasar/doma/wrapper/NumberWrapperVisitor.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.wrapper; /** diff --git a/doma-core/src/main/java/org/seasar/doma/wrapper/ObjectWrapper.java b/doma-core/src/main/java/org/seasar/doma/wrapper/ObjectWrapper.java index 9d59d8337..4cf00be1a 100644 --- a/doma-core/src/main/java/org/seasar/doma/wrapper/ObjectWrapper.java +++ b/doma-core/src/main/java/org/seasar/doma/wrapper/ObjectWrapper.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.wrapper; import org.seasar.doma.DomaNullPointerException; diff --git a/doma-core/src/main/java/org/seasar/doma/wrapper/PrimitiveBooleanWrapper.java b/doma-core/src/main/java/org/seasar/doma/wrapper/PrimitiveBooleanWrapper.java index 443086abd..3ee1dba55 100644 --- a/doma-core/src/main/java/org/seasar/doma/wrapper/PrimitiveBooleanWrapper.java +++ b/doma-core/src/main/java/org/seasar/doma/wrapper/PrimitiveBooleanWrapper.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.wrapper; import org.seasar.doma.DomaNullPointerException; diff --git a/doma-core/src/main/java/org/seasar/doma/wrapper/PrimitiveByteWrapper.java b/doma-core/src/main/java/org/seasar/doma/wrapper/PrimitiveByteWrapper.java index dd521a43d..ca3141ad8 100644 --- a/doma-core/src/main/java/org/seasar/doma/wrapper/PrimitiveByteWrapper.java +++ b/doma-core/src/main/java/org/seasar/doma/wrapper/PrimitiveByteWrapper.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.wrapper; import org.seasar.doma.DomaNullPointerException; diff --git a/doma-core/src/main/java/org/seasar/doma/wrapper/PrimitiveDoubleWrapper.java b/doma-core/src/main/java/org/seasar/doma/wrapper/PrimitiveDoubleWrapper.java index 5b541a4e7..5fa55e8e8 100644 --- a/doma-core/src/main/java/org/seasar/doma/wrapper/PrimitiveDoubleWrapper.java +++ b/doma-core/src/main/java/org/seasar/doma/wrapper/PrimitiveDoubleWrapper.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.wrapper; import org.seasar.doma.DomaNullPointerException; diff --git a/doma-core/src/main/java/org/seasar/doma/wrapper/PrimitiveFloatWrapper.java b/doma-core/src/main/java/org/seasar/doma/wrapper/PrimitiveFloatWrapper.java index 45ab7924e..153489298 100644 --- a/doma-core/src/main/java/org/seasar/doma/wrapper/PrimitiveFloatWrapper.java +++ b/doma-core/src/main/java/org/seasar/doma/wrapper/PrimitiveFloatWrapper.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.wrapper; import org.seasar.doma.DomaNullPointerException; diff --git a/doma-core/src/main/java/org/seasar/doma/wrapper/PrimitiveIntWrapper.java b/doma-core/src/main/java/org/seasar/doma/wrapper/PrimitiveIntWrapper.java index eb0e6f18c..97b41d978 100644 --- a/doma-core/src/main/java/org/seasar/doma/wrapper/PrimitiveIntWrapper.java +++ b/doma-core/src/main/java/org/seasar/doma/wrapper/PrimitiveIntWrapper.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.wrapper; import org.seasar.doma.DomaNullPointerException; diff --git a/doma-core/src/main/java/org/seasar/doma/wrapper/PrimitiveLongWrapper.java b/doma-core/src/main/java/org/seasar/doma/wrapper/PrimitiveLongWrapper.java index 528dc4143..752bd48f3 100644 --- a/doma-core/src/main/java/org/seasar/doma/wrapper/PrimitiveLongWrapper.java +++ b/doma-core/src/main/java/org/seasar/doma/wrapper/PrimitiveLongWrapper.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.wrapper; import org.seasar.doma.DomaNullPointerException; diff --git a/doma-core/src/main/java/org/seasar/doma/wrapper/PrimitiveShortWrapper.java b/doma-core/src/main/java/org/seasar/doma/wrapper/PrimitiveShortWrapper.java index 856b412d9..22146519c 100644 --- a/doma-core/src/main/java/org/seasar/doma/wrapper/PrimitiveShortWrapper.java +++ b/doma-core/src/main/java/org/seasar/doma/wrapper/PrimitiveShortWrapper.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.wrapper; import org.seasar.doma.DomaNullPointerException; diff --git a/doma-core/src/main/java/org/seasar/doma/wrapper/SQLXMLWrapper.java b/doma-core/src/main/java/org/seasar/doma/wrapper/SQLXMLWrapper.java index bd2234edb..7e6277bd4 100644 --- a/doma-core/src/main/java/org/seasar/doma/wrapper/SQLXMLWrapper.java +++ b/doma-core/src/main/java/org/seasar/doma/wrapper/SQLXMLWrapper.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.wrapper; import java.sql.SQLXML; diff --git a/doma-core/src/main/java/org/seasar/doma/wrapper/ShortWrapper.java b/doma-core/src/main/java/org/seasar/doma/wrapper/ShortWrapper.java index 17ec170cf..7112f065f 100644 --- a/doma-core/src/main/java/org/seasar/doma/wrapper/ShortWrapper.java +++ b/doma-core/src/main/java/org/seasar/doma/wrapper/ShortWrapper.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.wrapper; import org.seasar.doma.DomaNullPointerException; diff --git a/doma-core/src/main/java/org/seasar/doma/wrapper/StringWrapper.java b/doma-core/src/main/java/org/seasar/doma/wrapper/StringWrapper.java index 9ed6625a4..bc06ffa7c 100644 --- a/doma-core/src/main/java/org/seasar/doma/wrapper/StringWrapper.java +++ b/doma-core/src/main/java/org/seasar/doma/wrapper/StringWrapper.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.wrapper; import org.seasar.doma.DomaNullPointerException; diff --git a/doma-core/src/main/java/org/seasar/doma/wrapper/TimeWrapper.java b/doma-core/src/main/java/org/seasar/doma/wrapper/TimeWrapper.java index d6741dfaa..0f116b2d6 100644 --- a/doma-core/src/main/java/org/seasar/doma/wrapper/TimeWrapper.java +++ b/doma-core/src/main/java/org/seasar/doma/wrapper/TimeWrapper.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.wrapper; import java.sql.Time; diff --git a/doma-core/src/main/java/org/seasar/doma/wrapper/TimestampWrapper.java b/doma-core/src/main/java/org/seasar/doma/wrapper/TimestampWrapper.java index 1a7cbf6cb..312f25de3 100644 --- a/doma-core/src/main/java/org/seasar/doma/wrapper/TimestampWrapper.java +++ b/doma-core/src/main/java/org/seasar/doma/wrapper/TimestampWrapper.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.wrapper; import java.sql.Timestamp; diff --git a/doma-core/src/main/java/org/seasar/doma/wrapper/UtilDateWrapper.java b/doma-core/src/main/java/org/seasar/doma/wrapper/UtilDateWrapper.java index 4ca5445c2..82a0f9388 100644 --- a/doma-core/src/main/java/org/seasar/doma/wrapper/UtilDateWrapper.java +++ b/doma-core/src/main/java/org/seasar/doma/wrapper/UtilDateWrapper.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.wrapper; import java.util.Date; diff --git a/doma-core/src/main/java/org/seasar/doma/wrapper/Wrapper.java b/doma-core/src/main/java/org/seasar/doma/wrapper/Wrapper.java index c34ee6550..e1cd350c4 100644 --- a/doma-core/src/main/java/org/seasar/doma/wrapper/Wrapper.java +++ b/doma-core/src/main/java/org/seasar/doma/wrapper/Wrapper.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.wrapper; import org.seasar.doma.DomaNullPointerException; diff --git a/doma-core/src/main/java/org/seasar/doma/wrapper/WrapperVisitor.java b/doma-core/src/main/java/org/seasar/doma/wrapper/WrapperVisitor.java index 5a314ff95..becfb17fa 100644 --- a/doma-core/src/main/java/org/seasar/doma/wrapper/WrapperVisitor.java +++ b/doma-core/src/main/java/org/seasar/doma/wrapper/WrapperVisitor.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.wrapper; /** diff --git a/doma-core/src/main/java/org/seasar/doma/wrapper/package-info.java b/doma-core/src/main/java/org/seasar/doma/wrapper/package-info.java index 99cca2862..b9ff4be6a 100644 --- a/doma-core/src/main/java/org/seasar/doma/wrapper/package-info.java +++ b/doma-core/src/main/java/org/seasar/doma/wrapper/package-info.java @@ -1,2 +1,17 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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. + */ /** Provides wrapper classes and visitor classes for them. */ package org.seasar.doma.wrapper; diff --git a/doma-core/src/test/java/__/java/lang/_String__ARRAY__.java b/doma-core/src/test/java/__/java/lang/_String__ARRAY__.java index 6a22b5848..522695dd2 100644 --- a/doma-core/src/test/java/__/java/lang/_String__ARRAY__.java +++ b/doma-core/src/test/java/__/java/lang/_String__ARRAY__.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 __.java.lang; import org.seasar.doma.wrapper.ObjectWrapper; diff --git a/doma-core/src/test/java/__/org/seasar/doma/jdbc/domain/_Job.java b/doma-core/src/test/java/__/org/seasar/doma/jdbc/domain/_Job.java index bd9d71367..d4d747939 100644 --- a/doma-core/src/test/java/__/org/seasar/doma/jdbc/domain/_Job.java +++ b/doma-core/src/test/java/__/org/seasar/doma/jdbc/domain/_Job.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 __.org.seasar.doma.jdbc.domain; import org.seasar.doma.jdbc.domain.Job; diff --git a/doma-core/src/test/java/example/domain/InternationalPhoneNumber.java b/doma-core/src/test/java/example/domain/InternationalPhoneNumber.java index 9ef6dd31e..30e439da7 100644 --- a/doma-core/src/test/java/example/domain/InternationalPhoneNumber.java +++ b/doma-core/src/test/java/example/domain/InternationalPhoneNumber.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 example.domain; import org.seasar.doma.Domain; diff --git a/doma-core/src/test/java/example/domain/JobType.java b/doma-core/src/test/java/example/domain/JobType.java index 749d193aa..62eb07292 100644 --- a/doma-core/src/test/java/example/domain/JobType.java +++ b/doma-core/src/test/java/example/domain/JobType.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 example.domain; import org.seasar.doma.Domain; diff --git a/doma-core/src/test/java/example/domain/PhoneNumber.java b/doma-core/src/test/java/example/domain/PhoneNumber.java index ab23247a5..d08b68dbf 100644 --- a/doma-core/src/test/java/example/domain/PhoneNumber.java +++ b/doma-core/src/test/java/example/domain/PhoneNumber.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 example.domain; import org.seasar.doma.Domain; diff --git a/doma-core/src/test/java/example/domain/_InternationalPhoneNumber.java b/doma-core/src/test/java/example/domain/_InternationalPhoneNumber.java index 1fbbf0535..975c74c6c 100644 --- a/doma-core/src/test/java/example/domain/_InternationalPhoneNumber.java +++ b/doma-core/src/test/java/example/domain/_InternationalPhoneNumber.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 example.domain; import org.seasar.doma.jdbc.domain.AbstractDomainType; diff --git a/doma-core/src/test/java/example/domain/_JobType.java b/doma-core/src/test/java/example/domain/_JobType.java index 4935b3e6e..f7654444e 100644 --- a/doma-core/src/test/java/example/domain/_JobType.java +++ b/doma-core/src/test/java/example/domain/_JobType.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 example.domain; import org.seasar.doma.jdbc.domain.AbstractDomainType; diff --git a/doma-core/src/test/java/example/domain/_PhoneNumber.java b/doma-core/src/test/java/example/domain/_PhoneNumber.java index 1eb102a15..7b973113d 100644 --- a/doma-core/src/test/java/example/domain/_PhoneNumber.java +++ b/doma-core/src/test/java/example/domain/_PhoneNumber.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 example.domain; import org.seasar.doma.jdbc.domain.AbstractDomainType; diff --git a/doma-core/src/test/java/example/entity/AutoIncrement.java b/doma-core/src/test/java/example/entity/AutoIncrement.java index 2a535e39b..878fb6819 100644 --- a/doma-core/src/test/java/example/entity/AutoIncrement.java +++ b/doma-core/src/test/java/example/entity/AutoIncrement.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 example.entity; import org.seasar.doma.Entity; diff --git a/doma-core/src/test/java/example/entity/Dept.java b/doma-core/src/test/java/example/entity/Dept.java index 0b51d9427..b5a45de91 100644 --- a/doma-core/src/test/java/example/entity/Dept.java +++ b/doma-core/src/test/java/example/entity/Dept.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 example.entity; import java.io.Serial; diff --git a/doma-core/src/test/java/example/entity/Emp.java b/doma-core/src/test/java/example/entity/Emp.java index aac309668..e402deffa 100644 --- a/doma-core/src/test/java/example/entity/Emp.java +++ b/doma-core/src/test/java/example/entity/Emp.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 example.entity; import java.io.Serial; diff --git a/doma-core/src/test/java/example/entity/IdGeneratedEmp.java b/doma-core/src/test/java/example/entity/IdGeneratedEmp.java index 250d1aa0c..5f2c5aa3f 100644 --- a/doma-core/src/test/java/example/entity/IdGeneratedEmp.java +++ b/doma-core/src/test/java/example/entity/IdGeneratedEmp.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 example.entity; import java.io.Serial; diff --git a/doma-core/src/test/java/example/entity/ImmutableEmp.java b/doma-core/src/test/java/example/entity/ImmutableEmp.java index ac89fe98e..836d0dfbf 100644 --- a/doma-core/src/test/java/example/entity/ImmutableEmp.java +++ b/doma-core/src/test/java/example/entity/ImmutableEmp.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 example.entity; import java.io.Serial; diff --git a/doma-core/src/test/java/example/entity/Salesman.java b/doma-core/src/test/java/example/entity/Salesman.java index a4799e411..0f49fc46e 100644 --- a/doma-core/src/test/java/example/entity/Salesman.java +++ b/doma-core/src/test/java/example/entity/Salesman.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 example.entity; import java.math.BigDecimal; diff --git a/doma-core/src/test/java/example/entity/_AutoIncrement.java b/doma-core/src/test/java/example/entity/_AutoIncrement.java index e8c4aee96..9beaa23d1 100644 --- a/doma-core/src/test/java/example/entity/_AutoIncrement.java +++ b/doma-core/src/test/java/example/entity/_AutoIncrement.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 example.entity; import java.util.ArrayList; diff --git a/doma-core/src/test/java/example/entity/_Dept.java b/doma-core/src/test/java/example/entity/_Dept.java index fa3d7a22c..eae8ab7d8 100644 --- a/doma-core/src/test/java/example/entity/_Dept.java +++ b/doma-core/src/test/java/example/entity/_Dept.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 example.entity; import java.util.ArrayList; diff --git a/doma-core/src/test/java/example/entity/_Emp.java b/doma-core/src/test/java/example/entity/_Emp.java index c02b411d7..27d9b4dd3 100644 --- a/doma-core/src/test/java/example/entity/_Emp.java +++ b/doma-core/src/test/java/example/entity/_Emp.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 example.entity; import java.math.BigDecimal; diff --git a/doma-core/src/test/java/example/entity/_IdGeneratedEmp.java b/doma-core/src/test/java/example/entity/_IdGeneratedEmp.java index 525a64efd..60f866f98 100644 --- a/doma-core/src/test/java/example/entity/_IdGeneratedEmp.java +++ b/doma-core/src/test/java/example/entity/_IdGeneratedEmp.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 example.entity; import java.math.BigDecimal; diff --git a/doma-core/src/test/java/example/entity/_ImmutableEmp.java b/doma-core/src/test/java/example/entity/_ImmutableEmp.java index 57ca6a686..f5a37aede 100644 --- a/doma-core/src/test/java/example/entity/_ImmutableEmp.java +++ b/doma-core/src/test/java/example/entity/_ImmutableEmp.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 example.entity; import java.math.BigDecimal; diff --git a/doma-core/src/test/java/example/entity/_Salesman.java b/doma-core/src/test/java/example/entity/_Salesman.java index 6b15abab4..4697d2632 100644 --- a/doma-core/src/test/java/example/entity/_Salesman.java +++ b/doma-core/src/test/java/example/entity/_Salesman.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 example.entity; import java.math.BigDecimal; diff --git a/doma-core/src/test/java/org/seasar/doma/DomaIllegalArgumentExceptionTest.java b/doma-core/src/test/java/org/seasar/doma/DomaIllegalArgumentExceptionTest.java index 67ec75b7a..42e20bc5e 100644 --- a/doma-core/src/test/java/org/seasar/doma/DomaIllegalArgumentExceptionTest.java +++ b/doma-core/src/test/java/org/seasar/doma/DomaIllegalArgumentExceptionTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/DomaNullPointerExceptionTest.java b/doma-core/src/test/java/org/seasar/doma/DomaNullPointerExceptionTest.java index 618dcde9d..3b0acfb44 100644 --- a/doma-core/src/test/java/org/seasar/doma/DomaNullPointerExceptionTest.java +++ b/doma-core/src/test/java/org/seasar/doma/DomaNullPointerExceptionTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/internal/ArtifactTest.java b/doma-core/src/test/java/org/seasar/doma/internal/ArtifactTest.java index b353a1e8a..f057008b4 100644 --- a/doma-core/src/test/java/org/seasar/doma/internal/ArtifactTest.java +++ b/doma-core/src/test/java/org/seasar/doma/internal/ArtifactTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/internal/ClassNamesTest.java b/doma-core/src/test/java/org/seasar/doma/internal/ClassNamesTest.java index c93eb6a08..58a268584 100644 --- a/doma-core/src/test/java/org/seasar/doma/internal/ClassNamesTest.java +++ b/doma-core/src/test/java/org/seasar/doma/internal/ClassNamesTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/internal/expr/ExpressionEvaluatorTest.java b/doma-core/src/test/java/org/seasar/doma/internal/expr/ExpressionEvaluatorTest.java index 0a0b9b6cf..ae112b1e3 100644 --- a/doma-core/src/test/java/org/seasar/doma/internal/expr/ExpressionEvaluatorTest.java +++ b/doma-core/src/test/java/org/seasar/doma/internal/expr/ExpressionEvaluatorTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.expr; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/internal/expr/ExpressionExceptionTest.java b/doma-core/src/test/java/org/seasar/doma/internal/expr/ExpressionExceptionTest.java index ede401afd..77f47af89 100644 --- a/doma-core/src/test/java/org/seasar/doma/internal/expr/ExpressionExceptionTest.java +++ b/doma-core/src/test/java/org/seasar/doma/internal/expr/ExpressionExceptionTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.expr; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/internal/expr/ExpressionParserTest.java b/doma-core/src/test/java/org/seasar/doma/internal/expr/ExpressionParserTest.java index 845f7ebb2..85565dd55 100644 --- a/doma-core/src/test/java/org/seasar/doma/internal/expr/ExpressionParserTest.java +++ b/doma-core/src/test/java/org/seasar/doma/internal/expr/ExpressionParserTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.expr; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/internal/expr/ExpressionTokenizerTest.java b/doma-core/src/test/java/org/seasar/doma/internal/expr/ExpressionTokenizerTest.java index a991823dc..6d1258c76 100644 --- a/doma-core/src/test/java/org/seasar/doma/internal/expr/ExpressionTokenizerTest.java +++ b/doma-core/src/test/java/org/seasar/doma/internal/expr/ExpressionTokenizerTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.expr; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/internal/expr/Person.java b/doma-core/src/test/java/org/seasar/doma/internal/expr/Person.java index 1aeb6692b..92fafeee0 100644 --- a/doma-core/src/test/java/org/seasar/doma/internal/expr/Person.java +++ b/doma-core/src/test/java/org/seasar/doma/internal/expr/Person.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.expr; import java.util.Optional; diff --git a/doma-core/src/test/java/org/seasar/doma/internal/expr/node/AndOperatorNodeTest.java b/doma-core/src/test/java/org/seasar/doma/internal/expr/node/AndOperatorNodeTest.java index bc191db1b..096d9c7c7 100644 --- a/doma-core/src/test/java/org/seasar/doma/internal/expr/node/AndOperatorNodeTest.java +++ b/doma-core/src/test/java/org/seasar/doma/internal/expr/node/AndOperatorNodeTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.expr.node; import static org.junit.jupiter.api.Assertions.assertFalse; diff --git a/doma-core/src/test/java/org/seasar/doma/internal/expr/node/MethodOperatorNodeTest.java b/doma-core/src/test/java/org/seasar/doma/internal/expr/node/MethodOperatorNodeTest.java index 96ad16b3a..3b190049c 100644 --- a/doma-core/src/test/java/org/seasar/doma/internal/expr/node/MethodOperatorNodeTest.java +++ b/doma-core/src/test/java/org/seasar/doma/internal/expr/node/MethodOperatorNodeTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.expr.node; import static org.junit.jupiter.api.Assertions.assertTrue; diff --git a/doma-core/src/test/java/org/seasar/doma/internal/expr/node/NotOperatorNodeTest.java b/doma-core/src/test/java/org/seasar/doma/internal/expr/node/NotOperatorNodeTest.java index 826cc27ff..f94f6a974 100644 --- a/doma-core/src/test/java/org/seasar/doma/internal/expr/node/NotOperatorNodeTest.java +++ b/doma-core/src/test/java/org/seasar/doma/internal/expr/node/NotOperatorNodeTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.expr.node; import static org.junit.jupiter.api.Assertions.assertFalse; diff --git a/doma-core/src/test/java/org/seasar/doma/internal/expr/node/OrOperatorNodeTest.java b/doma-core/src/test/java/org/seasar/doma/internal/expr/node/OrOperatorNodeTest.java index 7cb51d811..5a5efec1e 100644 --- a/doma-core/src/test/java/org/seasar/doma/internal/expr/node/OrOperatorNodeTest.java +++ b/doma-core/src/test/java/org/seasar/doma/internal/expr/node/OrOperatorNodeTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.expr.node; import static org.junit.jupiter.api.Assertions.assertFalse; diff --git a/doma-core/src/test/java/org/seasar/doma/internal/jdbc/command/BasicResultListHandlerTest.java b/doma-core/src/test/java/org/seasar/doma/internal/jdbc/command/BasicResultListHandlerTest.java index b5459f765..3d60d1de0 100644 --- a/doma-core/src/test/java/org/seasar/doma/internal/jdbc/command/BasicResultListHandlerTest.java +++ b/doma-core/src/test/java/org/seasar/doma/internal/jdbc/command/BasicResultListHandlerTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.command; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/internal/jdbc/command/BasicSingleResultHandlerTest.java b/doma-core/src/test/java/org/seasar/doma/internal/jdbc/command/BasicSingleResultHandlerTest.java index cf3b51730..b270c8433 100644 --- a/doma-core/src/test/java/org/seasar/doma/internal/jdbc/command/BasicSingleResultHandlerTest.java +++ b/doma-core/src/test/java/org/seasar/doma/internal/jdbc/command/BasicSingleResultHandlerTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.command; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/internal/jdbc/command/CallableSqlParameterBinderTest.java b/doma-core/src/test/java/org/seasar/doma/internal/jdbc/command/CallableSqlParameterBinderTest.java index 5a280c8ec..572e3c7ec 100644 --- a/doma-core/src/test/java/org/seasar/doma/internal/jdbc/command/CallableSqlParameterBinderTest.java +++ b/doma-core/src/test/java/org/seasar/doma/internal/jdbc/command/CallableSqlParameterBinderTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.command; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/internal/jdbc/command/DomainResultListHandlerTest.java b/doma-core/src/test/java/org/seasar/doma/internal/jdbc/command/DomainResultListHandlerTest.java index 3d9066906..5d8e1ab99 100644 --- a/doma-core/src/test/java/org/seasar/doma/internal/jdbc/command/DomainResultListHandlerTest.java +++ b/doma-core/src/test/java/org/seasar/doma/internal/jdbc/command/DomainResultListHandlerTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.command; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/internal/jdbc/command/DomainSingleResultHandlerTest.java b/doma-core/src/test/java/org/seasar/doma/internal/jdbc/command/DomainSingleResultHandlerTest.java index 4b42b4d9f..8b11183cd 100644 --- a/doma-core/src/test/java/org/seasar/doma/internal/jdbc/command/DomainSingleResultHandlerTest.java +++ b/doma-core/src/test/java/org/seasar/doma/internal/jdbc/command/DomainSingleResultHandlerTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.command; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/internal/jdbc/command/EntityIterationHandlerTest.java b/doma-core/src/test/java/org/seasar/doma/internal/jdbc/command/EntityIterationHandlerTest.java index 0c299a18f..fa382a00b 100644 --- a/doma-core/src/test/java/org/seasar/doma/internal/jdbc/command/EntityIterationHandlerTest.java +++ b/doma-core/src/test/java/org/seasar/doma/internal/jdbc/command/EntityIterationHandlerTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.command; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/internal/jdbc/command/EntityProviderTest.java b/doma-core/src/test/java/org/seasar/doma/internal/jdbc/command/EntityProviderTest.java index 4c88d7e49..01f0f7b3f 100644 --- a/doma-core/src/test/java/org/seasar/doma/internal/jdbc/command/EntityProviderTest.java +++ b/doma-core/src/test/java/org/seasar/doma/internal/jdbc/command/EntityProviderTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.command; import static org.junit.jupiter.api.Assertions.fail; diff --git a/doma-core/src/test/java/org/seasar/doma/internal/jdbc/command/EntityResultListHandlerTest.java b/doma-core/src/test/java/org/seasar/doma/internal/jdbc/command/EntityResultListHandlerTest.java index cb9b8938c..12d44886c 100644 --- a/doma-core/src/test/java/org/seasar/doma/internal/jdbc/command/EntityResultListHandlerTest.java +++ b/doma-core/src/test/java/org/seasar/doma/internal/jdbc/command/EntityResultListHandlerTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.command; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/internal/jdbc/command/EntitySingleResultHandlerTest.java b/doma-core/src/test/java/org/seasar/doma/internal/jdbc/command/EntitySingleResultHandlerTest.java index f464f5e74..e9d642ce5 100644 --- a/doma-core/src/test/java/org/seasar/doma/internal/jdbc/command/EntitySingleResultHandlerTest.java +++ b/doma-core/src/test/java/org/seasar/doma/internal/jdbc/command/EntitySingleResultHandlerTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.command; import static org.junit.jupiter.api.Assertions.fail; diff --git a/doma-core/src/test/java/org/seasar/doma/internal/jdbc/command/PreparedSqlParameterBinderTest.java b/doma-core/src/test/java/org/seasar/doma/internal/jdbc/command/PreparedSqlParameterBinderTest.java index cc7768bd5..f4ddd2001 100644 --- a/doma-core/src/test/java/org/seasar/doma/internal/jdbc/command/PreparedSqlParameterBinderTest.java +++ b/doma-core/src/test/java/org/seasar/doma/internal/jdbc/command/PreparedSqlParameterBinderTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.command; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/internal/jdbc/command/ScalarProviderTest.java b/doma-core/src/test/java/org/seasar/doma/internal/jdbc/command/ScalarProviderTest.java index bfdb36d67..a3b8a9024 100644 --- a/doma-core/src/test/java/org/seasar/doma/internal/jdbc/command/ScalarProviderTest.java +++ b/doma-core/src/test/java/org/seasar/doma/internal/jdbc/command/ScalarProviderTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.command; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/internal/jdbc/command/ScriptReaderTest.java b/doma-core/src/test/java/org/seasar/doma/internal/jdbc/command/ScriptReaderTest.java index f7ae0d3c6..b7188b568 100644 --- a/doma-core/src/test/java/org/seasar/doma/internal/jdbc/command/ScriptReaderTest.java +++ b/doma-core/src/test/java/org/seasar/doma/internal/jdbc/command/ScriptReaderTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.command; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/internal/jdbc/command/ScriptTokenizerTest.java b/doma-core/src/test/java/org/seasar/doma/internal/jdbc/command/ScriptTokenizerTest.java index 73d4ee441..80eb6e998 100644 --- a/doma-core/src/test/java/org/seasar/doma/internal/jdbc/command/ScriptTokenizerTest.java +++ b/doma-core/src/test/java/org/seasar/doma/internal/jdbc/command/ScriptTokenizerTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.command; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/internal/jdbc/dao/DaoImplSupportTest.java b/doma-core/src/test/java/org/seasar/doma/internal/jdbc/dao/DaoImplSupportTest.java index 38dfaf0e3..6f388b796 100644 --- a/doma-core/src/test/java/org/seasar/doma/internal/jdbc/dao/DaoImplSupportTest.java +++ b/doma-core/src/test/java/org/seasar/doma/internal/jdbc/dao/DaoImplSupportTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.dao; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/internal/jdbc/dialect/Db2ForUpdateTransformerTest.java b/doma-core/src/test/java/org/seasar/doma/internal/jdbc/dialect/Db2ForUpdateTransformerTest.java index 3d52b9518..841905c4a 100644 --- a/doma-core/src/test/java/org/seasar/doma/internal/jdbc/dialect/Db2ForUpdateTransformerTest.java +++ b/doma-core/src/test/java/org/seasar/doma/internal/jdbc/dialect/Db2ForUpdateTransformerTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.dialect; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/internal/jdbc/dialect/Db2PagingTransformerTest.java b/doma-core/src/test/java/org/seasar/doma/internal/jdbc/dialect/Db2PagingTransformerTest.java index 1cfc57299..ee07a9f7f 100644 --- a/doma-core/src/test/java/org/seasar/doma/internal/jdbc/dialect/Db2PagingTransformerTest.java +++ b/doma-core/src/test/java/org/seasar/doma/internal/jdbc/dialect/Db2PagingTransformerTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.dialect; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/internal/jdbc/dialect/H212126PagingTransformerTest.java b/doma-core/src/test/java/org/seasar/doma/internal/jdbc/dialect/H212126PagingTransformerTest.java index de07507c4..95417f7d5 100644 --- a/doma-core/src/test/java/org/seasar/doma/internal/jdbc/dialect/H212126PagingTransformerTest.java +++ b/doma-core/src/test/java/org/seasar/doma/internal/jdbc/dialect/H212126PagingTransformerTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.dialect; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/internal/jdbc/dialect/H2ForUpdateTransformerTest.java b/doma-core/src/test/java/org/seasar/doma/internal/jdbc/dialect/H2ForUpdateTransformerTest.java index 5e8cf2722..2d5d986bb 100644 --- a/doma-core/src/test/java/org/seasar/doma/internal/jdbc/dialect/H2ForUpdateTransformerTest.java +++ b/doma-core/src/test/java/org/seasar/doma/internal/jdbc/dialect/H2ForUpdateTransformerTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.dialect; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/internal/jdbc/dialect/H2PagingTransformerTest.java b/doma-core/src/test/java/org/seasar/doma/internal/jdbc/dialect/H2PagingTransformerTest.java index 3b4eedef2..7c2b693d2 100644 --- a/doma-core/src/test/java/org/seasar/doma/internal/jdbc/dialect/H2PagingTransformerTest.java +++ b/doma-core/src/test/java/org/seasar/doma/internal/jdbc/dialect/H2PagingTransformerTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.dialect; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/internal/jdbc/dialect/Mssql2008ForUpdateTransformerTest.java b/doma-core/src/test/java/org/seasar/doma/internal/jdbc/dialect/Mssql2008ForUpdateTransformerTest.java index 570e6184e..18527508d 100644 --- a/doma-core/src/test/java/org/seasar/doma/internal/jdbc/dialect/Mssql2008ForUpdateTransformerTest.java +++ b/doma-core/src/test/java/org/seasar/doma/internal/jdbc/dialect/Mssql2008ForUpdateTransformerTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.dialect; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/internal/jdbc/dialect/Mssql2008PagingTransformerTest.java b/doma-core/src/test/java/org/seasar/doma/internal/jdbc/dialect/Mssql2008PagingTransformerTest.java index 35e36b27c..43d2baf1e 100644 --- a/doma-core/src/test/java/org/seasar/doma/internal/jdbc/dialect/Mssql2008PagingTransformerTest.java +++ b/doma-core/src/test/java/org/seasar/doma/internal/jdbc/dialect/Mssql2008PagingTransformerTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.dialect; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/internal/jdbc/dialect/MssqlPagingTransformerTest.java b/doma-core/src/test/java/org/seasar/doma/internal/jdbc/dialect/MssqlPagingTransformerTest.java index 92398c414..8f1cc103a 100644 --- a/doma-core/src/test/java/org/seasar/doma/internal/jdbc/dialect/MssqlPagingTransformerTest.java +++ b/doma-core/src/test/java/org/seasar/doma/internal/jdbc/dialect/MssqlPagingTransformerTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.dialect; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/internal/jdbc/dialect/MysqlCountCalculatingTransformerTest.java b/doma-core/src/test/java/org/seasar/doma/internal/jdbc/dialect/MysqlCountCalculatingTransformerTest.java index 5f924dfb4..a4944b08d 100644 --- a/doma-core/src/test/java/org/seasar/doma/internal/jdbc/dialect/MysqlCountCalculatingTransformerTest.java +++ b/doma-core/src/test/java/org/seasar/doma/internal/jdbc/dialect/MysqlCountCalculatingTransformerTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.dialect; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/internal/jdbc/dialect/MysqlForUpdateTransformerTest.java b/doma-core/src/test/java/org/seasar/doma/internal/jdbc/dialect/MysqlForUpdateTransformerTest.java index 9602b75f3..931288775 100644 --- a/doma-core/src/test/java/org/seasar/doma/internal/jdbc/dialect/MysqlForUpdateTransformerTest.java +++ b/doma-core/src/test/java/org/seasar/doma/internal/jdbc/dialect/MysqlForUpdateTransformerTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.dialect; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/internal/jdbc/dialect/MysqlPagingTransformerTest.java b/doma-core/src/test/java/org/seasar/doma/internal/jdbc/dialect/MysqlPagingTransformerTest.java index a777326ad..9b3e5c2c8 100644 --- a/doma-core/src/test/java/org/seasar/doma/internal/jdbc/dialect/MysqlPagingTransformerTest.java +++ b/doma-core/src/test/java/org/seasar/doma/internal/jdbc/dialect/MysqlPagingTransformerTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.dialect; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/internal/jdbc/dialect/OracleForUpdateTransformerTest.java b/doma-core/src/test/java/org/seasar/doma/internal/jdbc/dialect/OracleForUpdateTransformerTest.java index a14c12f3e..324e25397 100644 --- a/doma-core/src/test/java/org/seasar/doma/internal/jdbc/dialect/OracleForUpdateTransformerTest.java +++ b/doma-core/src/test/java/org/seasar/doma/internal/jdbc/dialect/OracleForUpdateTransformerTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.dialect; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/internal/jdbc/dialect/OraclePagingTransformerTest.java b/doma-core/src/test/java/org/seasar/doma/internal/jdbc/dialect/OraclePagingTransformerTest.java index 454508a90..d87bd702e 100644 --- a/doma-core/src/test/java/org/seasar/doma/internal/jdbc/dialect/OraclePagingTransformerTest.java +++ b/doma-core/src/test/java/org/seasar/doma/internal/jdbc/dialect/OraclePagingTransformerTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.dialect; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/internal/jdbc/dialect/PostgresForUpdateTransformerTest.java b/doma-core/src/test/java/org/seasar/doma/internal/jdbc/dialect/PostgresForUpdateTransformerTest.java index 7af96d35e..9d2bb5d62 100644 --- a/doma-core/src/test/java/org/seasar/doma/internal/jdbc/dialect/PostgresForUpdateTransformerTest.java +++ b/doma-core/src/test/java/org/seasar/doma/internal/jdbc/dialect/PostgresForUpdateTransformerTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.dialect; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/internal/jdbc/dialect/PostgresPagingTransformerTest.java b/doma-core/src/test/java/org/seasar/doma/internal/jdbc/dialect/PostgresPagingTransformerTest.java index 45e22b7f9..fcf9c25f6 100644 --- a/doma-core/src/test/java/org/seasar/doma/internal/jdbc/dialect/PostgresPagingTransformerTest.java +++ b/doma-core/src/test/java/org/seasar/doma/internal/jdbc/dialect/PostgresPagingTransformerTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.dialect; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/internal/jdbc/dialect/SqlitePagingTransformerTest.java b/doma-core/src/test/java/org/seasar/doma/internal/jdbc/dialect/SqlitePagingTransformerTest.java index 6e25365bd..c4b4ba7ae 100644 --- a/doma-core/src/test/java/org/seasar/doma/internal/jdbc/dialect/SqlitePagingTransformerTest.java +++ b/doma-core/src/test/java/org/seasar/doma/internal/jdbc/dialect/SqlitePagingTransformerTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.dialect; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/internal/jdbc/dialect/StandardCountGettingTransformerTest.java b/doma-core/src/test/java/org/seasar/doma/internal/jdbc/dialect/StandardCountGettingTransformerTest.java index 8a9b8cf1a..ed3e65086 100644 --- a/doma-core/src/test/java/org/seasar/doma/internal/jdbc/dialect/StandardCountGettingTransformerTest.java +++ b/doma-core/src/test/java/org/seasar/doma/internal/jdbc/dialect/StandardCountGettingTransformerTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.dialect; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/internal/jdbc/dialect/StandardPagingTransformerTest.java b/doma-core/src/test/java/org/seasar/doma/internal/jdbc/dialect/StandardPagingTransformerTest.java index ce39e46a7..88b7cad84 100644 --- a/doma-core/src/test/java/org/seasar/doma/internal/jdbc/dialect/StandardPagingTransformerTest.java +++ b/doma-core/src/test/java/org/seasar/doma/internal/jdbc/dialect/StandardPagingTransformerTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.dialect; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/internal/jdbc/entity/Address.java b/doma-core/src/test/java/org/seasar/doma/internal/jdbc/entity/Address.java index 6b09170af..71ff610cf 100644 --- a/doma-core/src/test/java/org/seasar/doma/internal/jdbc/entity/Address.java +++ b/doma-core/src/test/java/org/seasar/doma/internal/jdbc/entity/Address.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.entity; /** */ diff --git a/doma-core/src/test/java/org/seasar/doma/internal/jdbc/entity/Animal.java b/doma-core/src/test/java/org/seasar/doma/internal/jdbc/entity/Animal.java index 493112910..c0e1d9124 100644 --- a/doma-core/src/test/java/org/seasar/doma/internal/jdbc/entity/Animal.java +++ b/doma-core/src/test/java/org/seasar/doma/internal/jdbc/entity/Animal.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.entity; public class Animal extends Life { diff --git a/doma-core/src/test/java/org/seasar/doma/internal/jdbc/entity/Life.java b/doma-core/src/test/java/org/seasar/doma/internal/jdbc/entity/Life.java index f979bf7ac..4f861a6d0 100644 --- a/doma-core/src/test/java/org/seasar/doma/internal/jdbc/entity/Life.java +++ b/doma-core/src/test/java/org/seasar/doma/internal/jdbc/entity/Life.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.entity; public class Life { diff --git a/doma-core/src/test/java/org/seasar/doma/internal/jdbc/entity/Location.java b/doma-core/src/test/java/org/seasar/doma/internal/jdbc/entity/Location.java index 3a15ba818..17436856f 100644 --- a/doma-core/src/test/java/org/seasar/doma/internal/jdbc/entity/Location.java +++ b/doma-core/src/test/java/org/seasar/doma/internal/jdbc/entity/Location.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.entity; public class Location { diff --git a/doma-core/src/test/java/org/seasar/doma/internal/jdbc/entity/Person.java b/doma-core/src/test/java/org/seasar/doma/internal/jdbc/entity/Person.java index 90bf08892..c5dc4b2fd 100644 --- a/doma-core/src/test/java/org/seasar/doma/internal/jdbc/entity/Person.java +++ b/doma-core/src/test/java/org/seasar/doma/internal/jdbc/entity/Person.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.entity; public class Person extends Animal { diff --git a/doma-core/src/test/java/org/seasar/doma/internal/jdbc/entity/PropertyFieldTest.java b/doma-core/src/test/java/org/seasar/doma/internal/jdbc/entity/PropertyFieldTest.java index 631221fc1..0d0c4b51a 100644 --- a/doma-core/src/test/java/org/seasar/doma/internal/jdbc/entity/PropertyFieldTest.java +++ b/doma-core/src/test/java/org/seasar/doma/internal/jdbc/entity/PropertyFieldTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.entity; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/internal/jdbc/mock/MockConfig.java b/doma-core/src/test/java/org/seasar/doma/internal/jdbc/mock/MockConfig.java index b81a45a38..1759b4433 100644 --- a/doma-core/src/test/java/org/seasar/doma/internal/jdbc/mock/MockConfig.java +++ b/doma-core/src/test/java/org/seasar/doma/internal/jdbc/mock/MockConfig.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.mock; import javax.sql.DataSource; diff --git a/doma-core/src/test/java/org/seasar/doma/internal/jdbc/scalar/ScalarsTest.java b/doma-core/src/test/java/org/seasar/doma/internal/jdbc/scalar/ScalarsTest.java index c35d61ca4..1ed747156 100644 --- a/doma-core/src/test/java/org/seasar/doma/internal/jdbc/scalar/ScalarsTest.java +++ b/doma-core/src/test/java/org/seasar/doma/internal/jdbc/scalar/ScalarsTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.scalar; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/internal/jdbc/scalar/supplier/BasicScalarSuppliersTest.java b/doma-core/src/test/java/org/seasar/doma/internal/jdbc/scalar/supplier/BasicScalarSuppliersTest.java index 27f9ccb3d..76894c813 100644 --- a/doma-core/src/test/java/org/seasar/doma/internal/jdbc/scalar/supplier/BasicScalarSuppliersTest.java +++ b/doma-core/src/test/java/org/seasar/doma/internal/jdbc/scalar/supplier/BasicScalarSuppliersTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.scalar.supplier; import static org.junit.jupiter.api.Assertions.assertNotNull; diff --git a/doma-core/src/test/java/org/seasar/doma/internal/jdbc/scalar/supplier/MyEntity.java b/doma-core/src/test/java/org/seasar/doma/internal/jdbc/scalar/supplier/MyEntity.java index 1729cf302..2439f7334 100644 --- a/doma-core/src/test/java/org/seasar/doma/internal/jdbc/scalar/supplier/MyEntity.java +++ b/doma-core/src/test/java/org/seasar/doma/internal/jdbc/scalar/supplier/MyEntity.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.scalar.supplier; public class MyEntity { diff --git a/doma-core/src/test/java/org/seasar/doma/internal/jdbc/sql/BlankLineRemovalContextTest.java b/doma-core/src/test/java/org/seasar/doma/internal/jdbc/sql/BlankLineRemovalContextTest.java index 9a6b4d5e8..f474b7fdf 100644 --- a/doma-core/src/test/java/org/seasar/doma/internal/jdbc/sql/BlankLineRemovalContextTest.java +++ b/doma-core/src/test/java/org/seasar/doma/internal/jdbc/sql/BlankLineRemovalContextTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.sql; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/internal/jdbc/sql/BlankLineRemovalSqlParserTest.java b/doma-core/src/test/java/org/seasar/doma/internal/jdbc/sql/BlankLineRemovalSqlParserTest.java index a37d15f8e..cce34a9d8 100644 --- a/doma-core/src/test/java/org/seasar/doma/internal/jdbc/sql/BlankLineRemovalSqlParserTest.java +++ b/doma-core/src/test/java/org/seasar/doma/internal/jdbc/sql/BlankLineRemovalSqlParserTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.sql; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/internal/jdbc/sql/CommentRemovalContextTest.java b/doma-core/src/test/java/org/seasar/doma/internal/jdbc/sql/CommentRemovalContextTest.java index e10da6d00..b3b5860be 100644 --- a/doma-core/src/test/java/org/seasar/doma/internal/jdbc/sql/CommentRemovalContextTest.java +++ b/doma-core/src/test/java/org/seasar/doma/internal/jdbc/sql/CommentRemovalContextTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.sql; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/internal/jdbc/sql/NodePreparedSqlBuilderTest.java b/doma-core/src/test/java/org/seasar/doma/internal/jdbc/sql/NodePreparedSqlBuilderTest.java index 39638983b..5b2783224 100644 --- a/doma-core/src/test/java/org/seasar/doma/internal/jdbc/sql/NodePreparedSqlBuilderTest.java +++ b/doma-core/src/test/java/org/seasar/doma/internal/jdbc/sql/NodePreparedSqlBuilderTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.sql; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/internal/jdbc/sql/PreparedSqlBuilderTest.java b/doma-core/src/test/java/org/seasar/doma/internal/jdbc/sql/PreparedSqlBuilderTest.java index 9effd3646..675b78e48 100644 --- a/doma-core/src/test/java/org/seasar/doma/internal/jdbc/sql/PreparedSqlBuilderTest.java +++ b/doma-core/src/test/java/org/seasar/doma/internal/jdbc/sql/PreparedSqlBuilderTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.sql; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/internal/jdbc/sql/ScalarInOutParameterTest.java b/doma-core/src/test/java/org/seasar/doma/internal/jdbc/sql/ScalarInOutParameterTest.java index 1300aab0c..d775c9009 100644 --- a/doma-core/src/test/java/org/seasar/doma/internal/jdbc/sql/ScalarInOutParameterTest.java +++ b/doma-core/src/test/java/org/seasar/doma/internal/jdbc/sql/ScalarInOutParameterTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.sql; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/internal/jdbc/sql/ScalarInParameterTest.java b/doma-core/src/test/java/org/seasar/doma/internal/jdbc/sql/ScalarInParameterTest.java index 7850aa0e3..d68125427 100644 --- a/doma-core/src/test/java/org/seasar/doma/internal/jdbc/sql/ScalarInParameterTest.java +++ b/doma-core/src/test/java/org/seasar/doma/internal/jdbc/sql/ScalarInParameterTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.sql; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/internal/jdbc/sql/ScalarResultListParameterTest.java b/doma-core/src/test/java/org/seasar/doma/internal/jdbc/sql/ScalarResultListParameterTest.java index b97fb026e..5a2c7e816 100644 --- a/doma-core/src/test/java/org/seasar/doma/internal/jdbc/sql/ScalarResultListParameterTest.java +++ b/doma-core/src/test/java/org/seasar/doma/internal/jdbc/sql/ScalarResultListParameterTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.sql; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/internal/jdbc/sql/SqlParserTest.java b/doma-core/src/test/java/org/seasar/doma/internal/jdbc/sql/SqlParserTest.java index fef364b49..e7b2001b4 100644 --- a/doma-core/src/test/java/org/seasar/doma/internal/jdbc/sql/SqlParserTest.java +++ b/doma-core/src/test/java/org/seasar/doma/internal/jdbc/sql/SqlParserTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.sql; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/internal/jdbc/sql/SqlTokenizerTest.java b/doma-core/src/test/java/org/seasar/doma/internal/jdbc/sql/SqlTokenizerTest.java index 5bd656412..92e0eae0b 100644 --- a/doma-core/src/test/java/org/seasar/doma/internal/jdbc/sql/SqlTokenizerTest.java +++ b/doma-core/src/test/java/org/seasar/doma/internal/jdbc/sql/SqlTokenizerTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.sql; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/internal/jdbc/util/DatabaseObjectUtilTest.java b/doma-core/src/test/java/org/seasar/doma/internal/jdbc/util/DatabaseObjectUtilTest.java index 2c085fc2a..a4d2bc679 100644 --- a/doma-core/src/test/java/org/seasar/doma/internal/jdbc/util/DatabaseObjectUtilTest.java +++ b/doma-core/src/test/java/org/seasar/doma/internal/jdbc/util/DatabaseObjectUtilTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.util; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/internal/util/CharSequenceUtilTest.java b/doma-core/src/test/java/org/seasar/doma/internal/util/CharSequenceUtilTest.java index a23eef9d5..50d79995d 100644 --- a/doma-core/src/test/java/org/seasar/doma/internal/util/CharSequenceUtilTest.java +++ b/doma-core/src/test/java/org/seasar/doma/internal/util/CharSequenceUtilTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.util; import static org.junit.jupiter.api.Assertions.assertFalse; diff --git a/doma-core/src/test/java/org/seasar/doma/internal/util/ClassUtilTest.java b/doma-core/src/test/java/org/seasar/doma/internal/util/ClassUtilTest.java index 172e6f0b1..895bf7c40 100644 --- a/doma-core/src/test/java/org/seasar/doma/internal/util/ClassUtilTest.java +++ b/doma-core/src/test/java/org/seasar/doma/internal/util/ClassUtilTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.util; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/internal/util/CombinationsTest.java b/doma-core/src/test/java/org/seasar/doma/internal/util/CombinationsTest.java index 12ae11362..e9109174f 100644 --- a/doma-core/src/test/java/org/seasar/doma/internal/util/CombinationsTest.java +++ b/doma-core/src/test/java/org/seasar/doma/internal/util/CombinationsTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.util; import static org.junit.jupiter.api.Assertions.assertFalse; diff --git a/doma-core/src/test/java/org/seasar/doma/internal/util/ConstructorUtilTest.java b/doma-core/src/test/java/org/seasar/doma/internal/util/ConstructorUtilTest.java index aa96490b0..8d7fe9f36 100644 --- a/doma-core/src/test/java/org/seasar/doma/internal/util/ConstructorUtilTest.java +++ b/doma-core/src/test/java/org/seasar/doma/internal/util/ConstructorUtilTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.util; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/internal/util/FieldUtilTest.java b/doma-core/src/test/java/org/seasar/doma/internal/util/FieldUtilTest.java index dd6461d5c..962b7a1f5 100644 --- a/doma-core/src/test/java/org/seasar/doma/internal/util/FieldUtilTest.java +++ b/doma-core/src/test/java/org/seasar/doma/internal/util/FieldUtilTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.util; import static org.junit.jupiter.api.Assertions.assertFalse; diff --git a/doma-core/src/test/java/org/seasar/doma/internal/util/GenericUtilTest.java b/doma-core/src/test/java/org/seasar/doma/internal/util/GenericUtilTest.java index 467ba9052..5929bf814 100644 --- a/doma-core/src/test/java/org/seasar/doma/internal/util/GenericUtilTest.java +++ b/doma-core/src/test/java/org/seasar/doma/internal/util/GenericUtilTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.util; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/internal/util/IOUtilTest.java b/doma-core/src/test/java/org/seasar/doma/internal/util/IOUtilTest.java index 6c479d599..1aa736a51 100644 --- a/doma-core/src/test/java/org/seasar/doma/internal/util/IOUtilTest.java +++ b/doma-core/src/test/java/org/seasar/doma/internal/util/IOUtilTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.util; import static org.junit.jupiter.api.Assertions.assertFalse; diff --git a/doma-core/src/test/java/org/seasar/doma/internal/util/IntegerUtilTest.java b/doma-core/src/test/java/org/seasar/doma/internal/util/IntegerUtilTest.java index 96cb50979..e484a2d49 100644 --- a/doma-core/src/test/java/org/seasar/doma/internal/util/IntegerUtilTest.java +++ b/doma-core/src/test/java/org/seasar/doma/internal/util/IntegerUtilTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.util; import static org.junit.jupiter.api.Assertions.*; diff --git a/doma-core/src/test/java/org/seasar/doma/internal/util/MethodUtilTest.java b/doma-core/src/test/java/org/seasar/doma/internal/util/MethodUtilTest.java index 29c72fb6a..384fa44c2 100644 --- a/doma-core/src/test/java/org/seasar/doma/internal/util/MethodUtilTest.java +++ b/doma-core/src/test/java/org/seasar/doma/internal/util/MethodUtilTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.util; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/internal/util/PaddingIteratorTest.java b/doma-core/src/test/java/org/seasar/doma/internal/util/PaddingIteratorTest.java index e9e538aa1..0e8645d0b 100644 --- a/doma-core/src/test/java/org/seasar/doma/internal/util/PaddingIteratorTest.java +++ b/doma-core/src/test/java/org/seasar/doma/internal/util/PaddingIteratorTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.util; import static org.junit.jupiter.api.Assertions.*; diff --git a/doma-core/src/test/java/org/seasar/doma/internal/util/ResourceUtilTest.java b/doma-core/src/test/java/org/seasar/doma/internal/util/ResourceUtilTest.java index 89e3bd740..4b2ee93b7 100644 --- a/doma-core/src/test/java/org/seasar/doma/internal/util/ResourceUtilTest.java +++ b/doma-core/src/test/java/org/seasar/doma/internal/util/ResourceUtilTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.util; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/internal/util/SqlFileUtilTest.java b/doma-core/src/test/java/org/seasar/doma/internal/util/SqlFileUtilTest.java index 67c652dd4..cb9b37a97 100644 --- a/doma-core/src/test/java/org/seasar/doma/internal/util/SqlFileUtilTest.java +++ b/doma-core/src/test/java/org/seasar/doma/internal/util/SqlFileUtilTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.util; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/internal/util/StringUtilTest.java b/doma-core/src/test/java/org/seasar/doma/internal/util/StringUtilTest.java index a07c477b4..148031b06 100644 --- a/doma-core/src/test/java/org/seasar/doma/internal/util/StringUtilTest.java +++ b/doma-core/src/test/java/org/seasar/doma/internal/util/StringUtilTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.util; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/internal/util/ZipTest.java b/doma-core/src/test/java/org/seasar/doma/internal/util/ZipTest.java index a40ff6103..bb37a4c39 100644 --- a/doma-core/src/test/java/org/seasar/doma/internal/util/ZipTest.java +++ b/doma-core/src/test/java/org/seasar/doma/internal/util/ZipTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.util; import static org.junit.jupiter.api.Assertions.*; diff --git a/doma-core/src/test/java/org/seasar/doma/jdbc/AbstractSqlFileRepositoryTest.java b/doma-core/src/test/java/org/seasar/doma/jdbc/AbstractSqlFileRepositoryTest.java index 72444bccb..300cfa7ec 100644 --- a/doma-core/src/test/java/org/seasar/doma/jdbc/AbstractSqlFileRepositoryTest.java +++ b/doma-core/src/test/java/org/seasar/doma/jdbc/AbstractSqlFileRepositoryTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/jdbc/BatchOptimisticLockExceptionTest.java b/doma-core/src/test/java/org/seasar/doma/jdbc/BatchOptimisticLockExceptionTest.java index 2e0495171..ebeed09a2 100644 --- a/doma-core/src/test/java/org/seasar/doma/jdbc/BatchOptimisticLockExceptionTest.java +++ b/doma-core/src/test/java/org/seasar/doma/jdbc/BatchOptimisticLockExceptionTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/jdbc/BatchSqlExecutionExceptionTest.java b/doma-core/src/test/java/org/seasar/doma/jdbc/BatchSqlExecutionExceptionTest.java index a1a5592f6..e22c5f328 100644 --- a/doma-core/src/test/java/org/seasar/doma/jdbc/BatchSqlExecutionExceptionTest.java +++ b/doma-core/src/test/java/org/seasar/doma/jdbc/BatchSqlExecutionExceptionTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/jdbc/BatchUniqueConstraintExceptionTest.java b/doma-core/src/test/java/org/seasar/doma/jdbc/BatchUniqueConstraintExceptionTest.java index f337716f2..5a5ac2d01 100644 --- a/doma-core/src/test/java/org/seasar/doma/jdbc/BatchUniqueConstraintExceptionTest.java +++ b/doma-core/src/test/java/org/seasar/doma/jdbc/BatchUniqueConstraintExceptionTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/jdbc/CallerCommenterTest.java b/doma-core/src/test/java/org/seasar/doma/jdbc/CallerCommenterTest.java index 2bbd86005..bb497ef62 100644 --- a/doma-core/src/test/java/org/seasar/doma/jdbc/CallerCommenterTest.java +++ b/doma-core/src/test/java/org/seasar/doma/jdbc/CallerCommenterTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/jdbc/CommentContextTest.java b/doma-core/src/test/java/org/seasar/doma/jdbc/CommentContextTest.java index d72ffacfc..5f92c27a4 100644 --- a/doma-core/src/test/java/org/seasar/doma/jdbc/CommentContextTest.java +++ b/doma-core/src/test/java/org/seasar/doma/jdbc/CommentContextTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/jdbc/ConfigExceptionTest.java b/doma-core/src/test/java/org/seasar/doma/jdbc/ConfigExceptionTest.java index 65b44d927..b789dd0be 100644 --- a/doma-core/src/test/java/org/seasar/doma/jdbc/ConfigExceptionTest.java +++ b/doma-core/src/test/java/org/seasar/doma/jdbc/ConfigExceptionTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/jdbc/ConfigTest.java b/doma-core/src/test/java/org/seasar/doma/jdbc/ConfigTest.java index 6db64f261..1aa5a11f5 100644 --- a/doma-core/src/test/java/org/seasar/doma/jdbc/ConfigTest.java +++ b/doma-core/src/test/java/org/seasar/doma/jdbc/ConfigTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc; import static org.junit.jupiter.api.Assertions.assertNotNull; diff --git a/doma-core/src/test/java/org/seasar/doma/jdbc/DaoMethodNotFoundExceptionTest.java b/doma-core/src/test/java/org/seasar/doma/jdbc/DaoMethodNotFoundExceptionTest.java index dc5f105e0..ab38d8505 100644 --- a/doma-core/src/test/java/org/seasar/doma/jdbc/DaoMethodNotFoundExceptionTest.java +++ b/doma-core/src/test/java/org/seasar/doma/jdbc/DaoMethodNotFoundExceptionTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/jdbc/GreedyCacheSqlFileRepositoryTest.java b/doma-core/src/test/java/org/seasar/doma/jdbc/GreedyCacheSqlFileRepositoryTest.java index e9dbf765f..cbd7c3dd4 100644 --- a/doma-core/src/test/java/org/seasar/doma/jdbc/GreedyCacheSqlFileRepositoryTest.java +++ b/doma-core/src/test/java/org/seasar/doma/jdbc/GreedyCacheSqlFileRepositoryTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/jdbc/JdbcExceptionTest.java b/doma-core/src/test/java/org/seasar/doma/jdbc/JdbcExceptionTest.java index 4dde65917..1c69f89b0 100644 --- a/doma-core/src/test/java/org/seasar/doma/jdbc/JdbcExceptionTest.java +++ b/doma-core/src/test/java/org/seasar/doma/jdbc/JdbcExceptionTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/jdbc/JdbcUnsupportedOperationExceptionTest.java b/doma-core/src/test/java/org/seasar/doma/jdbc/JdbcUnsupportedOperationExceptionTest.java index 8444a3a21..4a657f899 100644 --- a/doma-core/src/test/java/org/seasar/doma/jdbc/JdbcUnsupportedOperationExceptionTest.java +++ b/doma-core/src/test/java/org/seasar/doma/jdbc/JdbcUnsupportedOperationExceptionTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/jdbc/NamingTest.java b/doma-core/src/test/java/org/seasar/doma/jdbc/NamingTest.java index 37a870512..b51740fec 100644 --- a/doma-core/src/test/java/org/seasar/doma/jdbc/NamingTest.java +++ b/doma-core/src/test/java/org/seasar/doma/jdbc/NamingTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/jdbc/NonSingleColumnExceptionTest.java b/doma-core/src/test/java/org/seasar/doma/jdbc/NonSingleColumnExceptionTest.java index 84a6a2d48..ecd638bbc 100644 --- a/doma-core/src/test/java/org/seasar/doma/jdbc/NonSingleColumnExceptionTest.java +++ b/doma-core/src/test/java/org/seasar/doma/jdbc/NonSingleColumnExceptionTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/jdbc/NonUniqueResultExceptionTest.java b/doma-core/src/test/java/org/seasar/doma/jdbc/NonUniqueResultExceptionTest.java index be20c748c..1c7b6550d 100644 --- a/doma-core/src/test/java/org/seasar/doma/jdbc/NonUniqueResultExceptionTest.java +++ b/doma-core/src/test/java/org/seasar/doma/jdbc/NonUniqueResultExceptionTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/jdbc/OptimisticLockExceptionTest.java b/doma-core/src/test/java/org/seasar/doma/jdbc/OptimisticLockExceptionTest.java index 0c760f79f..08d016c77 100644 --- a/doma-core/src/test/java/org/seasar/doma/jdbc/OptimisticLockExceptionTest.java +++ b/doma-core/src/test/java/org/seasar/doma/jdbc/OptimisticLockExceptionTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/jdbc/ResultMappingExceptionTest.java b/doma-core/src/test/java/org/seasar/doma/jdbc/ResultMappingExceptionTest.java index cca066c11..9f3e23be9 100644 --- a/doma-core/src/test/java/org/seasar/doma/jdbc/ResultMappingExceptionTest.java +++ b/doma-core/src/test/java/org/seasar/doma/jdbc/ResultMappingExceptionTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/jdbc/SelectOptionsTest.java b/doma-core/src/test/java/org/seasar/doma/jdbc/SelectOptionsTest.java index ecbbf4e1a..baadaba72 100644 --- a/doma-core/src/test/java/org/seasar/doma/jdbc/SelectOptionsTest.java +++ b/doma-core/src/test/java/org/seasar/doma/jdbc/SelectOptionsTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/jdbc/SimpleDataSourceTest.java b/doma-core/src/test/java/org/seasar/doma/jdbc/SimpleDataSourceTest.java index 0d9802db2..948055c7c 100644 --- a/doma-core/src/test/java/org/seasar/doma/jdbc/SimpleDataSourceTest.java +++ b/doma-core/src/test/java/org/seasar/doma/jdbc/SimpleDataSourceTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc; import static org.junit.jupiter.api.Assertions.assertFalse; diff --git a/doma-core/src/test/java/org/seasar/doma/jdbc/SqlExecutionExceptionTest.java b/doma-core/src/test/java/org/seasar/doma/jdbc/SqlExecutionExceptionTest.java index 824d8533f..bbc011ced 100644 --- a/doma-core/src/test/java/org/seasar/doma/jdbc/SqlExecutionExceptionTest.java +++ b/doma-core/src/test/java/org/seasar/doma/jdbc/SqlExecutionExceptionTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/jdbc/SqlFileNotFoundExceptionTest.java b/doma-core/src/test/java/org/seasar/doma/jdbc/SqlFileNotFoundExceptionTest.java index 07cda218a..7860344c6 100644 --- a/doma-core/src/test/java/org/seasar/doma/jdbc/SqlFileNotFoundExceptionTest.java +++ b/doma-core/src/test/java/org/seasar/doma/jdbc/SqlFileNotFoundExceptionTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/jdbc/UniqueConstraintExceptionTest.java b/doma-core/src/test/java/org/seasar/doma/jdbc/UniqueConstraintExceptionTest.java index a33f77793..71ae94737 100644 --- a/doma-core/src/test/java/org/seasar/doma/jdbc/UniqueConstraintExceptionTest.java +++ b/doma-core/src/test/java/org/seasar/doma/jdbc/UniqueConstraintExceptionTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/jdbc/UnknownColumnExceptionTest.java b/doma-core/src/test/java/org/seasar/doma/jdbc/UnknownColumnExceptionTest.java index ee000c008..ee6a9f86c 100644 --- a/doma-core/src/test/java/org/seasar/doma/jdbc/UnknownColumnExceptionTest.java +++ b/doma-core/src/test/java/org/seasar/doma/jdbc/UnknownColumnExceptionTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/jdbc/UtilLoggingJdbcLoggerTest.java b/doma-core/src/test/java/org/seasar/doma/jdbc/UtilLoggingJdbcLoggerTest.java index 14d915333..91a9b2fd1 100644 --- a/doma-core/src/test/java/org/seasar/doma/jdbc/UtilLoggingJdbcLoggerTest.java +++ b/doma-core/src/test/java/org/seasar/doma/jdbc/UtilLoggingJdbcLoggerTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc; import java.util.Collections; diff --git a/doma-core/src/test/java/org/seasar/doma/jdbc/builder/BatchDeleteExecutorTest.java b/doma-core/src/test/java/org/seasar/doma/jdbc/builder/BatchDeleteExecutorTest.java index 569effb91..8641aba02 100644 --- a/doma-core/src/test/java/org/seasar/doma/jdbc/builder/BatchDeleteExecutorTest.java +++ b/doma-core/src/test/java/org/seasar/doma/jdbc/builder/BatchDeleteExecutorTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.builder; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/jdbc/builder/BatchInsertExecutorTest.java b/doma-core/src/test/java/org/seasar/doma/jdbc/builder/BatchInsertExecutorTest.java index 080abf69f..b6b44cb12 100644 --- a/doma-core/src/test/java/org/seasar/doma/jdbc/builder/BatchInsertExecutorTest.java +++ b/doma-core/src/test/java/org/seasar/doma/jdbc/builder/BatchInsertExecutorTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.builder; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/jdbc/builder/BatchUpdateExecutorTest.java b/doma-core/src/test/java/org/seasar/doma/jdbc/builder/BatchUpdateExecutorTest.java index 81309be72..7066464e1 100644 --- a/doma-core/src/test/java/org/seasar/doma/jdbc/builder/BatchUpdateExecutorTest.java +++ b/doma-core/src/test/java/org/seasar/doma/jdbc/builder/BatchUpdateExecutorTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.builder; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/jdbc/builder/DeleteBuilderTest.java b/doma-core/src/test/java/org/seasar/doma/jdbc/builder/DeleteBuilderTest.java index 0d12aa232..3d5994a3e 100644 --- a/doma-core/src/test/java/org/seasar/doma/jdbc/builder/DeleteBuilderTest.java +++ b/doma-core/src/test/java/org/seasar/doma/jdbc/builder/DeleteBuilderTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.builder; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/jdbc/builder/InsertBuilderTest.java b/doma-core/src/test/java/org/seasar/doma/jdbc/builder/InsertBuilderTest.java index da76b186b..dcb03cbcd 100644 --- a/doma-core/src/test/java/org/seasar/doma/jdbc/builder/InsertBuilderTest.java +++ b/doma-core/src/test/java/org/seasar/doma/jdbc/builder/InsertBuilderTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.builder; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/jdbc/builder/MapBatchInsertBuilderTest.java b/doma-core/src/test/java/org/seasar/doma/jdbc/builder/MapBatchInsertBuilderTest.java index 1423c4993..35f3fb8ae 100644 --- a/doma-core/src/test/java/org/seasar/doma/jdbc/builder/MapBatchInsertBuilderTest.java +++ b/doma-core/src/test/java/org/seasar/doma/jdbc/builder/MapBatchInsertBuilderTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.builder; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/jdbc/builder/MapInsertBuilderTest.java b/doma-core/src/test/java/org/seasar/doma/jdbc/builder/MapInsertBuilderTest.java index 34d6df1fc..2147fd54a 100644 --- a/doma-core/src/test/java/org/seasar/doma/jdbc/builder/MapInsertBuilderTest.java +++ b/doma-core/src/test/java/org/seasar/doma/jdbc/builder/MapInsertBuilderTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.builder; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/jdbc/builder/SelectBuilderTest.java b/doma-core/src/test/java/org/seasar/doma/jdbc/builder/SelectBuilderTest.java index b8fa1b0d5..c958d9011 100644 --- a/doma-core/src/test/java/org/seasar/doma/jdbc/builder/SelectBuilderTest.java +++ b/doma-core/src/test/java/org/seasar/doma/jdbc/builder/SelectBuilderTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.builder; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/jdbc/builder/UpdateBuilderTest.java b/doma-core/src/test/java/org/seasar/doma/jdbc/builder/UpdateBuilderTest.java index b69321b75..d6f29cf78 100644 --- a/doma-core/src/test/java/org/seasar/doma/jdbc/builder/UpdateBuilderTest.java +++ b/doma-core/src/test/java/org/seasar/doma/jdbc/builder/UpdateBuilderTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.builder; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/jdbc/command/BatchDeleteCommandTest.java b/doma-core/src/test/java/org/seasar/doma/jdbc/command/BatchDeleteCommandTest.java index 0f0524bc4..b070e75ee 100644 --- a/doma-core/src/test/java/org/seasar/doma/jdbc/command/BatchDeleteCommandTest.java +++ b/doma-core/src/test/java/org/seasar/doma/jdbc/command/BatchDeleteCommandTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.command; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/jdbc/command/BatchInsertCommandTest.java b/doma-core/src/test/java/org/seasar/doma/jdbc/command/BatchInsertCommandTest.java index 972deba25..e679ade41 100644 --- a/doma-core/src/test/java/org/seasar/doma/jdbc/command/BatchInsertCommandTest.java +++ b/doma-core/src/test/java/org/seasar/doma/jdbc/command/BatchInsertCommandTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.command; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/jdbc/command/BatchUpdateCommandTest.java b/doma-core/src/test/java/org/seasar/doma/jdbc/command/BatchUpdateCommandTest.java index 2255b8c8c..8a15d18d4 100644 --- a/doma-core/src/test/java/org/seasar/doma/jdbc/command/BatchUpdateCommandTest.java +++ b/doma-core/src/test/java/org/seasar/doma/jdbc/command/BatchUpdateCommandTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.command; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/jdbc/command/DeleteCommandTest.java b/doma-core/src/test/java/org/seasar/doma/jdbc/command/DeleteCommandTest.java index edab27cba..3a40c80eb 100644 --- a/doma-core/src/test/java/org/seasar/doma/jdbc/command/DeleteCommandTest.java +++ b/doma-core/src/test/java/org/seasar/doma/jdbc/command/DeleteCommandTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.command; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/jdbc/command/FunctionCommandTest.java b/doma-core/src/test/java/org/seasar/doma/jdbc/command/FunctionCommandTest.java index 235fb385e..213d19d12 100644 --- a/doma-core/src/test/java/org/seasar/doma/jdbc/command/FunctionCommandTest.java +++ b/doma-core/src/test/java/org/seasar/doma/jdbc/command/FunctionCommandTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.command; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/jdbc/command/InsertCommandTest.java b/doma-core/src/test/java/org/seasar/doma/jdbc/command/InsertCommandTest.java index 5d865ccec..e4a53fb82 100644 --- a/doma-core/src/test/java/org/seasar/doma/jdbc/command/InsertCommandTest.java +++ b/doma-core/src/test/java/org/seasar/doma/jdbc/command/InsertCommandTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.command; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/jdbc/command/ScriptCommandTest.java b/doma-core/src/test/java/org/seasar/doma/jdbc/command/ScriptCommandTest.java index a1d54d0b3..3756f5102 100644 --- a/doma-core/src/test/java/org/seasar/doma/jdbc/command/ScriptCommandTest.java +++ b/doma-core/src/test/java/org/seasar/doma/jdbc/command/ScriptCommandTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.command; import static org.junit.jupiter.api.Assertions.fail; diff --git a/doma-core/src/test/java/org/seasar/doma/jdbc/command/SelectCommandTest.java b/doma-core/src/test/java/org/seasar/doma/jdbc/command/SelectCommandTest.java index b117c4dd4..098583779 100644 --- a/doma-core/src/test/java/org/seasar/doma/jdbc/command/SelectCommandTest.java +++ b/doma-core/src/test/java/org/seasar/doma/jdbc/command/SelectCommandTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.command; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/jdbc/command/UpdateCommandTest.java b/doma-core/src/test/java/org/seasar/doma/jdbc/command/UpdateCommandTest.java index 4db43d201..7e4fa89cf 100644 --- a/doma-core/src/test/java/org/seasar/doma/jdbc/command/UpdateCommandTest.java +++ b/doma-core/src/test/java/org/seasar/doma/jdbc/command/UpdateCommandTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.command; import static org.junit.jupiter.api.Assertions.assertNull; diff --git a/doma-core/src/test/java/org/seasar/doma/jdbc/criteria/QueryDslEntityBatchDeleteTest.java b/doma-core/src/test/java/org/seasar/doma/jdbc/criteria/QueryDslEntityBatchDeleteTest.java index d24428a26..5a69d9983 100644 --- a/doma-core/src/test/java/org/seasar/doma/jdbc/criteria/QueryDslEntityBatchDeleteTest.java +++ b/doma-core/src/test/java/org/seasar/doma/jdbc/criteria/QueryDslEntityBatchDeleteTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/jdbc/criteria/QueryDslEntityBatchInsertTest.java b/doma-core/src/test/java/org/seasar/doma/jdbc/criteria/QueryDslEntityBatchInsertTest.java index 310b9a3f8..a4a8375a8 100644 --- a/doma-core/src/test/java/org/seasar/doma/jdbc/criteria/QueryDslEntityBatchInsertTest.java +++ b/doma-core/src/test/java/org/seasar/doma/jdbc/criteria/QueryDslEntityBatchInsertTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/jdbc/criteria/QueryDslEntityBatchUpdateTest.java b/doma-core/src/test/java/org/seasar/doma/jdbc/criteria/QueryDslEntityBatchUpdateTest.java index 534d48cf7..8956a962f 100644 --- a/doma-core/src/test/java/org/seasar/doma/jdbc/criteria/QueryDslEntityBatchUpdateTest.java +++ b/doma-core/src/test/java/org/seasar/doma/jdbc/criteria/QueryDslEntityBatchUpdateTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/jdbc/criteria/QueryDslEntityDeleteTest.java b/doma-core/src/test/java/org/seasar/doma/jdbc/criteria/QueryDslEntityDeleteTest.java index efa37a6f9..bc75a2444 100644 --- a/doma-core/src/test/java/org/seasar/doma/jdbc/criteria/QueryDslEntityDeleteTest.java +++ b/doma-core/src/test/java/org/seasar/doma/jdbc/criteria/QueryDslEntityDeleteTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/jdbc/criteria/QueryDslEntityInsertTest.java b/doma-core/src/test/java/org/seasar/doma/jdbc/criteria/QueryDslEntityInsertTest.java index 09e224c94..46d40ccb7 100644 --- a/doma-core/src/test/java/org/seasar/doma/jdbc/criteria/QueryDslEntityInsertTest.java +++ b/doma-core/src/test/java/org/seasar/doma/jdbc/criteria/QueryDslEntityInsertTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/jdbc/criteria/QueryDslEntityMultiInsertTest.java b/doma-core/src/test/java/org/seasar/doma/jdbc/criteria/QueryDslEntityMultiInsertTest.java index ca8ec1b10..1e8e7a1a7 100644 --- a/doma-core/src/test/java/org/seasar/doma/jdbc/criteria/QueryDslEntityMultiInsertTest.java +++ b/doma-core/src/test/java/org/seasar/doma/jdbc/criteria/QueryDslEntityMultiInsertTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/jdbc/criteria/QueryDslEntitySelectTest.java b/doma-core/src/test/java/org/seasar/doma/jdbc/criteria/QueryDslEntitySelectTest.java index 16c42fa09..4a39fac41 100644 --- a/doma-core/src/test/java/org/seasar/doma/jdbc/criteria/QueryDslEntitySelectTest.java +++ b/doma-core/src/test/java/org/seasar/doma/jdbc/criteria/QueryDslEntitySelectTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/jdbc/criteria/QueryDslEntityUpdateTest.java b/doma-core/src/test/java/org/seasar/doma/jdbc/criteria/QueryDslEntityUpdateTest.java index e747fed75..f9b4c3a89 100644 --- a/doma-core/src/test/java/org/seasar/doma/jdbc/criteria/QueryDslEntityUpdateTest.java +++ b/doma-core/src/test/java/org/seasar/doma/jdbc/criteria/QueryDslEntityUpdateTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/jdbc/criteria/QueryDslSqlDeleteTest.java b/doma-core/src/test/java/org/seasar/doma/jdbc/criteria/QueryDslSqlDeleteTest.java index cdc447ff9..bcb0e77cd 100644 --- a/doma-core/src/test/java/org/seasar/doma/jdbc/criteria/QueryDslSqlDeleteTest.java +++ b/doma-core/src/test/java/org/seasar/doma/jdbc/criteria/QueryDslSqlDeleteTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/jdbc/criteria/QueryDslSqlInsertTest.java b/doma-core/src/test/java/org/seasar/doma/jdbc/criteria/QueryDslSqlInsertTest.java index e5516e845..ff59d6c35 100644 --- a/doma-core/src/test/java/org/seasar/doma/jdbc/criteria/QueryDslSqlInsertTest.java +++ b/doma-core/src/test/java/org/seasar/doma/jdbc/criteria/QueryDslSqlInsertTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/jdbc/criteria/QueryDslSqlSelectTest.java b/doma-core/src/test/java/org/seasar/doma/jdbc/criteria/QueryDslSqlSelectTest.java index e37bdbf8e..81a7c651b 100644 --- a/doma-core/src/test/java/org/seasar/doma/jdbc/criteria/QueryDslSqlSelectTest.java +++ b/doma-core/src/test/java/org/seasar/doma/jdbc/criteria/QueryDslSqlSelectTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/jdbc/criteria/QueryDslSqlUpdateTest.java b/doma-core/src/test/java/org/seasar/doma/jdbc/criteria/QueryDslSqlUpdateTest.java index c5fcad21d..f0d6bf907 100644 --- a/doma-core/src/test/java/org/seasar/doma/jdbc/criteria/QueryDslSqlUpdateTest.java +++ b/doma-core/src/test/java/org/seasar/doma/jdbc/criteria/QueryDslSqlUpdateTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/jdbc/criteria/command/EntityKeyTest.java b/doma-core/src/test/java/org/seasar/doma/jdbc/criteria/command/EntityKeyTest.java index e1ad18850..05dd19e27 100644 --- a/doma-core/src/test/java/org/seasar/doma/jdbc/criteria/command/EntityKeyTest.java +++ b/doma-core/src/test/java/org/seasar/doma/jdbc/criteria/command/EntityKeyTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.command; import static org.junit.jupiter.api.Assertions.*; diff --git a/doma-core/src/test/java/org/seasar/doma/jdbc/criteria/entity/Dept.java b/doma-core/src/test/java/org/seasar/doma/jdbc/criteria/entity/Dept.java index 8e9efd321..823d9adac 100644 --- a/doma-core/src/test/java/org/seasar/doma/jdbc/criteria/entity/Dept.java +++ b/doma-core/src/test/java/org/seasar/doma/jdbc/criteria/entity/Dept.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.entity; import java.io.Serial; diff --git a/doma-core/src/test/java/org/seasar/doma/jdbc/criteria/entity/Dept_.java b/doma-core/src/test/java/org/seasar/doma/jdbc/criteria/entity/Dept_.java index bc55d3d00..9e6143a1d 100644 --- a/doma-core/src/test/java/org/seasar/doma/jdbc/criteria/entity/Dept_.java +++ b/doma-core/src/test/java/org/seasar/doma/jdbc/criteria/entity/Dept_.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.entity; import java.util.Arrays; diff --git a/doma-core/src/test/java/org/seasar/doma/jdbc/criteria/entity/Emp.java b/doma-core/src/test/java/org/seasar/doma/jdbc/criteria/entity/Emp.java index a181f4391..526760203 100644 --- a/doma-core/src/test/java/org/seasar/doma/jdbc/criteria/entity/Emp.java +++ b/doma-core/src/test/java/org/seasar/doma/jdbc/criteria/entity/Emp.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.entity; import java.io.Serial; diff --git a/doma-core/src/test/java/org/seasar/doma/jdbc/criteria/entity/Emp_.java b/doma-core/src/test/java/org/seasar/doma/jdbc/criteria/entity/Emp_.java index 615b21224..72d76040d 100644 --- a/doma-core/src/test/java/org/seasar/doma/jdbc/criteria/entity/Emp_.java +++ b/doma-core/src/test/java/org/seasar/doma/jdbc/criteria/entity/Emp_.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.entity; import java.math.BigDecimal; diff --git a/doma-core/src/test/java/org/seasar/doma/jdbc/criteria/entity/NoIdEmp.java b/doma-core/src/test/java/org/seasar/doma/jdbc/criteria/entity/NoIdEmp.java index 130bbca47..e024d4c05 100644 --- a/doma-core/src/test/java/org/seasar/doma/jdbc/criteria/entity/NoIdEmp.java +++ b/doma-core/src/test/java/org/seasar/doma/jdbc/criteria/entity/NoIdEmp.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.entity; import java.math.BigDecimal; diff --git a/doma-core/src/test/java/org/seasar/doma/jdbc/criteria/entity/NoIdEmp_.java b/doma-core/src/test/java/org/seasar/doma/jdbc/criteria/entity/NoIdEmp_.java index a5a1602ef..18de2380f 100644 --- a/doma-core/src/test/java/org/seasar/doma/jdbc/criteria/entity/NoIdEmp_.java +++ b/doma-core/src/test/java/org/seasar/doma/jdbc/criteria/entity/NoIdEmp_.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.entity; import java.math.BigDecimal; diff --git a/doma-core/src/test/java/org/seasar/doma/jdbc/criteria/entity/_Dept.java b/doma-core/src/test/java/org/seasar/doma/jdbc/criteria/entity/_Dept.java index bcccdac05..fbd32904e 100644 --- a/doma-core/src/test/java/org/seasar/doma/jdbc/criteria/entity/_Dept.java +++ b/doma-core/src/test/java/org/seasar/doma/jdbc/criteria/entity/_Dept.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.entity; import java.util.ArrayList; diff --git a/doma-core/src/test/java/org/seasar/doma/jdbc/criteria/entity/_Emp.java b/doma-core/src/test/java/org/seasar/doma/jdbc/criteria/entity/_Emp.java index dd6a5ee8d..43307b385 100644 --- a/doma-core/src/test/java/org/seasar/doma/jdbc/criteria/entity/_Emp.java +++ b/doma-core/src/test/java/org/seasar/doma/jdbc/criteria/entity/_Emp.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.entity; import java.math.BigDecimal; diff --git a/doma-core/src/test/java/org/seasar/doma/jdbc/criteria/entity/_NoIdEmp.java b/doma-core/src/test/java/org/seasar/doma/jdbc/criteria/entity/_NoIdEmp.java index 7ccff2cff..f7d4fddcb 100644 --- a/doma-core/src/test/java/org/seasar/doma/jdbc/criteria/entity/_NoIdEmp.java +++ b/doma-core/src/test/java/org/seasar/doma/jdbc/criteria/entity/_NoIdEmp.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.entity; import java.math.BigDecimal; diff --git a/doma-core/src/test/java/org/seasar/doma/jdbc/criteria/expression/ExpressionsTest.java b/doma-core/src/test/java/org/seasar/doma/jdbc/criteria/expression/ExpressionsTest.java index d86378a00..1867f1f3a 100644 --- a/doma-core/src/test/java/org/seasar/doma/jdbc/criteria/expression/ExpressionsTest.java +++ b/doma-core/src/test/java/org/seasar/doma/jdbc/criteria/expression/ExpressionsTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.expression; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/jdbc/criteria/query/AliasManagerTest.java b/doma-core/src/test/java/org/seasar/doma/jdbc/criteria/query/AliasManagerTest.java index f5426c8e9..303658a48 100644 --- a/doma-core/src/test/java/org/seasar/doma/jdbc/criteria/query/AliasManagerTest.java +++ b/doma-core/src/test/java/org/seasar/doma/jdbc/criteria/query/AliasManagerTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.query; import java.util.Arrays; diff --git a/doma-core/src/test/java/org/seasar/doma/jdbc/criteria/tuple/Tuple2Test.java b/doma-core/src/test/java/org/seasar/doma/jdbc/criteria/tuple/Tuple2Test.java index 54926f93d..67c4776a4 100644 --- a/doma-core/src/test/java/org/seasar/doma/jdbc/criteria/tuple/Tuple2Test.java +++ b/doma-core/src/test/java/org/seasar/doma/jdbc/criteria/tuple/Tuple2Test.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.tuple; import static org.junit.jupiter.api.Assertions.*; diff --git a/doma-core/src/test/java/org/seasar/doma/jdbc/criteria/tuple/Tuple3Test.java b/doma-core/src/test/java/org/seasar/doma/jdbc/criteria/tuple/Tuple3Test.java index 70bce26a4..bfdaae4d6 100644 --- a/doma-core/src/test/java/org/seasar/doma/jdbc/criteria/tuple/Tuple3Test.java +++ b/doma-core/src/test/java/org/seasar/doma/jdbc/criteria/tuple/Tuple3Test.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.tuple; import static org.junit.jupiter.api.Assertions.*; diff --git a/doma-core/src/test/java/org/seasar/doma/jdbc/criteria/tuple/Tuple4Test.java b/doma-core/src/test/java/org/seasar/doma/jdbc/criteria/tuple/Tuple4Test.java index c11760c86..53a988b60 100644 --- a/doma-core/src/test/java/org/seasar/doma/jdbc/criteria/tuple/Tuple4Test.java +++ b/doma-core/src/test/java/org/seasar/doma/jdbc/criteria/tuple/Tuple4Test.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.tuple; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/jdbc/criteria/tuple/Tuple5Test.java b/doma-core/src/test/java/org/seasar/doma/jdbc/criteria/tuple/Tuple5Test.java index 1eea0d888..98c8d57fb 100644 --- a/doma-core/src/test/java/org/seasar/doma/jdbc/criteria/tuple/Tuple5Test.java +++ b/doma-core/src/test/java/org/seasar/doma/jdbc/criteria/tuple/Tuple5Test.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.tuple; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/jdbc/criteria/tuple/Tuple6Test.java b/doma-core/src/test/java/org/seasar/doma/jdbc/criteria/tuple/Tuple6Test.java index 7c5dfe34f..2623cc325 100644 --- a/doma-core/src/test/java/org/seasar/doma/jdbc/criteria/tuple/Tuple6Test.java +++ b/doma-core/src/test/java/org/seasar/doma/jdbc/criteria/tuple/Tuple6Test.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.tuple; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/jdbc/criteria/tuple/Tuple7Test.java b/doma-core/src/test/java/org/seasar/doma/jdbc/criteria/tuple/Tuple7Test.java index abc70c7a5..b2a5762d4 100644 --- a/doma-core/src/test/java/org/seasar/doma/jdbc/criteria/tuple/Tuple7Test.java +++ b/doma-core/src/test/java/org/seasar/doma/jdbc/criteria/tuple/Tuple7Test.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.tuple; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/jdbc/criteria/tuple/Tuple8Test.java b/doma-core/src/test/java/org/seasar/doma/jdbc/criteria/tuple/Tuple8Test.java index 5479202db..e2dd30081 100644 --- a/doma-core/src/test/java/org/seasar/doma/jdbc/criteria/tuple/Tuple8Test.java +++ b/doma-core/src/test/java/org/seasar/doma/jdbc/criteria/tuple/Tuple8Test.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.tuple; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/jdbc/criteria/tuple/Tuple9Test.java b/doma-core/src/test/java/org/seasar/doma/jdbc/criteria/tuple/Tuple9Test.java index 1dc89f3e2..bf0b0823f 100644 --- a/doma-core/src/test/java/org/seasar/doma/jdbc/criteria/tuple/Tuple9Test.java +++ b/doma-core/src/test/java/org/seasar/doma/jdbc/criteria/tuple/Tuple9Test.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.tuple; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/jdbc/dialect/Db2DialectTest.java b/doma-core/src/test/java/org/seasar/doma/jdbc/dialect/Db2DialectTest.java index 875c750b4..2becbba4e 100644 --- a/doma-core/src/test/java/org/seasar/doma/jdbc/dialect/Db2DialectTest.java +++ b/doma-core/src/test/java/org/seasar/doma/jdbc/dialect/Db2DialectTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.dialect; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/jdbc/dialect/Mssql2008DialectTest.java b/doma-core/src/test/java/org/seasar/doma/jdbc/dialect/Mssql2008DialectTest.java index 9272a73f7..cb81c9b23 100644 --- a/doma-core/src/test/java/org/seasar/doma/jdbc/dialect/Mssql2008DialectTest.java +++ b/doma-core/src/test/java/org/seasar/doma/jdbc/dialect/Mssql2008DialectTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.dialect; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/jdbc/dialect/Oracle11DialectTest.java b/doma-core/src/test/java/org/seasar/doma/jdbc/dialect/Oracle11DialectTest.java index c5d9f41a6..34cbca018 100644 --- a/doma-core/src/test/java/org/seasar/doma/jdbc/dialect/Oracle11DialectTest.java +++ b/doma-core/src/test/java/org/seasar/doma/jdbc/dialect/Oracle11DialectTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.dialect; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/jdbc/dialect/OracleDialectTest.java b/doma-core/src/test/java/org/seasar/doma/jdbc/dialect/OracleDialectTest.java index de067901e..083dd6fcf 100644 --- a/doma-core/src/test/java/org/seasar/doma/jdbc/dialect/OracleDialectTest.java +++ b/doma-core/src/test/java/org/seasar/doma/jdbc/dialect/OracleDialectTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.dialect; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/jdbc/dialect/PostgresDialectTest.java b/doma-core/src/test/java/org/seasar/doma/jdbc/dialect/PostgresDialectTest.java index 4438a49f4..23cd20459 100644 --- a/doma-core/src/test/java/org/seasar/doma/jdbc/dialect/PostgresDialectTest.java +++ b/doma-core/src/test/java/org/seasar/doma/jdbc/dialect/PostgresDialectTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.dialect; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/jdbc/dialect/SqliteDialectTest.java b/doma-core/src/test/java/org/seasar/doma/jdbc/dialect/SqliteDialectTest.java index 723075a05..e68ba45d6 100644 --- a/doma-core/src/test/java/org/seasar/doma/jdbc/dialect/SqliteDialectTest.java +++ b/doma-core/src/test/java/org/seasar/doma/jdbc/dialect/SqliteDialectTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.dialect; import static org.junit.jupiter.api.Assertions.assertFalse; diff --git a/doma-core/src/test/java/org/seasar/doma/jdbc/dialect/StandardDialectTest.java b/doma-core/src/test/java/org/seasar/doma/jdbc/dialect/StandardDialectTest.java index c147cee9e..559fe5cf3 100644 --- a/doma-core/src/test/java/org/seasar/doma/jdbc/dialect/StandardDialectTest.java +++ b/doma-core/src/test/java/org/seasar/doma/jdbc/dialect/StandardDialectTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.dialect; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/jdbc/domain/DomainTypeFactoryTest.java b/doma-core/src/test/java/org/seasar/doma/jdbc/domain/DomainTypeFactoryTest.java index a5d5092d3..00dc2aaed 100644 --- a/doma-core/src/test/java/org/seasar/doma/jdbc/domain/DomainTypeFactoryTest.java +++ b/doma-core/src/test/java/org/seasar/doma/jdbc/domain/DomainTypeFactoryTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.domain; import static org.junit.jupiter.api.Assertions.assertNotNull; diff --git a/doma-core/src/test/java/org/seasar/doma/jdbc/domain/DomainTypeNotFoundExceptionTest.java b/doma-core/src/test/java/org/seasar/doma/jdbc/domain/DomainTypeNotFoundExceptionTest.java index 82049465a..59be4077b 100644 --- a/doma-core/src/test/java/org/seasar/doma/jdbc/domain/DomainTypeNotFoundExceptionTest.java +++ b/doma-core/src/test/java/org/seasar/doma/jdbc/domain/DomainTypeNotFoundExceptionTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.domain; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/jdbc/domain/Job.java b/doma-core/src/test/java/org/seasar/doma/jdbc/domain/Job.java index 07ee07150..cba75a7bd 100644 --- a/doma-core/src/test/java/org/seasar/doma/jdbc/domain/Job.java +++ b/doma-core/src/test/java/org/seasar/doma/jdbc/domain/Job.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.domain; public class Job {} diff --git a/doma-core/src/test/java/org/seasar/doma/jdbc/domain/Money.java b/doma-core/src/test/java/org/seasar/doma/jdbc/domain/Money.java index 90e2ff063..e2e16eae8 100644 --- a/doma-core/src/test/java/org/seasar/doma/jdbc/domain/Money.java +++ b/doma-core/src/test/java/org/seasar/doma/jdbc/domain/Money.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.domain; import java.math.BigDecimal; diff --git a/doma-core/src/test/java/org/seasar/doma/jdbc/entity/DefaultPropertyTypeTest.java b/doma-core/src/test/java/org/seasar/doma/jdbc/entity/DefaultPropertyTypeTest.java index ac9dfbf74..1a1044f09 100644 --- a/doma-core/src/test/java/org/seasar/doma/jdbc/entity/DefaultPropertyTypeTest.java +++ b/doma-core/src/test/java/org/seasar/doma/jdbc/entity/DefaultPropertyTypeTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.entity; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/jdbc/entity/Dept.java b/doma-core/src/test/java/org/seasar/doma/jdbc/entity/Dept.java index cf60f4aa8..f743f5783 100644 --- a/doma-core/src/test/java/org/seasar/doma/jdbc/entity/Dept.java +++ b/doma-core/src/test/java/org/seasar/doma/jdbc/entity/Dept.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.entity; import org.seasar.doma.Entity; diff --git a/doma-core/src/test/java/org/seasar/doma/jdbc/entity/EntityPropertyAccessExceptionTest.java b/doma-core/src/test/java/org/seasar/doma/jdbc/entity/EntityPropertyAccessExceptionTest.java index e044e759a..8274d6232 100644 --- a/doma-core/src/test/java/org/seasar/doma/jdbc/entity/EntityPropertyAccessExceptionTest.java +++ b/doma-core/src/test/java/org/seasar/doma/jdbc/entity/EntityPropertyAccessExceptionTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.entity; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/jdbc/entity/EntityPropertyNotFoundExceptionTest.java b/doma-core/src/test/java/org/seasar/doma/jdbc/entity/EntityPropertyNotFoundExceptionTest.java index 0efe9b46d..c8d359df6 100644 --- a/doma-core/src/test/java/org/seasar/doma/jdbc/entity/EntityPropertyNotFoundExceptionTest.java +++ b/doma-core/src/test/java/org/seasar/doma/jdbc/entity/EntityPropertyNotFoundExceptionTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.entity; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/jdbc/entity/EntityTypeFactoryTest.java b/doma-core/src/test/java/org/seasar/doma/jdbc/entity/EntityTypeFactoryTest.java index c07b548cc..ed59a8532 100644 --- a/doma-core/src/test/java/org/seasar/doma/jdbc/entity/EntityTypeFactoryTest.java +++ b/doma-core/src/test/java/org/seasar/doma/jdbc/entity/EntityTypeFactoryTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.entity; import static org.junit.jupiter.api.Assertions.assertNotNull; diff --git a/doma-core/src/test/java/org/seasar/doma/jdbc/entity/EntityTypeNotFoundExceptionTest.java b/doma-core/src/test/java/org/seasar/doma/jdbc/entity/EntityTypeNotFoundExceptionTest.java index 16bd7e248..e9edbb5e8 100644 --- a/doma-core/src/test/java/org/seasar/doma/jdbc/entity/EntityTypeNotFoundExceptionTest.java +++ b/doma-core/src/test/java/org/seasar/doma/jdbc/entity/EntityTypeNotFoundExceptionTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.entity; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/jdbc/entity/EntityTypeTest.java b/doma-core/src/test/java/org/seasar/doma/jdbc/entity/EntityTypeTest.java index 2239f65da..6e080674b 100644 --- a/doma-core/src/test/java/org/seasar/doma/jdbc/entity/EntityTypeTest.java +++ b/doma-core/src/test/java/org/seasar/doma/jdbc/entity/EntityTypeTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.entity; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/jdbc/entity/NotTopLevelEntity.java b/doma-core/src/test/java/org/seasar/doma/jdbc/entity/NotTopLevelEntity.java index a60438b0b..b0166653d 100644 --- a/doma-core/src/test/java/org/seasar/doma/jdbc/entity/NotTopLevelEntity.java +++ b/doma-core/src/test/java/org/seasar/doma/jdbc/entity/NotTopLevelEntity.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.entity; import org.seasar.doma.Entity; diff --git a/doma-core/src/test/java/org/seasar/doma/jdbc/entity/OriginalStatesAccessExceptionTest.java b/doma-core/src/test/java/org/seasar/doma/jdbc/entity/OriginalStatesAccessExceptionTest.java index 08ce34047..99ac28093 100644 --- a/doma-core/src/test/java/org/seasar/doma/jdbc/entity/OriginalStatesAccessExceptionTest.java +++ b/doma-core/src/test/java/org/seasar/doma/jdbc/entity/OriginalStatesAccessExceptionTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.entity; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/jdbc/entity/OriginalStatesAccessorTest.java b/doma-core/src/test/java/org/seasar/doma/jdbc/entity/OriginalStatesAccessorTest.java index 7f6d66262..803091aad 100644 --- a/doma-core/src/test/java/org/seasar/doma/jdbc/entity/OriginalStatesAccessorTest.java +++ b/doma-core/src/test/java/org/seasar/doma/jdbc/entity/OriginalStatesAccessorTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.entity; import static org.junit.jupiter.api.Assertions.assertSame; diff --git a/doma-core/src/test/java/org/seasar/doma/jdbc/entity/OriginalStatesNotFoundExceptionTest.java b/doma-core/src/test/java/org/seasar/doma/jdbc/entity/OriginalStatesNotFoundExceptionTest.java index 469687e56..39b54540e 100644 --- a/doma-core/src/test/java/org/seasar/doma/jdbc/entity/OriginalStatesNotFoundExceptionTest.java +++ b/doma-core/src/test/java/org/seasar/doma/jdbc/entity/OriginalStatesNotFoundExceptionTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.entity; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/jdbc/entity/_NotTopLevelEntity__Hoge.java b/doma-core/src/test/java/org/seasar/doma/jdbc/entity/_NotTopLevelEntity__Hoge.java index 8b7807309..8b4d230dd 100644 --- a/doma-core/src/test/java/org/seasar/doma/jdbc/entity/_NotTopLevelEntity__Hoge.java +++ b/doma-core/src/test/java/org/seasar/doma/jdbc/entity/_NotTopLevelEntity__Hoge.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.entity; /** */ diff --git a/doma-core/src/test/java/org/seasar/doma/jdbc/id/BuiltinIdentityIdGeneratorTest.java b/doma-core/src/test/java/org/seasar/doma/jdbc/id/BuiltinIdentityIdGeneratorTest.java index b992827c4..094a6956c 100644 --- a/doma-core/src/test/java/org/seasar/doma/jdbc/id/BuiltinIdentityIdGeneratorTest.java +++ b/doma-core/src/test/java/org/seasar/doma/jdbc/id/BuiltinIdentityIdGeneratorTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.id; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/jdbc/id/BuiltinSequenceIdGeneratorTest.java b/doma-core/src/test/java/org/seasar/doma/jdbc/id/BuiltinSequenceIdGeneratorTest.java index 316f79bf3..5e388a9f7 100644 --- a/doma-core/src/test/java/org/seasar/doma/jdbc/id/BuiltinSequenceIdGeneratorTest.java +++ b/doma-core/src/test/java/org/seasar/doma/jdbc/id/BuiltinSequenceIdGeneratorTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.id; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/jdbc/id/BuiltinTableIdGeneratorTest.java b/doma-core/src/test/java/org/seasar/doma/jdbc/id/BuiltinTableIdGeneratorTest.java index 98c2f76a0..a7d8499a6 100644 --- a/doma-core/src/test/java/org/seasar/doma/jdbc/id/BuiltinTableIdGeneratorTest.java +++ b/doma-core/src/test/java/org/seasar/doma/jdbc/id/BuiltinTableIdGeneratorTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.id; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/jdbc/query/ArrayCreateQueryTest.java b/doma-core/src/test/java/org/seasar/doma/jdbc/query/ArrayCreateQueryTest.java index 205701e6f..a77774ab6 100644 --- a/doma-core/src/test/java/org/seasar/doma/jdbc/query/ArrayCreateQueryTest.java +++ b/doma-core/src/test/java/org/seasar/doma/jdbc/query/ArrayCreateQueryTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.query; import org.junit.jupiter.api.Test; diff --git a/doma-core/src/test/java/org/seasar/doma/jdbc/query/AutoBatchDeleteQueryTest.java b/doma-core/src/test/java/org/seasar/doma/jdbc/query/AutoBatchDeleteQueryTest.java index 4de9dbbdc..b61e61f37 100644 --- a/doma-core/src/test/java/org/seasar/doma/jdbc/query/AutoBatchDeleteQueryTest.java +++ b/doma-core/src/test/java/org/seasar/doma/jdbc/query/AutoBatchDeleteQueryTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.query; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/jdbc/query/AutoBatchInsertQueryTest.java b/doma-core/src/test/java/org/seasar/doma/jdbc/query/AutoBatchInsertQueryTest.java index 3cfd04d39..f1de9c590 100644 --- a/doma-core/src/test/java/org/seasar/doma/jdbc/query/AutoBatchInsertQueryTest.java +++ b/doma-core/src/test/java/org/seasar/doma/jdbc/query/AutoBatchInsertQueryTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.query; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/jdbc/query/AutoBatchUpdateQueryTest.java b/doma-core/src/test/java/org/seasar/doma/jdbc/query/AutoBatchUpdateQueryTest.java index 3dffcdc8e..7eaaefe53 100644 --- a/doma-core/src/test/java/org/seasar/doma/jdbc/query/AutoBatchUpdateQueryTest.java +++ b/doma-core/src/test/java/org/seasar/doma/jdbc/query/AutoBatchUpdateQueryTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.query; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/jdbc/query/AutoDeleteQueryTest.java b/doma-core/src/test/java/org/seasar/doma/jdbc/query/AutoDeleteQueryTest.java index c677b2ca8..e1484f4a1 100644 --- a/doma-core/src/test/java/org/seasar/doma/jdbc/query/AutoDeleteQueryTest.java +++ b/doma-core/src/test/java/org/seasar/doma/jdbc/query/AutoDeleteQueryTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.query; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/jdbc/query/AutoFunctionQueryTest.java b/doma-core/src/test/java/org/seasar/doma/jdbc/query/AutoFunctionQueryTest.java index 103a37f98..b55950658 100644 --- a/doma-core/src/test/java/org/seasar/doma/jdbc/query/AutoFunctionQueryTest.java +++ b/doma-core/src/test/java/org/seasar/doma/jdbc/query/AutoFunctionQueryTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.query; import static org.junit.jupiter.api.Assertions.assertNotNull; diff --git a/doma-core/src/test/java/org/seasar/doma/jdbc/query/AutoInsertQueryTest.java b/doma-core/src/test/java/org/seasar/doma/jdbc/query/AutoInsertQueryTest.java index a3fc02c52..da35ed394 100644 --- a/doma-core/src/test/java/org/seasar/doma/jdbc/query/AutoInsertQueryTest.java +++ b/doma-core/src/test/java/org/seasar/doma/jdbc/query/AutoInsertQueryTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.query; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/jdbc/query/AutoMultiInsertQueryTest.java b/doma-core/src/test/java/org/seasar/doma/jdbc/query/AutoMultiInsertQueryTest.java index c41dcc13f..76463528f 100644 --- a/doma-core/src/test/java/org/seasar/doma/jdbc/query/AutoMultiInsertQueryTest.java +++ b/doma-core/src/test/java/org/seasar/doma/jdbc/query/AutoMultiInsertQueryTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.query; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/jdbc/query/AutoUpdateQueryTest.java b/doma-core/src/test/java/org/seasar/doma/jdbc/query/AutoUpdateQueryTest.java index 593c44c97..ca0d4098a 100644 --- a/doma-core/src/test/java/org/seasar/doma/jdbc/query/AutoUpdateQueryTest.java +++ b/doma-core/src/test/java/org/seasar/doma/jdbc/query/AutoUpdateQueryTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.query; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/jdbc/query/SqlFileBatchDeleteQueryTest.java b/doma-core/src/test/java/org/seasar/doma/jdbc/query/SqlFileBatchDeleteQueryTest.java index a306661db..8a67053a0 100644 --- a/doma-core/src/test/java/org/seasar/doma/jdbc/query/SqlFileBatchDeleteQueryTest.java +++ b/doma-core/src/test/java/org/seasar/doma/jdbc/query/SqlFileBatchDeleteQueryTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.query; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/jdbc/query/SqlFileBatchInsertQueryTest.java b/doma-core/src/test/java/org/seasar/doma/jdbc/query/SqlFileBatchInsertQueryTest.java index 1bde7c583..2a0dff8b6 100644 --- a/doma-core/src/test/java/org/seasar/doma/jdbc/query/SqlFileBatchInsertQueryTest.java +++ b/doma-core/src/test/java/org/seasar/doma/jdbc/query/SqlFileBatchInsertQueryTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.query; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/jdbc/query/SqlFileBatchUpdateQueryTest.java b/doma-core/src/test/java/org/seasar/doma/jdbc/query/SqlFileBatchUpdateQueryTest.java index 6c1d29316..bb08ce2ac 100644 --- a/doma-core/src/test/java/org/seasar/doma/jdbc/query/SqlFileBatchUpdateQueryTest.java +++ b/doma-core/src/test/java/org/seasar/doma/jdbc/query/SqlFileBatchUpdateQueryTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.query; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/jdbc/query/SqlFileScriptQueryTest.java b/doma-core/src/test/java/org/seasar/doma/jdbc/query/SqlFileScriptQueryTest.java index 61c665ae6..bff667b24 100644 --- a/doma-core/src/test/java/org/seasar/doma/jdbc/query/SqlFileScriptQueryTest.java +++ b/doma-core/src/test/java/org/seasar/doma/jdbc/query/SqlFileScriptQueryTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.query; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/jdbc/query/SqlFileUpdateQueryTest.java b/doma-core/src/test/java/org/seasar/doma/jdbc/query/SqlFileUpdateQueryTest.java index ebf9e686f..835236d5e 100644 --- a/doma-core/src/test/java/org/seasar/doma/jdbc/query/SqlFileUpdateQueryTest.java +++ b/doma-core/src/test/java/org/seasar/doma/jdbc/query/SqlFileUpdateQueryTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.query; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/jdbc/query/UpsertAssemblerContextBuilderTest.java b/doma-core/src/test/java/org/seasar/doma/jdbc/query/UpsertAssemblerContextBuilderTest.java index eb24c3f35..204424b70 100644 --- a/doma-core/src/test/java/org/seasar/doma/jdbc/query/UpsertAssemblerContextBuilderTest.java +++ b/doma-core/src/test/java/org/seasar/doma/jdbc/query/UpsertAssemblerContextBuilderTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.query; import static java.util.stream.Collectors.toList; diff --git a/doma-core/src/test/java/org/seasar/doma/jdbc/statistic/DefaultStatisticManagerTest.java b/doma-core/src/test/java/org/seasar/doma/jdbc/statistic/DefaultStatisticManagerTest.java index c802fd4c0..1e4a15e4b 100644 --- a/doma-core/src/test/java/org/seasar/doma/jdbc/statistic/DefaultStatisticManagerTest.java +++ b/doma-core/src/test/java/org/seasar/doma/jdbc/statistic/DefaultStatisticManagerTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.statistic; import static org.junit.jupiter.api.Assertions.*; diff --git a/doma-core/src/test/java/org/seasar/doma/jdbc/statistic/StatisticTest.java b/doma-core/src/test/java/org/seasar/doma/jdbc/statistic/StatisticTest.java index aa5076bd6..dd1bc8269 100644 --- a/doma-core/src/test/java/org/seasar/doma/jdbc/statistic/StatisticTest.java +++ b/doma-core/src/test/java/org/seasar/doma/jdbc/statistic/StatisticTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.statistic; import static org.junit.jupiter.api.Assertions.*; diff --git a/doma-core/src/test/java/org/seasar/doma/jdbc/tx/KeepAliveLocalTransactionTest.java b/doma-core/src/test/java/org/seasar/doma/jdbc/tx/KeepAliveLocalTransactionTest.java index 66c203738..52d7a3483 100644 --- a/doma-core/src/test/java/org/seasar/doma/jdbc/tx/KeepAliveLocalTransactionTest.java +++ b/doma-core/src/test/java/org/seasar/doma/jdbc/tx/KeepAliveLocalTransactionTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.tx; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/jdbc/tx/LocalTransactionConnectionTest.java b/doma-core/src/test/java/org/seasar/doma/jdbc/tx/LocalTransactionConnectionTest.java index d16f4f670..f022415ce 100644 --- a/doma-core/src/test/java/org/seasar/doma/jdbc/tx/LocalTransactionConnectionTest.java +++ b/doma-core/src/test/java/org/seasar/doma/jdbc/tx/LocalTransactionConnectionTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.tx; import static org.junit.jupiter.api.Assertions.assertFalse; diff --git a/doma-core/src/test/java/org/seasar/doma/jdbc/tx/LocalTransactionContextTest.java b/doma-core/src/test/java/org/seasar/doma/jdbc/tx/LocalTransactionContextTest.java index edff46cc0..15acfcb39 100644 --- a/doma-core/src/test/java/org/seasar/doma/jdbc/tx/LocalTransactionContextTest.java +++ b/doma-core/src/test/java/org/seasar/doma/jdbc/tx/LocalTransactionContextTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.tx; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/jdbc/tx/LocalTransactionDataSourceTest.java b/doma-core/src/test/java/org/seasar/doma/jdbc/tx/LocalTransactionDataSourceTest.java index b8056eba6..88f92d474 100644 --- a/doma-core/src/test/java/org/seasar/doma/jdbc/tx/LocalTransactionDataSourceTest.java +++ b/doma-core/src/test/java/org/seasar/doma/jdbc/tx/LocalTransactionDataSourceTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.tx; import static org.junit.jupiter.api.Assertions.assertFalse; diff --git a/doma-core/src/test/java/org/seasar/doma/jdbc/tx/LocalTransactionManagerTest.java b/doma-core/src/test/java/org/seasar/doma/jdbc/tx/LocalTransactionManagerTest.java index d1c03bdbd..271b1144c 100644 --- a/doma-core/src/test/java/org/seasar/doma/jdbc/tx/LocalTransactionManagerTest.java +++ b/doma-core/src/test/java/org/seasar/doma/jdbc/tx/LocalTransactionManagerTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.tx; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/jdbc/tx/LocalTransactionTest.java b/doma-core/src/test/java/org/seasar/doma/jdbc/tx/LocalTransactionTest.java index 8a68ed27d..d896257c3 100644 --- a/doma-core/src/test/java/org/seasar/doma/jdbc/tx/LocalTransactionTest.java +++ b/doma-core/src/test/java/org/seasar/doma/jdbc/tx/LocalTransactionTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.tx; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/message/MessageTest.java b/doma-core/src/test/java/org/seasar/doma/message/MessageTest.java index 76a2e351d..56dc0c4b7 100644 --- a/doma-core/src/test/java/org/seasar/doma/message/MessageTest.java +++ b/doma-core/src/test/java/org/seasar/doma/message/MessageTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.message; import static org.junit.jupiter.api.Assertions.assertNotNull; diff --git a/doma-core/src/test/java/org/seasar/doma/util/ThrowingSupplierTest.java b/doma-core/src/test/java/org/seasar/doma/util/ThrowingSupplierTest.java index bf470cfb6..fe71bb018 100644 --- a/doma-core/src/test/java/org/seasar/doma/util/ThrowingSupplierTest.java +++ b/doma-core/src/test/java/org/seasar/doma/util/ThrowingSupplierTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.util; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/wrapper/BigDecimalWrapperTest.java b/doma-core/src/test/java/org/seasar/doma/wrapper/BigDecimalWrapperTest.java index ae673f76d..c1f1e3f23 100644 --- a/doma-core/src/test/java/org/seasar/doma/wrapper/BigDecimalWrapperTest.java +++ b/doma-core/src/test/java/org/seasar/doma/wrapper/BigDecimalWrapperTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.wrapper; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/wrapper/BigIntegerWrapperTest.java b/doma-core/src/test/java/org/seasar/doma/wrapper/BigIntegerWrapperTest.java index c2c7058a4..8f91d7a8f 100644 --- a/doma-core/src/test/java/org/seasar/doma/wrapper/BigIntegerWrapperTest.java +++ b/doma-core/src/test/java/org/seasar/doma/wrapper/BigIntegerWrapperTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.wrapper; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/wrapper/ByteWrapperTest.java b/doma-core/src/test/java/org/seasar/doma/wrapper/ByteWrapperTest.java index 97a5867ef..edb7279f3 100644 --- a/doma-core/src/test/java/org/seasar/doma/wrapper/ByteWrapperTest.java +++ b/doma-core/src/test/java/org/seasar/doma/wrapper/ByteWrapperTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.wrapper; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/wrapper/DoubleWrapperTest.java b/doma-core/src/test/java/org/seasar/doma/wrapper/DoubleWrapperTest.java index 05f796638..9d8f3e1aa 100644 --- a/doma-core/src/test/java/org/seasar/doma/wrapper/DoubleWrapperTest.java +++ b/doma-core/src/test/java/org/seasar/doma/wrapper/DoubleWrapperTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.wrapper; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/wrapper/FloatWrapperTest.java b/doma-core/src/test/java/org/seasar/doma/wrapper/FloatWrapperTest.java index 7c44146d0..15f00596d 100644 --- a/doma-core/src/test/java/org/seasar/doma/wrapper/FloatWrapperTest.java +++ b/doma-core/src/test/java/org/seasar/doma/wrapper/FloatWrapperTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.wrapper; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/wrapper/IntegerWrapperTest.java b/doma-core/src/test/java/org/seasar/doma/wrapper/IntegerWrapperTest.java index 613561047..9c39ac9bc 100644 --- a/doma-core/src/test/java/org/seasar/doma/wrapper/IntegerWrapperTest.java +++ b/doma-core/src/test/java/org/seasar/doma/wrapper/IntegerWrapperTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.wrapper; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/wrapper/LongWrapperTest.java b/doma-core/src/test/java/org/seasar/doma/wrapper/LongWrapperTest.java index 2df6ce129..8d41e954b 100644 --- a/doma-core/src/test/java/org/seasar/doma/wrapper/LongWrapperTest.java +++ b/doma-core/src/test/java/org/seasar/doma/wrapper/LongWrapperTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.wrapper; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-core/src/test/java/org/seasar/doma/wrapper/PrimitiveBooleanWrapperTest.java b/doma-core/src/test/java/org/seasar/doma/wrapper/PrimitiveBooleanWrapperTest.java index e49147190..f806a2ac9 100644 --- a/doma-core/src/test/java/org/seasar/doma/wrapper/PrimitiveBooleanWrapperTest.java +++ b/doma-core/src/test/java/org/seasar/doma/wrapper/PrimitiveBooleanWrapperTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.wrapper; import static org.junit.jupiter.api.Assertions.*; diff --git a/doma-core/src/test/java/org/seasar/doma/wrapper/PrimitiveByteWrapperTest.java b/doma-core/src/test/java/org/seasar/doma/wrapper/PrimitiveByteWrapperTest.java index 8e3636e3d..8f7c9c6b8 100644 --- a/doma-core/src/test/java/org/seasar/doma/wrapper/PrimitiveByteWrapperTest.java +++ b/doma-core/src/test/java/org/seasar/doma/wrapper/PrimitiveByteWrapperTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.wrapper; import static org.junit.jupiter.api.Assertions.*; diff --git a/doma-core/src/test/java/org/seasar/doma/wrapper/PrimitiveDoubleWrapperTest.java b/doma-core/src/test/java/org/seasar/doma/wrapper/PrimitiveDoubleWrapperTest.java index d49867d6f..6aa64ef3a 100644 --- a/doma-core/src/test/java/org/seasar/doma/wrapper/PrimitiveDoubleWrapperTest.java +++ b/doma-core/src/test/java/org/seasar/doma/wrapper/PrimitiveDoubleWrapperTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.wrapper; import static org.junit.jupiter.api.Assertions.*; diff --git a/doma-core/src/test/java/org/seasar/doma/wrapper/PrimitiveFloatWrapperTest.java b/doma-core/src/test/java/org/seasar/doma/wrapper/PrimitiveFloatWrapperTest.java index 166af7e1f..147f0be0e 100644 --- a/doma-core/src/test/java/org/seasar/doma/wrapper/PrimitiveFloatWrapperTest.java +++ b/doma-core/src/test/java/org/seasar/doma/wrapper/PrimitiveFloatWrapperTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.wrapper; import static org.junit.jupiter.api.Assertions.*; diff --git a/doma-core/src/test/java/org/seasar/doma/wrapper/PrimitiveIntWrapperTest.java b/doma-core/src/test/java/org/seasar/doma/wrapper/PrimitiveIntWrapperTest.java index 201b649be..bc3a074b9 100644 --- a/doma-core/src/test/java/org/seasar/doma/wrapper/PrimitiveIntWrapperTest.java +++ b/doma-core/src/test/java/org/seasar/doma/wrapper/PrimitiveIntWrapperTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.wrapper; import static org.junit.jupiter.api.Assertions.*; diff --git a/doma-core/src/test/java/org/seasar/doma/wrapper/PrimitiveLongWrapperTest.java b/doma-core/src/test/java/org/seasar/doma/wrapper/PrimitiveLongWrapperTest.java index 926c47d6e..0bd0b7504 100644 --- a/doma-core/src/test/java/org/seasar/doma/wrapper/PrimitiveLongWrapperTest.java +++ b/doma-core/src/test/java/org/seasar/doma/wrapper/PrimitiveLongWrapperTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.wrapper; import static org.junit.jupiter.api.Assertions.*; diff --git a/doma-core/src/test/java/org/seasar/doma/wrapper/PrimitiveShortWrapperTest.java b/doma-core/src/test/java/org/seasar/doma/wrapper/PrimitiveShortWrapperTest.java index 2137f76da..eb2a3b15f 100644 --- a/doma-core/src/test/java/org/seasar/doma/wrapper/PrimitiveShortWrapperTest.java +++ b/doma-core/src/test/java/org/seasar/doma/wrapper/PrimitiveShortWrapperTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.wrapper; import static org.junit.jupiter.api.Assertions.*; diff --git a/doma-core/src/test/java/org/seasar/doma/wrapper/ShortWrapperTest.java b/doma-core/src/test/java/org/seasar/doma/wrapper/ShortWrapperTest.java index 2cf267718..3f999e360 100644 --- a/doma-core/src/test/java/org/seasar/doma/wrapper/ShortWrapperTest.java +++ b/doma-core/src/test/java/org/seasar/doma/wrapper/ShortWrapperTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.wrapper; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-kotlin/src/main/kotlin/module-info.java b/doma-kotlin/src/main/kotlin/module-info.java index 14fbd2a75..940835359 100644 --- a/doma-kotlin/src/main/kotlin/module-info.java +++ b/doma-kotlin/src/main/kotlin/module-info.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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. + */ module org.seasar.doma.kotlin { exports org.seasar.doma.kotlin.jdbc.criteria; exports org.seasar.doma.kotlin.jdbc.criteria.declaration; diff --git a/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/KEntityql.kt b/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/KEntityql.kt index c4e7895b8..53012b4f0 100644 --- a/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/KEntityql.kt +++ b/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/KEntityql.kt @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.kotlin.jdbc.criteria import org.seasar.doma.jdbc.BatchResult diff --git a/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/KNativeSql.kt b/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/KNativeSql.kt index 64930516a..03ecb98a8 100644 --- a/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/KNativeSql.kt +++ b/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/KNativeSql.kt @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.kotlin.jdbc.criteria import org.seasar.doma.jdbc.Config diff --git a/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/KQueryDsl.kt b/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/KQueryDsl.kt index e8f69b706..9a1013a37 100644 --- a/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/KQueryDsl.kt +++ b/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/KQueryDsl.kt @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.kotlin.jdbc.criteria import org.seasar.doma.jdbc.Config diff --git a/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/KWithQueryDsl.kt b/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/KWithQueryDsl.kt index a0a6575a7..167e3996d 100644 --- a/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/KWithQueryDsl.kt +++ b/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/KWithQueryDsl.kt @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.kotlin.jdbc.criteria import org.seasar.doma.jdbc.criteria.WithQueryDsl diff --git a/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/declaration/KComparisonDeclaration.kt b/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/declaration/KComparisonDeclaration.kt index 8a588fe19..fab8d3d3f 100644 --- a/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/declaration/KComparisonDeclaration.kt +++ b/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/declaration/KComparisonDeclaration.kt @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.kotlin.jdbc.criteria.declaration import org.seasar.doma.jdbc.criteria.metamodel.PropertyMetamodel diff --git a/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/declaration/KHavingDeclaration.kt b/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/declaration/KHavingDeclaration.kt index 0f28c5414..4395a434e 100644 --- a/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/declaration/KHavingDeclaration.kt +++ b/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/declaration/KHavingDeclaration.kt @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.kotlin.jdbc.criteria.declaration import org.seasar.doma.jdbc.criteria.declaration.HavingDeclaration diff --git a/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/declaration/KInsertSelectDeclaration.kt b/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/declaration/KInsertSelectDeclaration.kt index 199de8eab..cf865c929 100644 --- a/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/declaration/KInsertSelectDeclaration.kt +++ b/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/declaration/KInsertSelectDeclaration.kt @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.kotlin.jdbc.criteria.declaration import org.seasar.doma.jdbc.criteria.declaration.SubSelectFromDeclaration diff --git a/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/declaration/KJoinDeclaration.kt b/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/declaration/KJoinDeclaration.kt index 5ff1b53d9..1b0a5593c 100644 --- a/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/declaration/KJoinDeclaration.kt +++ b/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/declaration/KJoinDeclaration.kt @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.kotlin.jdbc.criteria.declaration import org.seasar.doma.jdbc.criteria.context.SubSelectContext diff --git a/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/declaration/KOrderByIndexDeclaration.kt b/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/declaration/KOrderByIndexDeclaration.kt index 369383492..bba930ffb 100644 --- a/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/declaration/KOrderByIndexDeclaration.kt +++ b/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/declaration/KOrderByIndexDeclaration.kt @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.kotlin.jdbc.criteria.declaration import org.seasar.doma.jdbc.criteria.declaration.OrderByIndexDeclaration diff --git a/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/declaration/KOrderByNameDeclaration.kt b/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/declaration/KOrderByNameDeclaration.kt index 564e0f87b..afacc4a56 100644 --- a/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/declaration/KOrderByNameDeclaration.kt +++ b/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/declaration/KOrderByNameDeclaration.kt @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.kotlin.jdbc.criteria.declaration import org.seasar.doma.jdbc.criteria.declaration.OrderByNameDeclaration diff --git a/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/declaration/KSetDeclaration.kt b/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/declaration/KSetDeclaration.kt index 0cb31991b..9892a5eb8 100644 --- a/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/declaration/KSetDeclaration.kt +++ b/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/declaration/KSetDeclaration.kt @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.kotlin.jdbc.criteria.declaration import org.seasar.doma.jdbc.criteria.declaration.SetDeclaration diff --git a/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/declaration/KSubSelectFromDeclaration.kt b/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/declaration/KSubSelectFromDeclaration.kt index 8435a5bd1..8e8407504 100644 --- a/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/declaration/KSubSelectFromDeclaration.kt +++ b/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/declaration/KSubSelectFromDeclaration.kt @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.kotlin.jdbc.criteria.declaration import org.seasar.doma.jdbc.criteria.context.SelectContext diff --git a/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/declaration/KValuesDeclaration.kt b/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/declaration/KValuesDeclaration.kt index abd0b0817..6dfcaeaa2 100644 --- a/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/declaration/KValuesDeclaration.kt +++ b/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/declaration/KValuesDeclaration.kt @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.kotlin.jdbc.criteria.declaration import org.seasar.doma.jdbc.criteria.declaration.ValuesDeclaration diff --git a/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/declaration/KWhereDeclaration.kt b/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/declaration/KWhereDeclaration.kt index 4c32324ed..a61bba008 100644 --- a/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/declaration/KWhereDeclaration.kt +++ b/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/declaration/KWhereDeclaration.kt @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.kotlin.jdbc.criteria.declaration import org.seasar.doma.jdbc.criteria.context.SubSelectContext diff --git a/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/expression/KExpressions.kt b/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/expression/KExpressions.kt index f613c5135..5c9279820 100644 --- a/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/expression/KExpressions.kt +++ b/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/expression/KExpressions.kt @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.kotlin.jdbc.criteria.expression import org.seasar.doma.jdbc.criteria.context.SubSelectContext diff --git a/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/expression/KSelectExpression.kt b/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/expression/KSelectExpression.kt index 243968a1d..daccbf2b8 100644 --- a/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/expression/KSelectExpression.kt +++ b/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/expression/KSelectExpression.kt @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.kotlin.jdbc.criteria.expression import org.seasar.doma.jdbc.criteria.declaration.SubSelectFromDeclaration diff --git a/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KBuildable.kt b/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KBuildable.kt index a6fe417e5..7790d2f6d 100644 --- a/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KBuildable.kt +++ b/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KBuildable.kt @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.kotlin.jdbc.criteria.statement import org.seasar.doma.jdbc.Sql diff --git a/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KEntityQueryable.kt b/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KEntityQueryable.kt index 01fef2259..2918e4dd7 100644 --- a/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KEntityQueryable.kt +++ b/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KEntityQueryable.kt @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.kotlin.jdbc.criteria.statement import org.seasar.doma.jdbc.criteria.metamodel.EntityMetamodel diff --git a/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KEntityqlBatchDeleteStatement.kt b/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KEntityqlBatchDeleteStatement.kt index 8ad48ff59..02d365561 100644 --- a/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KEntityqlBatchDeleteStatement.kt +++ b/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KEntityqlBatchDeleteStatement.kt @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.kotlin.jdbc.criteria.statement import org.seasar.doma.jdbc.BatchResult diff --git a/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KEntityqlBatchInsertStatement.kt b/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KEntityqlBatchInsertStatement.kt index 1b43cffd5..6aa3aa27a 100644 --- a/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KEntityqlBatchInsertStatement.kt +++ b/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KEntityqlBatchInsertStatement.kt @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.kotlin.jdbc.criteria.statement import org.seasar.doma.jdbc.BatchResult diff --git a/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KEntityqlBatchUpdateStatement.kt b/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KEntityqlBatchUpdateStatement.kt index e5ccde371..1e0f8c1ed 100644 --- a/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KEntityqlBatchUpdateStatement.kt +++ b/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KEntityqlBatchUpdateStatement.kt @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.kotlin.jdbc.criteria.statement import org.seasar.doma.jdbc.BatchResult diff --git a/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KEntityqlBatchUpsertStatement.kt b/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KEntityqlBatchUpsertStatement.kt index 4c091e72b..21b417551 100644 --- a/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KEntityqlBatchUpsertStatement.kt +++ b/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KEntityqlBatchUpsertStatement.kt @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.kotlin.jdbc.criteria.statement import org.seasar.doma.jdbc.BatchResult diff --git a/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KEntityqlDeleteStatement.kt b/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KEntityqlDeleteStatement.kt index db7b9efd6..0dfb8849c 100644 --- a/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KEntityqlDeleteStatement.kt +++ b/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KEntityqlDeleteStatement.kt @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.kotlin.jdbc.criteria.statement import org.seasar.doma.jdbc.Result diff --git a/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KEntityqlInsertStatement.kt b/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KEntityqlInsertStatement.kt index 879e78e16..a7d21181f 100644 --- a/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KEntityqlInsertStatement.kt +++ b/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KEntityqlInsertStatement.kt @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.kotlin.jdbc.criteria.statement import org.seasar.doma.jdbc.Result diff --git a/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KEntityqlMultiInsertStatement.kt b/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KEntityqlMultiInsertStatement.kt index 89ff24343..130798105 100644 --- a/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KEntityqlMultiInsertStatement.kt +++ b/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KEntityqlMultiInsertStatement.kt @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.kotlin.jdbc.criteria.statement import org.seasar.doma.jdbc.MultiResult diff --git a/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KEntityqlMultiUpsertStatement.kt b/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KEntityqlMultiUpsertStatement.kt index c52682f60..2969db60e 100644 --- a/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KEntityqlMultiUpsertStatement.kt +++ b/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KEntityqlMultiUpsertStatement.kt @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.kotlin.jdbc.criteria.statement import org.seasar.doma.jdbc.MultiResult diff --git a/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KEntityqlSelectStarting.kt b/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KEntityqlSelectStarting.kt index 9870891f7..a4aaf011f 100644 --- a/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KEntityqlSelectStarting.kt +++ b/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KEntityqlSelectStarting.kt @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.kotlin.jdbc.criteria.statement import org.seasar.doma.jdbc.Sql diff --git a/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KEntityqlSelectTerminal.kt b/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KEntityqlSelectTerminal.kt index d07807eb0..440c950e7 100644 --- a/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KEntityqlSelectTerminal.kt +++ b/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KEntityqlSelectTerminal.kt @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.kotlin.jdbc.criteria.statement import org.seasar.doma.jdbc.Sql diff --git a/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KEntityqlUpdateStatement.kt b/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KEntityqlUpdateStatement.kt index 53e8e82b0..ede028aea 100644 --- a/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KEntityqlUpdateStatement.kt +++ b/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KEntityqlUpdateStatement.kt @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.kotlin.jdbc.criteria.statement import org.seasar.doma.jdbc.Result diff --git a/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KEntityqlUpsertStatement.kt b/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KEntityqlUpsertStatement.kt index 75425fe67..671325e65 100644 --- a/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KEntityqlUpsertStatement.kt +++ b/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KEntityqlUpsertStatement.kt @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.kotlin.jdbc.criteria.statement import org.seasar.doma.jdbc.Result diff --git a/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KListable.kt b/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KListable.kt index ea571ee72..ce4b7fd99 100644 --- a/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KListable.kt +++ b/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KListable.kt @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.kotlin.jdbc.criteria.statement import org.seasar.doma.jdbc.Sql diff --git a/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KNativeSqlDeleteStarting.kt b/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KNativeSqlDeleteStarting.kt index 087e997d9..3103f57c6 100644 --- a/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KNativeSqlDeleteStarting.kt +++ b/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KNativeSqlDeleteStarting.kt @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.kotlin.jdbc.criteria.statement import org.seasar.doma.jdbc.Sql diff --git a/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KNativeSqlDeleteTerminal.kt b/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KNativeSqlDeleteTerminal.kt index c67cf3b8b..91ae6ada6 100644 --- a/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KNativeSqlDeleteTerminal.kt +++ b/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KNativeSqlDeleteTerminal.kt @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.kotlin.jdbc.criteria.statement import org.seasar.doma.jdbc.Sql diff --git a/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KNativeSqlInsertStarting.kt b/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KNativeSqlInsertStarting.kt index f51664562..c59abd370 100644 --- a/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KNativeSqlInsertStarting.kt +++ b/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KNativeSqlInsertStarting.kt @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.kotlin.jdbc.criteria.statement import org.seasar.doma.jdbc.criteria.context.SubSelectContext diff --git a/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KNativeSqlInsertTerminal.kt b/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KNativeSqlInsertTerminal.kt index ceedb1e20..62e1706df 100644 --- a/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KNativeSqlInsertTerminal.kt +++ b/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KNativeSqlInsertTerminal.kt @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.kotlin.jdbc.criteria.statement import org.seasar.doma.jdbc.Sql diff --git a/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KNativeSqlSelectIntermediate.kt b/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KNativeSqlSelectIntermediate.kt index fdaea6d2a..de8b5a433 100644 --- a/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KNativeSqlSelectIntermediate.kt +++ b/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KNativeSqlSelectIntermediate.kt @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.kotlin.jdbc.criteria.statement import org.seasar.doma.jdbc.Sql diff --git a/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KNativeSqlSelectStarting.kt b/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KNativeSqlSelectStarting.kt index 31ff0481c..4c79eecbb 100644 --- a/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KNativeSqlSelectStarting.kt +++ b/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KNativeSqlSelectStarting.kt @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.kotlin.jdbc.criteria.statement import org.seasar.doma.jdbc.ObjectProvider diff --git a/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KNativeSqlSetStarting.kt b/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KNativeSqlSetStarting.kt index cfd7c40d5..0230a2860 100644 --- a/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KNativeSqlSetStarting.kt +++ b/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KNativeSqlSetStarting.kt @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.kotlin.jdbc.criteria.statement import org.seasar.doma.jdbc.Sql diff --git a/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KNativeSqlUpdateStarting.kt b/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KNativeSqlUpdateStarting.kt index c707abd7e..f248b6dcb 100644 --- a/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KNativeSqlUpdateStarting.kt +++ b/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KNativeSqlUpdateStarting.kt @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.kotlin.jdbc.criteria.statement import org.seasar.doma.jdbc.criteria.statement.NativeSqlUpdateStarting diff --git a/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KNativeSqlUpdateTerminal.kt b/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KNativeSqlUpdateTerminal.kt index a9131b9a6..b756dc47f 100644 --- a/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KNativeSqlUpdateTerminal.kt +++ b/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KNativeSqlUpdateTerminal.kt @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.kotlin.jdbc.criteria.statement import org.seasar.doma.jdbc.Sql diff --git a/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KNativeSqlUpsertOnDuplicateKeyIgnoreSelectingKeys.kt b/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KNativeSqlUpsertOnDuplicateKeyIgnoreSelectingKeys.kt index 039a30e0a..35a5fed5c 100644 --- a/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KNativeSqlUpsertOnDuplicateKeyIgnoreSelectingKeys.kt +++ b/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KNativeSqlUpsertOnDuplicateKeyIgnoreSelectingKeys.kt @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.kotlin.jdbc.criteria.statement import org.seasar.doma.jdbc.Sql diff --git a/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KNativeSqlUpsertOnDuplicateKeyUpdateSelectingKeys.kt b/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KNativeSqlUpsertOnDuplicateKeyUpdateSelectingKeys.kt index 4a584ad0c..7e0855b0a 100644 --- a/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KNativeSqlUpsertOnDuplicateKeyUpdateSelectingKeys.kt +++ b/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KNativeSqlUpsertOnDuplicateKeyUpdateSelectingKeys.kt @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.kotlin.jdbc.criteria.statement import org.seasar.doma.jdbc.Sql diff --git a/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KNativeSqlUpsertOnDuplicateKeyUpdateSelectingSet.kt b/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KNativeSqlUpsertOnDuplicateKeyUpdateSelectingSet.kt index 71a45a630..88570efe7 100644 --- a/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KNativeSqlUpsertOnDuplicateKeyUpdateSelectingSet.kt +++ b/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KNativeSqlUpsertOnDuplicateKeyUpdateSelectingSet.kt @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.kotlin.jdbc.criteria.statement import org.seasar.doma.jdbc.Sql diff --git a/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KNativeSqlUpsertTerminal.kt b/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KNativeSqlUpsertTerminal.kt index 2296f8c4f..86f3bac57 100644 --- a/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KNativeSqlUpsertTerminal.kt +++ b/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KNativeSqlUpsertTerminal.kt @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.kotlin.jdbc.criteria.statement import org.seasar.doma.jdbc.Sql diff --git a/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KSequenceMappable.kt b/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KSequenceMappable.kt index 5d77f3060..1752a0c2b 100644 --- a/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KSequenceMappable.kt +++ b/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KSequenceMappable.kt @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.kotlin.jdbc.criteria.statement import java.util.stream.Stream diff --git a/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KSetOperand.kt b/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KSetOperand.kt index 789154055..92191cb66 100644 --- a/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KSetOperand.kt +++ b/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KSetOperand.kt @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.kotlin.jdbc.criteria.statement import org.seasar.doma.jdbc.Sql diff --git a/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KSetOperator.kt b/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KSetOperator.kt index 7dbcbf45d..c43e39449 100644 --- a/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KSetOperator.kt +++ b/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KSetOperator.kt @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.kotlin.jdbc.criteria.statement import org.seasar.doma.jdbc.Sql diff --git a/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KStatement.kt b/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KStatement.kt index 3b5b86509..366f379e6 100644 --- a/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KStatement.kt +++ b/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KStatement.kt @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.kotlin.jdbc.criteria.statement import org.seasar.doma.jdbc.Sql diff --git a/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KUnifiedDeleteStarting.kt b/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KUnifiedDeleteStarting.kt index 8f89a7e99..2c62e788d 100644 --- a/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KUnifiedDeleteStarting.kt +++ b/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KUnifiedDeleteStarting.kt @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.kotlin.jdbc.criteria.statement import org.seasar.doma.jdbc.BatchResult diff --git a/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KUnifiedInsertStarting.kt b/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KUnifiedInsertStarting.kt index 981383485..8db9195ac 100644 --- a/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KUnifiedInsertStarting.kt +++ b/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KUnifiedInsertStarting.kt @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.kotlin.jdbc.criteria.statement import org.seasar.doma.jdbc.criteria.context.SubSelectContext diff --git a/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KUnifiedSelectStarting.kt b/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KUnifiedSelectStarting.kt index ece3f89f7..77eff3cfd 100644 --- a/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KUnifiedSelectStarting.kt +++ b/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KUnifiedSelectStarting.kt @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.kotlin.jdbc.criteria.statement import org.seasar.doma.jdbc.ObjectProvider diff --git a/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KUnifiedSelectTerminal.kt b/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KUnifiedSelectTerminal.kt index c0121505e..735dec9ae 100644 --- a/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KUnifiedSelectTerminal.kt +++ b/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KUnifiedSelectTerminal.kt @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.kotlin.jdbc.criteria.statement import org.seasar.doma.jdbc.Sql diff --git a/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KUnifiedUpdateStarting.kt b/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KUnifiedUpdateStarting.kt index af3293990..267fe946c 100644 --- a/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KUnifiedUpdateStarting.kt +++ b/doma-kotlin/src/main/kotlin/org/seasar/doma/kotlin/jdbc/criteria/statement/KUnifiedUpdateStarting.kt @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.kotlin.jdbc.criteria.statement import org.seasar.doma.jdbc.BatchResult diff --git a/doma-kotlin/src/test/java/org/seasar/doma/jdbc/criteria/entity/Dept.java b/doma-kotlin/src/test/java/org/seasar/doma/jdbc/criteria/entity/Dept.java index 8e9efd321..823d9adac 100644 --- a/doma-kotlin/src/test/java/org/seasar/doma/jdbc/criteria/entity/Dept.java +++ b/doma-kotlin/src/test/java/org/seasar/doma/jdbc/criteria/entity/Dept.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.entity; import java.io.Serial; diff --git a/doma-kotlin/src/test/java/org/seasar/doma/jdbc/criteria/entity/Dept_.java b/doma-kotlin/src/test/java/org/seasar/doma/jdbc/criteria/entity/Dept_.java index bc55d3d00..9e6143a1d 100644 --- a/doma-kotlin/src/test/java/org/seasar/doma/jdbc/criteria/entity/Dept_.java +++ b/doma-kotlin/src/test/java/org/seasar/doma/jdbc/criteria/entity/Dept_.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.entity; import java.util.Arrays; diff --git a/doma-kotlin/src/test/java/org/seasar/doma/jdbc/criteria/entity/Emp.java b/doma-kotlin/src/test/java/org/seasar/doma/jdbc/criteria/entity/Emp.java index a181f4391..526760203 100644 --- a/doma-kotlin/src/test/java/org/seasar/doma/jdbc/criteria/entity/Emp.java +++ b/doma-kotlin/src/test/java/org/seasar/doma/jdbc/criteria/entity/Emp.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.entity; import java.io.Serial; diff --git a/doma-kotlin/src/test/java/org/seasar/doma/jdbc/criteria/entity/Emp_.java b/doma-kotlin/src/test/java/org/seasar/doma/jdbc/criteria/entity/Emp_.java index a54264a07..e1e7f3109 100644 --- a/doma-kotlin/src/test/java/org/seasar/doma/jdbc/criteria/entity/Emp_.java +++ b/doma-kotlin/src/test/java/org/seasar/doma/jdbc/criteria/entity/Emp_.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.entity; import java.math.BigDecimal; diff --git a/doma-kotlin/src/test/java/org/seasar/doma/jdbc/criteria/entity/NoIdEmp.java b/doma-kotlin/src/test/java/org/seasar/doma/jdbc/criteria/entity/NoIdEmp.java index 130bbca47..e024d4c05 100644 --- a/doma-kotlin/src/test/java/org/seasar/doma/jdbc/criteria/entity/NoIdEmp.java +++ b/doma-kotlin/src/test/java/org/seasar/doma/jdbc/criteria/entity/NoIdEmp.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.entity; import java.math.BigDecimal; diff --git a/doma-kotlin/src/test/java/org/seasar/doma/jdbc/criteria/entity/NoIdEmp_.java b/doma-kotlin/src/test/java/org/seasar/doma/jdbc/criteria/entity/NoIdEmp_.java index a5a1602ef..18de2380f 100644 --- a/doma-kotlin/src/test/java/org/seasar/doma/jdbc/criteria/entity/NoIdEmp_.java +++ b/doma-kotlin/src/test/java/org/seasar/doma/jdbc/criteria/entity/NoIdEmp_.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.entity; import java.math.BigDecimal; diff --git a/doma-kotlin/src/test/java/org/seasar/doma/jdbc/criteria/entity/_Dept.java b/doma-kotlin/src/test/java/org/seasar/doma/jdbc/criteria/entity/_Dept.java index 77aa22943..f1b249ca1 100644 --- a/doma-kotlin/src/test/java/org/seasar/doma/jdbc/criteria/entity/_Dept.java +++ b/doma-kotlin/src/test/java/org/seasar/doma/jdbc/criteria/entity/_Dept.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.entity; import java.util.ArrayList; diff --git a/doma-kotlin/src/test/java/org/seasar/doma/jdbc/criteria/entity/_Emp.java b/doma-kotlin/src/test/java/org/seasar/doma/jdbc/criteria/entity/_Emp.java index dd6a5ee8d..43307b385 100644 --- a/doma-kotlin/src/test/java/org/seasar/doma/jdbc/criteria/entity/_Emp.java +++ b/doma-kotlin/src/test/java/org/seasar/doma/jdbc/criteria/entity/_Emp.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.entity; import java.math.BigDecimal; diff --git a/doma-kotlin/src/test/java/org/seasar/doma/jdbc/criteria/entity/_NoIdEmp.java b/doma-kotlin/src/test/java/org/seasar/doma/jdbc/criteria/entity/_NoIdEmp.java index 7ccff2cff..f7d4fddcb 100644 --- a/doma-kotlin/src/test/java/org/seasar/doma/jdbc/criteria/entity/_NoIdEmp.java +++ b/doma-kotlin/src/test/java/org/seasar/doma/jdbc/criteria/entity/_NoIdEmp.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.entity; import java.math.BigDecimal; diff --git a/doma-kotlin/src/test/java/org/seasar/doma/jdbc/criteria/mock/MockConfig.java b/doma-kotlin/src/test/java/org/seasar/doma/jdbc/criteria/mock/MockConfig.java index ea9065220..e1ca58c21 100644 --- a/doma-kotlin/src/test/java/org/seasar/doma/jdbc/criteria/mock/MockConfig.java +++ b/doma-kotlin/src/test/java/org/seasar/doma/jdbc/criteria/mock/MockConfig.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria.mock; import javax.sql.DataSource; diff --git a/doma-kotlin/src/test/kotlin/org/seasar/doma/jdbc/criteria/KQueryDslEntityBatchDeleteTest.kt b/doma-kotlin/src/test/kotlin/org/seasar/doma/jdbc/criteria/KQueryDslEntityBatchDeleteTest.kt index accf57af5..3cbbc7d7e 100644 --- a/doma-kotlin/src/test/kotlin/org/seasar/doma/jdbc/criteria/KQueryDslEntityBatchDeleteTest.kt +++ b/doma-kotlin/src/test/kotlin/org/seasar/doma/jdbc/criteria/KQueryDslEntityBatchDeleteTest.kt @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria import org.junit.jupiter.api.Assertions diff --git a/doma-kotlin/src/test/kotlin/org/seasar/doma/jdbc/criteria/KQueryDslEntityBatchInsertTest.kt b/doma-kotlin/src/test/kotlin/org/seasar/doma/jdbc/criteria/KQueryDslEntityBatchInsertTest.kt index a2801ee5c..8c0191d0e 100644 --- a/doma-kotlin/src/test/kotlin/org/seasar/doma/jdbc/criteria/KQueryDslEntityBatchInsertTest.kt +++ b/doma-kotlin/src/test/kotlin/org/seasar/doma/jdbc/criteria/KQueryDslEntityBatchInsertTest.kt @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria import org.junit.jupiter.api.Assertions diff --git a/doma-kotlin/src/test/kotlin/org/seasar/doma/jdbc/criteria/KQueryDslEntityBatchUpdateTest.kt b/doma-kotlin/src/test/kotlin/org/seasar/doma/jdbc/criteria/KQueryDslEntityBatchUpdateTest.kt index 90b6f9452..582dbb16d 100644 --- a/doma-kotlin/src/test/kotlin/org/seasar/doma/jdbc/criteria/KQueryDslEntityBatchUpdateTest.kt +++ b/doma-kotlin/src/test/kotlin/org/seasar/doma/jdbc/criteria/KQueryDslEntityBatchUpdateTest.kt @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria import org.junit.jupiter.api.Assertions diff --git a/doma-kotlin/src/test/kotlin/org/seasar/doma/jdbc/criteria/KQueryDslEntityDeleteTest.kt b/doma-kotlin/src/test/kotlin/org/seasar/doma/jdbc/criteria/KQueryDslEntityDeleteTest.kt index 887cb7cfb..e0c3f9234 100644 --- a/doma-kotlin/src/test/kotlin/org/seasar/doma/jdbc/criteria/KQueryDslEntityDeleteTest.kt +++ b/doma-kotlin/src/test/kotlin/org/seasar/doma/jdbc/criteria/KQueryDslEntityDeleteTest.kt @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria import org.junit.jupiter.api.Assertions diff --git a/doma-kotlin/src/test/kotlin/org/seasar/doma/jdbc/criteria/KQueryDslEntityInsertTest.kt b/doma-kotlin/src/test/kotlin/org/seasar/doma/jdbc/criteria/KQueryDslEntityInsertTest.kt index 9ce5c63bd..cd1f84a18 100644 --- a/doma-kotlin/src/test/kotlin/org/seasar/doma/jdbc/criteria/KQueryDslEntityInsertTest.kt +++ b/doma-kotlin/src/test/kotlin/org/seasar/doma/jdbc/criteria/KQueryDslEntityInsertTest.kt @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria import org.junit.jupiter.api.Assertions diff --git a/doma-kotlin/src/test/kotlin/org/seasar/doma/jdbc/criteria/KQueryDslEntityMultiInsertTest.kt b/doma-kotlin/src/test/kotlin/org/seasar/doma/jdbc/criteria/KQueryDslEntityMultiInsertTest.kt index e27e50fd3..67d044c36 100644 --- a/doma-kotlin/src/test/kotlin/org/seasar/doma/jdbc/criteria/KQueryDslEntityMultiInsertTest.kt +++ b/doma-kotlin/src/test/kotlin/org/seasar/doma/jdbc/criteria/KQueryDslEntityMultiInsertTest.kt @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria import org.junit.jupiter.api.Assertions diff --git a/doma-kotlin/src/test/kotlin/org/seasar/doma/jdbc/criteria/KQueryDslEntitySelectTest.kt b/doma-kotlin/src/test/kotlin/org/seasar/doma/jdbc/criteria/KQueryDslEntitySelectTest.kt index 822e0c042..4857a830f 100644 --- a/doma-kotlin/src/test/kotlin/org/seasar/doma/jdbc/criteria/KQueryDslEntitySelectTest.kt +++ b/doma-kotlin/src/test/kotlin/org/seasar/doma/jdbc/criteria/KQueryDslEntitySelectTest.kt @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria import org.junit.jupiter.api.Assertions.assertEquals diff --git a/doma-kotlin/src/test/kotlin/org/seasar/doma/jdbc/criteria/KQueryDslEntityqlUpdateTest.kt b/doma-kotlin/src/test/kotlin/org/seasar/doma/jdbc/criteria/KQueryDslEntityqlUpdateTest.kt index 01177cd9b..696f975d3 100644 --- a/doma-kotlin/src/test/kotlin/org/seasar/doma/jdbc/criteria/KQueryDslEntityqlUpdateTest.kt +++ b/doma-kotlin/src/test/kotlin/org/seasar/doma/jdbc/criteria/KQueryDslEntityqlUpdateTest.kt @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria import org.junit.jupiter.api.Assertions diff --git a/doma-kotlin/src/test/kotlin/org/seasar/doma/jdbc/criteria/KQueryDslSqlDeleteTest.kt b/doma-kotlin/src/test/kotlin/org/seasar/doma/jdbc/criteria/KQueryDslSqlDeleteTest.kt index fc73f349e..1c7e388b0 100644 --- a/doma-kotlin/src/test/kotlin/org/seasar/doma/jdbc/criteria/KQueryDslSqlDeleteTest.kt +++ b/doma-kotlin/src/test/kotlin/org/seasar/doma/jdbc/criteria/KQueryDslSqlDeleteTest.kt @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria import org.junit.jupiter.api.Assertions diff --git a/doma-kotlin/src/test/kotlin/org/seasar/doma/jdbc/criteria/KQueryDslSqlInsertTest.kt b/doma-kotlin/src/test/kotlin/org/seasar/doma/jdbc/criteria/KQueryDslSqlInsertTest.kt index fc7db9ca8..6e1eebe5d 100644 --- a/doma-kotlin/src/test/kotlin/org/seasar/doma/jdbc/criteria/KQueryDslSqlInsertTest.kt +++ b/doma-kotlin/src/test/kotlin/org/seasar/doma/jdbc/criteria/KQueryDslSqlInsertTest.kt @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria import org.junit.jupiter.api.Assertions diff --git a/doma-kotlin/src/test/kotlin/org/seasar/doma/jdbc/criteria/KQueryDslSqlSelectTest.kt b/doma-kotlin/src/test/kotlin/org/seasar/doma/jdbc/criteria/KQueryDslSqlSelectTest.kt index 2896a279a..ff289628a 100644 --- a/doma-kotlin/src/test/kotlin/org/seasar/doma/jdbc/criteria/KQueryDslSqlSelectTest.kt +++ b/doma-kotlin/src/test/kotlin/org/seasar/doma/jdbc/criteria/KQueryDslSqlSelectTest.kt @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria import org.junit.jupiter.api.Assertions.assertEquals diff --git a/doma-kotlin/src/test/kotlin/org/seasar/doma/jdbc/criteria/KQueryDslSqlUpdateTest.kt b/doma-kotlin/src/test/kotlin/org/seasar/doma/jdbc/criteria/KQueryDslSqlUpdateTest.kt index 8b220b032..4fe24aedf 100644 --- a/doma-kotlin/src/test/kotlin/org/seasar/doma/jdbc/criteria/KQueryDslSqlUpdateTest.kt +++ b/doma-kotlin/src/test/kotlin/org/seasar/doma/jdbc/criteria/KQueryDslSqlUpdateTest.kt @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.jdbc.criteria import org.junit.jupiter.api.Assertions diff --git a/doma-mock/src/main/java/module-info.java b/doma-mock/src/main/java/module-info.java index 5707385ab..7ba65c0bf 100644 --- a/doma-mock/src/main/java/module-info.java +++ b/doma-mock/src/main/java/module-info.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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. + */ module org.seasar.doma.mock { exports org.seasar.doma.internal.jdbc.mock; diff --git a/doma-mock/src/main/java/org/seasar/doma/internal/jdbc/mock/AssertionUtil.java b/doma-mock/src/main/java/org/seasar/doma/internal/jdbc/mock/AssertionUtil.java index 139af6fe8..83e0bb5a6 100644 --- a/doma-mock/src/main/java/org/seasar/doma/internal/jdbc/mock/AssertionUtil.java +++ b/doma-mock/src/main/java/org/seasar/doma/internal/jdbc/mock/AssertionUtil.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.mock; class AssertionUtil { diff --git a/doma-mock/src/main/java/org/seasar/doma/internal/jdbc/mock/BindValue.java b/doma-mock/src/main/java/org/seasar/doma/internal/jdbc/mock/BindValue.java index fa9594359..f16290fb7 100644 --- a/doma-mock/src/main/java/org/seasar/doma/internal/jdbc/mock/BindValue.java +++ b/doma-mock/src/main/java/org/seasar/doma/internal/jdbc/mock/BindValue.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.mock; public class BindValue { diff --git a/doma-mock/src/main/java/org/seasar/doma/internal/jdbc/mock/ColumnMetaData.java b/doma-mock/src/main/java/org/seasar/doma/internal/jdbc/mock/ColumnMetaData.java index 64e794344..ead074c8d 100644 --- a/doma-mock/src/main/java/org/seasar/doma/internal/jdbc/mock/ColumnMetaData.java +++ b/doma-mock/src/main/java/org/seasar/doma/internal/jdbc/mock/ColumnMetaData.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.mock; public class ColumnMetaData { diff --git a/doma-mock/src/main/java/org/seasar/doma/internal/jdbc/mock/MockCallableStatement.java b/doma-mock/src/main/java/org/seasar/doma/internal/jdbc/mock/MockCallableStatement.java index b4afbb0f7..782247967 100644 --- a/doma-mock/src/main/java/org/seasar/doma/internal/jdbc/mock/MockCallableStatement.java +++ b/doma-mock/src/main/java/org/seasar/doma/internal/jdbc/mock/MockCallableStatement.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.mock; import java.io.InputStream; diff --git a/doma-mock/src/main/java/org/seasar/doma/internal/jdbc/mock/MockConnection.java b/doma-mock/src/main/java/org/seasar/doma/internal/jdbc/mock/MockConnection.java index 7ba6a59fb..f994e9161 100644 --- a/doma-mock/src/main/java/org/seasar/doma/internal/jdbc/mock/MockConnection.java +++ b/doma-mock/src/main/java/org/seasar/doma/internal/jdbc/mock/MockConnection.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.mock; import java.sql.Array; diff --git a/doma-mock/src/main/java/org/seasar/doma/internal/jdbc/mock/MockDataSource.java b/doma-mock/src/main/java/org/seasar/doma/internal/jdbc/mock/MockDataSource.java index 4a7785237..1c7dfe599 100644 --- a/doma-mock/src/main/java/org/seasar/doma/internal/jdbc/mock/MockDataSource.java +++ b/doma-mock/src/main/java/org/seasar/doma/internal/jdbc/mock/MockDataSource.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.mock; import java.io.PrintWriter; diff --git a/doma-mock/src/main/java/org/seasar/doma/internal/jdbc/mock/MockPreparedStatement.java b/doma-mock/src/main/java/org/seasar/doma/internal/jdbc/mock/MockPreparedStatement.java index 776c896b9..b8d02e8e3 100644 --- a/doma-mock/src/main/java/org/seasar/doma/internal/jdbc/mock/MockPreparedStatement.java +++ b/doma-mock/src/main/java/org/seasar/doma/internal/jdbc/mock/MockPreparedStatement.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.mock; import java.io.InputStream; diff --git a/doma-mock/src/main/java/org/seasar/doma/internal/jdbc/mock/MockResultSet.java b/doma-mock/src/main/java/org/seasar/doma/internal/jdbc/mock/MockResultSet.java index 190b42bd7..b15ef0e64 100644 --- a/doma-mock/src/main/java/org/seasar/doma/internal/jdbc/mock/MockResultSet.java +++ b/doma-mock/src/main/java/org/seasar/doma/internal/jdbc/mock/MockResultSet.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.mock; import java.io.InputStream; diff --git a/doma-mock/src/main/java/org/seasar/doma/internal/jdbc/mock/MockResultSetMetaData.java b/doma-mock/src/main/java/org/seasar/doma/internal/jdbc/mock/MockResultSetMetaData.java index 0d27498e7..b9c379a71 100644 --- a/doma-mock/src/main/java/org/seasar/doma/internal/jdbc/mock/MockResultSetMetaData.java +++ b/doma-mock/src/main/java/org/seasar/doma/internal/jdbc/mock/MockResultSetMetaData.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.mock; import java.sql.ResultSetMetaData; diff --git a/doma-mock/src/main/java/org/seasar/doma/internal/jdbc/mock/MockStatement.java b/doma-mock/src/main/java/org/seasar/doma/internal/jdbc/mock/MockStatement.java index 06e027890..7bcb92605 100644 --- a/doma-mock/src/main/java/org/seasar/doma/internal/jdbc/mock/MockStatement.java +++ b/doma-mock/src/main/java/org/seasar/doma/internal/jdbc/mock/MockStatement.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.mock; import java.sql.Connection; diff --git a/doma-mock/src/main/java/org/seasar/doma/internal/jdbc/mock/MockWrapper.java b/doma-mock/src/main/java/org/seasar/doma/internal/jdbc/mock/MockWrapper.java index 40ab92cba..b8716b559 100644 --- a/doma-mock/src/main/java/org/seasar/doma/internal/jdbc/mock/MockWrapper.java +++ b/doma-mock/src/main/java/org/seasar/doma/internal/jdbc/mock/MockWrapper.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.mock; import java.sql.SQLException; diff --git a/doma-mock/src/main/java/org/seasar/doma/internal/jdbc/mock/OutParameterData.java b/doma-mock/src/main/java/org/seasar/doma/internal/jdbc/mock/OutParameterData.java index 87ffc877a..254d57464 100644 --- a/doma-mock/src/main/java/org/seasar/doma/internal/jdbc/mock/OutParameterData.java +++ b/doma-mock/src/main/java/org/seasar/doma/internal/jdbc/mock/OutParameterData.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.mock; import java.util.ArrayList; diff --git a/doma-mock/src/main/java/org/seasar/doma/internal/jdbc/mock/RegisterOutParameter.java b/doma-mock/src/main/java/org/seasar/doma/internal/jdbc/mock/RegisterOutParameter.java index a4d3f4469..eff60c950 100644 --- a/doma-mock/src/main/java/org/seasar/doma/internal/jdbc/mock/RegisterOutParameter.java +++ b/doma-mock/src/main/java/org/seasar/doma/internal/jdbc/mock/RegisterOutParameter.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.mock; public class RegisterOutParameter { diff --git a/doma-mock/src/main/java/org/seasar/doma/internal/jdbc/mock/RowData.java b/doma-mock/src/main/java/org/seasar/doma/internal/jdbc/mock/RowData.java index fec58b841..c1276c944 100644 --- a/doma-mock/src/main/java/org/seasar/doma/internal/jdbc/mock/RowData.java +++ b/doma-mock/src/main/java/org/seasar/doma/internal/jdbc/mock/RowData.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.mock; import java.util.ArrayList; diff --git a/doma-mock/src/test/java/org/seasar/doma/internal/jdbc/mock/MockPreparedStatementTest.java b/doma-mock/src/test/java/org/seasar/doma/internal/jdbc/mock/MockPreparedStatementTest.java index b8a928ca6..025043778 100644 --- a/doma-mock/src/test/java/org/seasar/doma/internal/jdbc/mock/MockPreparedStatementTest.java +++ b/doma-mock/src/test/java/org/seasar/doma/internal/jdbc/mock/MockPreparedStatementTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.mock; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-mock/src/test/java/org/seasar/doma/internal/jdbc/mock/MockResultSetTest.java b/doma-mock/src/test/java/org/seasar/doma/internal/jdbc/mock/MockResultSetTest.java index b66dbd3c4..324f7e9ec 100644 --- a/doma-mock/src/test/java/org/seasar/doma/internal/jdbc/mock/MockResultSetTest.java +++ b/doma-mock/src/test/java/org/seasar/doma/internal/jdbc/mock/MockResultSetTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.jdbc.mock; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-processor/src/main/java/module-info.java b/doma-processor/src/main/java/module-info.java index dcccd7d32..270211b0f 100644 --- a/doma-processor/src/main/java/module-info.java +++ b/doma-processor/src/main/java/module-info.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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. + */ module org.seasar.doma.processor { requires java.compiler; requires org.seasar.doma.core; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/AptException.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/AptException.java index faf53a0f4..1a01a6638 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/AptException.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/AptException.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt; import java.io.Serial; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/AptIllegalOptionException.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/AptIllegalOptionException.java index 094aa8af1..3ed49bde5 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/AptIllegalOptionException.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/AptIllegalOptionException.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt; import java.io.Serial; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/AptIllegalStateException.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/AptIllegalStateException.java index 7265c6310..4f7f2db0f 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/AptIllegalStateException.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/AptIllegalStateException.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt; import java.io.Serial; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/Context.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/Context.java index 36b8cbc63..15dcbc052 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/Context.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/Context.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt; import javax.annotation.processing.ProcessingEnvironment; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/MoreElements.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/MoreElements.java index e24b6f0dc..cf7d25e57 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/MoreElements.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/MoreElements.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt; import static java.util.stream.Collectors.toList; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/MoreTypes.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/MoreTypes.java index a52d24c54..c3fef447a 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/MoreTypes.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/MoreTypes.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/Names.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/Names.java index c5d582f6e..f62fb7bd9 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/Names.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/Names.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt; import static org.seasar.doma.internal.Constants.EXTERNAL_DOMAIN_TYPE_ARRAY_SUFFIX; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/Options.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/Options.java index e04b0db73..611f2d232 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/Options.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/Options.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt; import static java.util.Collections.emptyMap; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/Reporter.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/Reporter.java index ffa4be131..3a4d31c29 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/Reporter.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/Reporter.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/Resources.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/Resources.java index abbd40a8c..70566d4f6 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/Resources.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/Resources.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/AbstractAnnot.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/AbstractAnnot.java index 168c35842..41500e772 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/AbstractAnnot.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/AbstractAnnot.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.annot; import javax.lang.model.element.AnnotationMirror; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/AllArgsConstructorAnnot.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/AllArgsConstructorAnnot.java index f79f88239..d7256a4e8 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/AllArgsConstructorAnnot.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/AllArgsConstructorAnnot.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.annot; import static org.seasar.doma.internal.util.AssertionUtil.assertNonNullValue; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/Annot.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/Annot.java index c8115f5a9..91bd32e89 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/Annot.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/Annot.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.annot; import javax.lang.model.element.AnnotationMirror; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/AnnotateWithAnnot.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/AnnotateWithAnnot.java index 79df5386e..f1c4c29c1 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/AnnotateWithAnnot.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/AnnotateWithAnnot.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.annot; import java.util.ArrayList; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/AnnotationAnnot.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/AnnotationAnnot.java index d5270bdaf..498a69683 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/AnnotationAnnot.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/AnnotationAnnot.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.annot; import static org.seasar.doma.internal.util.AssertionUtil.*; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/Annotations.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/Annotations.java index fc6e6dbf0..d0ecc3d47 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/Annotations.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/Annotations.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.annot; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/ArrayFactoryAnnot.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/ArrayFactoryAnnot.java index b9136e4a0..a7505e98a 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/ArrayFactoryAnnot.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/ArrayFactoryAnnot.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.annot; import static org.seasar.doma.internal.util.AssertionUtil.*; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/BatchDeleteAnnot.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/BatchDeleteAnnot.java index 329bcee8a..8cd24abba 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/BatchDeleteAnnot.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/BatchDeleteAnnot.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.annot; import java.util.Map; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/BatchInsertAnnot.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/BatchInsertAnnot.java index 0530faea0..e1e6faeb8 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/BatchInsertAnnot.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/BatchInsertAnnot.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.annot; import java.util.Map; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/BatchModifyAnnot.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/BatchModifyAnnot.java index 5dfc9a083..a71bcd530 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/BatchModifyAnnot.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/BatchModifyAnnot.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.annot; import static org.seasar.doma.internal.util.AssertionUtil.assertNonNullValue; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/BatchUpdateAnnot.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/BatchUpdateAnnot.java index da5f5f5e4..c4fc55c11 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/BatchUpdateAnnot.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/BatchUpdateAnnot.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.annot; import java.util.Map; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/BlobFactoryAnnot.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/BlobFactoryAnnot.java index c116c9890..0e831297a 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/BlobFactoryAnnot.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/BlobFactoryAnnot.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.annot; import javax.lang.model.element.AnnotationMirror; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/ClobFactoryAnnot.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/ClobFactoryAnnot.java index 1e65e74f8..6f8b3d694 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/ClobFactoryAnnot.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/ClobFactoryAnnot.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.annot; import javax.lang.model.element.AnnotationMirror; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/ColumnAnnot.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/ColumnAnnot.java index 1690dbc61..da0f55e98 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/ColumnAnnot.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/ColumnAnnot.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.annot; import static org.seasar.doma.internal.util.AssertionUtil.assertNonNullValue; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/DaoAnnot.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/DaoAnnot.java index 282534e63..1baed118c 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/DaoAnnot.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/DaoAnnot.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.annot; import static org.seasar.doma.internal.util.AssertionUtil.assertNonNullValue; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/DataTypeAnnot.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/DataTypeAnnot.java index 8a296956b..ccebc633a 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/DataTypeAnnot.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/DataTypeAnnot.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.annot; import java.util.Map; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/DeleteAnnot.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/DeleteAnnot.java index 35b32395f..667c2805b 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/DeleteAnnot.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/DeleteAnnot.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.annot; import java.util.Map; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/DomainAnnot.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/DomainAnnot.java index d43ab4b72..97acfb2c6 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/DomainAnnot.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/DomainAnnot.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.annot; import static org.seasar.doma.internal.util.AssertionUtil.assertNonNullValue; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/DomainConvertersAnnot.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/DomainConvertersAnnot.java index e67a9f9f7..4810eafe1 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/DomainConvertersAnnot.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/DomainConvertersAnnot.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.annot; import static org.seasar.doma.internal.util.AssertionUtil.*; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/EmbeddableAnnot.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/EmbeddableAnnot.java index bbc1c2a31..408388579 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/EmbeddableAnnot.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/EmbeddableAnnot.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.annot; import javax.lang.model.element.AnnotationMirror; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/EntityAnnot.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/EntityAnnot.java index bda66e2f2..a7ae6e42e 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/EntityAnnot.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/EntityAnnot.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.annot; import static org.seasar.doma.internal.util.AssertionUtil.assertNonNullValue; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/FunctionAnnot.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/FunctionAnnot.java index f6b4b0b47..58723f65b 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/FunctionAnnot.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/FunctionAnnot.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.annot; import static org.seasar.doma.internal.util.AssertionUtil.assertNonNullValue; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/InsertAnnot.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/InsertAnnot.java index 8feba99dd..9a60f5e20 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/InsertAnnot.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/InsertAnnot.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.annot; import java.util.Map; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/MetamodelAnnot.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/MetamodelAnnot.java index c9e1cf71c..58a10d705 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/MetamodelAnnot.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/MetamodelAnnot.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.annot; import static org.seasar.doma.internal.util.AssertionUtil.assertNonNullValue; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/ModifyAnnot.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/ModifyAnnot.java index 21e2c1fe9..83e18226e 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/ModifyAnnot.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/ModifyAnnot.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.annot; import static org.seasar.doma.internal.util.AssertionUtil.assertNonNullValue; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/MultiInsertAnnot.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/MultiInsertAnnot.java index 15474404e..ab8be2671 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/MultiInsertAnnot.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/MultiInsertAnnot.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.annot; import static org.seasar.doma.internal.util.AssertionUtil.assertNonNullValue; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/NClobFactoryAnnot.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/NClobFactoryAnnot.java index bc12a95c9..61235b4e6 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/NClobFactoryAnnot.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/NClobFactoryAnnot.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.annot; import javax.lang.model.element.AnnotationMirror; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/ProcedureAnnot.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/ProcedureAnnot.java index bdf94e86e..53f09535a 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/ProcedureAnnot.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/ProcedureAnnot.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.annot; import static org.seasar.doma.internal.util.AssertionUtil.assertNonNullValue; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/QueryAnnot.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/QueryAnnot.java index 6a80e3d5c..1ce354ffe 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/QueryAnnot.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/QueryAnnot.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.annot; public interface QueryAnnot {} diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/ResultSetAnnot.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/ResultSetAnnot.java index a8480f26c..5fb8ce655 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/ResultSetAnnot.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/ResultSetAnnot.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.annot; import static org.seasar.doma.internal.util.AssertionUtil.*; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/SQLXMLFactoryAnnot.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/SQLXMLFactoryAnnot.java index 807b1f583..7b52d3f14 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/SQLXMLFactoryAnnot.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/SQLXMLFactoryAnnot.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.annot; import javax.lang.model.element.AnnotationMirror; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/ScriptAnnot.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/ScriptAnnot.java index 2f23b0c32..36d6044dc 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/ScriptAnnot.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/ScriptAnnot.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.annot; import static org.seasar.doma.internal.util.AssertionUtil.assertNonNullValue; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/SelectAnnot.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/SelectAnnot.java index f5234ee84..64a08de04 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/SelectAnnot.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/SelectAnnot.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.annot; import static org.seasar.doma.internal.util.AssertionUtil.assertNonNullValue; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/SequenceGeneratorAnnot.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/SequenceGeneratorAnnot.java index faf1063b9..8988e034a 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/SequenceGeneratorAnnot.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/SequenceGeneratorAnnot.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.annot; import static org.seasar.doma.internal.util.AssertionUtil.*; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/SqlAnnot.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/SqlAnnot.java index 56cd681bf..5caadd978 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/SqlAnnot.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/SqlAnnot.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.annot; import static org.seasar.doma.internal.util.AssertionUtil.assertNonNullValue; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/SqlProcessorAnnot.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/SqlProcessorAnnot.java index 3b304bd5b..39ab94ff2 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/SqlProcessorAnnot.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/SqlProcessorAnnot.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.annot; import javax.lang.model.element.AnnotationMirror; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/TableAnnot.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/TableAnnot.java index 525572bb2..fbc556a2a 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/TableAnnot.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/TableAnnot.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.annot; import static org.seasar.doma.internal.util.AssertionUtil.assertNonNullValue; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/TableGeneratorAnnot.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/TableGeneratorAnnot.java index aa39520dc..e95e4c6fb 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/TableGeneratorAnnot.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/TableGeneratorAnnot.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.annot; import static org.seasar.doma.internal.util.AssertionUtil.*; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/UpdateAnnot.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/UpdateAnnot.java index 816440422..b27216ce1 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/UpdateAnnot.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/UpdateAnnot.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.annot; import java.util.Map; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/ValueAnnot.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/ValueAnnot.java index da1a4b84e..000dced6a 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/ValueAnnot.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/annot/ValueAnnot.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.annot; import static org.seasar.doma.internal.util.AssertionUtil.assertNonNullValue; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/cttype/AbstractCtType.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/cttype/AbstractCtType.java index 85b823fe5..6f783c116 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/cttype/AbstractCtType.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/cttype/AbstractCtType.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.cttype; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/cttype/AnyCtType.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/cttype/AnyCtType.java index b2c3048af..041424966 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/cttype/AnyCtType.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/cttype/AnyCtType.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.cttype; import javax.lang.model.type.TypeMirror; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/cttype/ArrayCtType.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/cttype/ArrayCtType.java index e42d1bb3d..1ed05f887 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/cttype/ArrayCtType.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/cttype/ArrayCtType.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.cttype; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/cttype/BasicCtType.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/cttype/BasicCtType.java index 6c475b030..c8b042229 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/cttype/BasicCtType.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/cttype/BasicCtType.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.cttype; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/cttype/BatchResultCtType.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/cttype/BatchResultCtType.java index 070421e02..a3a2b0a2e 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/cttype/BatchResultCtType.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/cttype/BatchResultCtType.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.cttype; import javax.lang.model.type.TypeMirror; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/cttype/BiFunctionCtType.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/cttype/BiFunctionCtType.java index cada653a4..083047982 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/cttype/BiFunctionCtType.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/cttype/BiFunctionCtType.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.cttype; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/cttype/CollectorCtType.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/cttype/CollectorCtType.java index 8a5b2ca13..4fad24bda 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/cttype/CollectorCtType.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/cttype/CollectorCtType.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.cttype; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/cttype/ConfigCtType.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/cttype/ConfigCtType.java index 6d4dd36c2..2c533cef6 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/cttype/ConfigCtType.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/cttype/ConfigCtType.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.cttype; import javax.lang.model.type.TypeMirror; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/cttype/CtType.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/cttype/CtType.java index 8ccbfd5bc..a99486aab 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/cttype/CtType.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/cttype/CtType.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.cttype; import javax.lang.model.type.TypeMirror; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/cttype/CtTypeVisitor.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/cttype/CtTypeVisitor.java index b2abdfc4e..0d93b483f 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/cttype/CtTypeVisitor.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/cttype/CtTypeVisitor.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.cttype; public interface CtTypeVisitor { diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/cttype/CtTypes.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/cttype/CtTypes.java index 6136969d3..9744c2eaf 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/cttype/CtTypes.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/cttype/CtTypes.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.cttype; import static java.util.stream.Collectors.toList; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/cttype/DomainCtType.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/cttype/DomainCtType.java index b2455e26f..eefe016ff 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/cttype/DomainCtType.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/cttype/DomainCtType.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.cttype; import static java.util.stream.Collectors.toList; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/cttype/EmbeddableCtType.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/cttype/EmbeddableCtType.java index 584903a66..e4ce2a834 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/cttype/EmbeddableCtType.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/cttype/EmbeddableCtType.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.cttype; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/cttype/EntityCtType.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/cttype/EntityCtType.java index 59aa8796d..a69c7bccc 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/cttype/EntityCtType.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/cttype/EntityCtType.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.cttype; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/cttype/FunctionCtType.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/cttype/FunctionCtType.java index 1ab444c75..eb684e67b 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/cttype/FunctionCtType.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/cttype/FunctionCtType.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.cttype; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/cttype/IterableCtType.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/cttype/IterableCtType.java index 1f50281db..3dcee4f51 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/cttype/IterableCtType.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/cttype/IterableCtType.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.cttype; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/cttype/MapCtType.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/cttype/MapCtType.java index cc8b780da..220c7599e 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/cttype/MapCtType.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/cttype/MapCtType.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.cttype; import javax.lang.model.type.TypeMirror; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/cttype/MultiResultCtType.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/cttype/MultiResultCtType.java index 6d436d0f3..04421c202 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/cttype/MultiResultCtType.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/cttype/MultiResultCtType.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.cttype; import javax.lang.model.type.TypeMirror; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/cttype/NoneCtType.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/cttype/NoneCtType.java index 0a4c80a92..9715f1a6d 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/cttype/NoneCtType.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/cttype/NoneCtType.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.cttype; import javax.lang.model.type.TypeMirror; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/cttype/OptionalCtType.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/cttype/OptionalCtType.java index aa37cd13c..de0977a3b 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/cttype/OptionalCtType.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/cttype/OptionalCtType.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.cttype; import static org.seasar.doma.internal.util.AssertionUtil.*; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/cttype/OptionalDoubleCtType.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/cttype/OptionalDoubleCtType.java index 31dae5210..cf88e80fe 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/cttype/OptionalDoubleCtType.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/cttype/OptionalDoubleCtType.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.cttype; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/cttype/OptionalIntCtType.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/cttype/OptionalIntCtType.java index a9976093a..30875602b 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/cttype/OptionalIntCtType.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/cttype/OptionalIntCtType.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.cttype; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/cttype/OptionalLongCtType.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/cttype/OptionalLongCtType.java index 2eb51df1f..edfacf401 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/cttype/OptionalLongCtType.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/cttype/OptionalLongCtType.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.cttype; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/cttype/PreparedSqlCtType.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/cttype/PreparedSqlCtType.java index 0dc498e72..7fec9ab9d 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/cttype/PreparedSqlCtType.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/cttype/PreparedSqlCtType.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.cttype; import javax.lang.model.type.TypeMirror; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/cttype/ReferenceCtType.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/cttype/ReferenceCtType.java index 37a0e7976..bf14a05c8 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/cttype/ReferenceCtType.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/cttype/ReferenceCtType.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.cttype; import javax.lang.model.type.TypeMirror; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/cttype/ResultCtType.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/cttype/ResultCtType.java index 5c999fbfc..c756cc44d 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/cttype/ResultCtType.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/cttype/ResultCtType.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.cttype; import javax.lang.model.type.TypeMirror; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/cttype/SelectOptionsCtType.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/cttype/SelectOptionsCtType.java index 43721cce9..13d042386 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/cttype/SelectOptionsCtType.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/cttype/SelectOptionsCtType.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.cttype; import javax.lang.model.type.TypeMirror; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/cttype/SimpleCtTypeVisitor.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/cttype/SimpleCtTypeVisitor.java index 589bb15e8..2c5813569 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/cttype/SimpleCtTypeVisitor.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/cttype/SimpleCtTypeVisitor.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.cttype; public class SimpleCtTypeVisitor implements CtTypeVisitor { diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/cttype/StreamCtType.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/cttype/StreamCtType.java index 490709786..b8e343211 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/cttype/StreamCtType.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/cttype/StreamCtType.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.cttype; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/decl/ConstructorDeclaration.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/decl/ConstructorDeclaration.java index c63e212ab..9028b84b7 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/decl/ConstructorDeclaration.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/decl/ConstructorDeclaration.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.decl; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/decl/Declarations.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/decl/Declarations.java index 431b6804a..4ddf628ea 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/decl/Declarations.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/decl/Declarations.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.decl; import static java.util.stream.Collectors.collectingAndThen; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/decl/FieldDeclaration.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/decl/FieldDeclaration.java index 1adcbc320..42b1b20fd 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/decl/FieldDeclaration.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/decl/FieldDeclaration.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.decl; import static org.seasar.doma.internal.util.AssertionUtil.*; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/decl/MethodDeclaration.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/decl/MethodDeclaration.java index 8239725fd..b7c58a5a6 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/decl/MethodDeclaration.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/decl/MethodDeclaration.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.decl; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/decl/TypeDeclaration.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/decl/TypeDeclaration.java index b7e99b139..fe445657d 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/decl/TypeDeclaration.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/decl/TypeDeclaration.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.decl; import static java.util.stream.Collectors.toList; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/decl/TypeParameterDeclaration.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/decl/TypeParameterDeclaration.java index 860834f3e..750d029c6 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/decl/TypeParameterDeclaration.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/decl/TypeParameterDeclaration.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.decl; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/def/TypeParametersDef.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/def/TypeParametersDef.java index 8215188bd..c9f8c36ad 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/def/TypeParametersDef.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/def/TypeParametersDef.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.def; import static java.util.stream.Collectors.collectingAndThen; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/generator/AbstractGenerator.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/generator/AbstractGenerator.java index f6b791132..c91f5bba0 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/generator/AbstractGenerator.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/generator/AbstractGenerator.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.generator; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/generator/Code.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/generator/Code.java index 188c7b4a4..1bbccc985 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/generator/Code.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/generator/Code.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.generator; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/generator/DaoImplGenerator.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/generator/DaoImplGenerator.java index 0cb108201..d18af8ec8 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/generator/DaoImplGenerator.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/generator/DaoImplGenerator.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.generator; import static java.util.stream.Collectors.toList; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/generator/DaoImplQueryMethodGenerator.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/generator/DaoImplQueryMethodGenerator.java index 199d308a8..c0b522345 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/generator/DaoImplQueryMethodGenerator.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/generator/DaoImplQueryMethodGenerator.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.generator; import static java.util.stream.Collectors.toList; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/generator/DomainTypeGenerator.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/generator/DomainTypeGenerator.java index 503b6e910..9b0a6e851 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/generator/DomainTypeGenerator.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/generator/DomainTypeGenerator.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.generator; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/generator/EmbeddableMetamodelGenerator.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/generator/EmbeddableMetamodelGenerator.java index d9900430f..a8fe32910 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/generator/EmbeddableMetamodelGenerator.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/generator/EmbeddableMetamodelGenerator.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.generator; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/generator/EmbeddableTypeGenerator.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/generator/EmbeddableTypeGenerator.java index b22050690..62eef94ec 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/generator/EmbeddableTypeGenerator.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/generator/EmbeddableTypeGenerator.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.generator; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/generator/EntityMetamodelGenerator.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/generator/EntityMetamodelGenerator.java index a8ec223d1..6913e3136 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/generator/EntityMetamodelGenerator.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/generator/EntityMetamodelGenerator.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.generator; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/generator/EntityTypeGenerator.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/generator/EntityTypeGenerator.java index c3c5914ee..ef3916943 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/generator/EntityTypeGenerator.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/generator/EntityTypeGenerator.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.generator; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/generator/EntityTypePropertyGenerator.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/generator/EntityTypePropertyGenerator.java index 723068e1a..b07a7e4e7 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/generator/EntityTypePropertyGenerator.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/generator/EntityTypePropertyGenerator.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.generator; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/generator/ExternalDomainTypeGenerator.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/generator/ExternalDomainTypeGenerator.java index 5573cd23e..8167997ea 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/generator/ExternalDomainTypeGenerator.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/generator/ExternalDomainTypeGenerator.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.generator; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/generator/Generator.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/generator/Generator.java index 1ccc24880..3022021e1 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/generator/Generator.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/generator/Generator.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.generator; public interface Generator { diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/generator/JavaFileGenerator.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/generator/JavaFileGenerator.java index 821d60383..499577316 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/generator/JavaFileGenerator.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/generator/JavaFileGenerator.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.generator; import java.io.BufferedWriter; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/generator/Printer.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/generator/Printer.java index ccae1046c..70c04d087 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/generator/Printer.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/generator/Printer.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.generator; import static java.util.stream.Collectors.joining; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/generator/ScalarMetaFactory.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/generator/ScalarMetaFactory.java index 5e5cbbc74..ae1754dc7 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/generator/ScalarMetaFactory.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/generator/ScalarMetaFactory.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.generator; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/generator/UnwrapOptionalVisitor.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/generator/UnwrapOptionalVisitor.java index e281cc956..d5a7a6489 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/generator/UnwrapOptionalVisitor.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/generator/UnwrapOptionalVisitor.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.generator; import javax.lang.model.type.TypeMirror; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/TypeElementMeta.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/TypeElementMeta.java index 0a3f9a90a..0c4990439 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/TypeElementMeta.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/TypeElementMeta.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta; public interface TypeElementMeta { diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/TypeElementMetaFactory.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/TypeElementMetaFactory.java index bb68feda0..932674301 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/TypeElementMetaFactory.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/TypeElementMetaFactory.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta; import javax.lang.model.element.TypeElement; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/dao/DaoMeta.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/dao/DaoMeta.java index 0bcad9c6c..58f846677 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/dao/DaoMeta.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/dao/DaoMeta.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta.dao; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/dao/DaoMetaFactory.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/dao/DaoMetaFactory.java index c5c804bd1..706d37dc1 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/dao/DaoMetaFactory.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/dao/DaoMetaFactory.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta.dao; import static java.util.stream.Collectors.toList; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/dao/ParentDaoMeta.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/dao/ParentDaoMeta.java index abbe1ba1d..0ddb36361 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/dao/ParentDaoMeta.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/dao/ParentDaoMeta.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta.dao; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/domain/DataTypeMeta.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/domain/DataTypeMeta.java index b1499b949..644ae601b 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/domain/DataTypeMeta.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/domain/DataTypeMeta.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta.domain; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/domain/DataTypeMetaFactory.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/domain/DataTypeMetaFactory.java index d69be299e..e0b8c53c5 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/domain/DataTypeMetaFactory.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/domain/DataTypeMetaFactory.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta.domain; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/domain/DomainMeta.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/domain/DomainMeta.java index 5075ab2e1..0aa02de2c 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/domain/DomainMeta.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/domain/DomainMeta.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta.domain; import java.util.List; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/domain/ExternalDomainMeta.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/domain/ExternalDomainMeta.java index 9f959e9d7..030ec4460 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/domain/ExternalDomainMeta.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/domain/ExternalDomainMeta.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta.domain; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/domain/ExternalDomainMetaFactory.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/domain/ExternalDomainMetaFactory.java index bde3d0a84..6e168e0c7 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/domain/ExternalDomainMetaFactory.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/domain/ExternalDomainMetaFactory.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta.domain; import static org.seasar.doma.internal.util.AssertionUtil.assertEquals; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/domain/InternalDomainMeta.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/domain/InternalDomainMeta.java index 9b1fb40db..dd91cdf50 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/domain/InternalDomainMeta.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/domain/InternalDomainMeta.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta.domain; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/domain/InternalDomainMetaFactory.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/domain/InternalDomainMetaFactory.java index b4b691195..eeb6e7e2b 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/domain/InternalDomainMetaFactory.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/domain/InternalDomainMetaFactory.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta.domain; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/entity/EmbeddableConstructorMeta.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/entity/EmbeddableConstructorMeta.java index 874aaed2e..4b4b7156c 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/entity/EmbeddableConstructorMeta.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/entity/EmbeddableConstructorMeta.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta.entity; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/entity/EmbeddableMeta.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/entity/EmbeddableMeta.java index 7beaec0a6..4d1f3eeee 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/entity/EmbeddableMeta.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/entity/EmbeddableMeta.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta.entity; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/entity/EmbeddableMetaFactory.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/entity/EmbeddableMetaFactory.java index 242e5289c..f8eac8147 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/entity/EmbeddableMetaFactory.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/entity/EmbeddableMetaFactory.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta.entity; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/entity/EmbeddablePropertyMeta.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/entity/EmbeddablePropertyMeta.java index 06b741d07..e8e0fbd00 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/entity/EmbeddablePropertyMeta.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/entity/EmbeddablePropertyMeta.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta.entity; import javax.lang.model.type.TypeMirror; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/entity/EmbeddablePropertyMetaFactory.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/entity/EmbeddablePropertyMetaFactory.java index 1f71ffcc5..a3540b6df 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/entity/EmbeddablePropertyMetaFactory.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/entity/EmbeddablePropertyMetaFactory.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta.entity; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/entity/EntityConstructorMeta.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/entity/EntityConstructorMeta.java index 0a2f8a57b..cafeed2fd 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/entity/EntityConstructorMeta.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/entity/EntityConstructorMeta.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta.entity; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/entity/EntityMeta.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/entity/EntityMeta.java index 6e615a710..c88582b01 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/entity/EntityMeta.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/entity/EntityMeta.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta.entity; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/entity/EntityMetaFactory.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/entity/EntityMetaFactory.java index 7698b67fa..ed224a8af 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/entity/EntityMetaFactory.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/entity/EntityMetaFactory.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta.entity; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/entity/EntityPropertyMeta.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/entity/EntityPropertyMeta.java index b29413c25..1fbe65892 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/entity/EntityPropertyMeta.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/entity/EntityPropertyMeta.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta.entity; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/entity/EntityPropertyMetaFactory.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/entity/EntityPropertyMetaFactory.java index f1fcde3f0..ed2062305 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/entity/EntityPropertyMetaFactory.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/entity/EntityPropertyMetaFactory.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta.entity; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/entity/EntityPropertyNameCollector.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/entity/EntityPropertyNameCollector.java index c55382f84..bfd11584d 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/entity/EntityPropertyNameCollector.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/entity/EntityPropertyNameCollector.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta.entity; import static org.seasar.doma.internal.util.AssertionUtil.*; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/entity/OriginalStatesMeta.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/entity/OriginalStatesMeta.java index 42399126b..011d154bf 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/entity/OriginalStatesMeta.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/entity/OriginalStatesMeta.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta.entity; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/entity/ScopeClassMeta.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/entity/ScopeClassMeta.java index e26ba4485..3dd4ae1aa 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/entity/ScopeClassMeta.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/entity/ScopeClassMeta.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta.entity; import java.util.Collections; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/entity/ScopeClassMetaFactory.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/entity/ScopeClassMetaFactory.java index 09340a1a9..8b5ba1876 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/entity/ScopeClassMetaFactory.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/entity/ScopeClassMetaFactory.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta.entity; import static java.util.stream.Collectors.toList; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/entity/ScopeMethodMeta.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/entity/ScopeMethodMeta.java index f2558c65a..4423d289e 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/entity/ScopeMethodMeta.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/entity/ScopeMethodMeta.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta.entity; import java.util.Collections; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/entity/ScopeParameterMeta.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/entity/ScopeParameterMeta.java index 3d982d6d3..fe5b813ae 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/entity/ScopeParameterMeta.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/entity/ScopeParameterMeta.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta.entity; import java.util.Objects; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/id/IdGeneratorMeta.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/id/IdGeneratorMeta.java index cc0f8ac1c..378fa789a 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/id/IdGeneratorMeta.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/id/IdGeneratorMeta.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta.id; public interface IdGeneratorMeta { diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/id/IdGeneratorMetaVisitor.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/id/IdGeneratorMetaVisitor.java index 533373d54..d6bfc66f4 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/id/IdGeneratorMetaVisitor.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/id/IdGeneratorMetaVisitor.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta.id; public interface IdGeneratorMetaVisitor { diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/id/IdentityIdGeneratorMeta.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/id/IdentityIdGeneratorMeta.java index 58406ad48..b189f948e 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/id/IdentityIdGeneratorMeta.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/id/IdentityIdGeneratorMeta.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta.id; import org.seasar.doma.jdbc.id.BuiltinIdentityIdGenerator; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/id/SequenceIdGeneratorMeta.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/id/SequenceIdGeneratorMeta.java index f98f6071c..60168e2d8 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/id/SequenceIdGeneratorMeta.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/id/SequenceIdGeneratorMeta.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta.id; import static org.seasar.doma.internal.util.AssertionUtil.*; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/id/TableIdGeneratorMeta.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/id/TableIdGeneratorMeta.java index 4faceda17..dfeb7eecf 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/id/TableIdGeneratorMeta.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/id/TableIdGeneratorMeta.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta.id; import static org.seasar.doma.internal.util.AssertionUtil.*; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/BasicInOutParameterMeta.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/BasicInOutParameterMeta.java index 595770b3c..e176f8207 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/BasicInOutParameterMeta.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/BasicInOutParameterMeta.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta.parameter; import static org.seasar.doma.internal.util.AssertionUtil.*; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/BasicInParameterMeta.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/BasicInParameterMeta.java index d5a816361..2f0bff242 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/BasicInParameterMeta.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/BasicInParameterMeta.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta.parameter; import static org.seasar.doma.internal.util.AssertionUtil.*; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/BasicListParameterMeta.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/BasicListParameterMeta.java index 62ec926ab..edee8cd1b 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/BasicListParameterMeta.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/BasicListParameterMeta.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta.parameter; import static org.seasar.doma.internal.util.AssertionUtil.*; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/BasicOutParameterMeta.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/BasicOutParameterMeta.java index bfc8c2390..25218558c 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/BasicOutParameterMeta.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/BasicOutParameterMeta.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta.parameter; import static org.seasar.doma.internal.util.AssertionUtil.*; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/BasicResultListParameterMeta.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/BasicResultListParameterMeta.java index c8486a9db..e7b14356e 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/BasicResultListParameterMeta.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/BasicResultListParameterMeta.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta.parameter; import static org.seasar.doma.internal.util.AssertionUtil.*; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/BasicSingleResultParameterMeta.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/BasicSingleResultParameterMeta.java index 836e1b3de..6aeab22d3 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/BasicSingleResultParameterMeta.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/BasicSingleResultParameterMeta.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta.parameter; import static org.seasar.doma.internal.util.AssertionUtil.*; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/CallableSqlParameterMeta.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/CallableSqlParameterMeta.java index 09d627343..6981eed98 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/CallableSqlParameterMeta.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/CallableSqlParameterMeta.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta.parameter; public interface CallableSqlParameterMeta { diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/CallableSqlParameterMetaVisitor.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/CallableSqlParameterMetaVisitor.java index ac8cc236b..8b47a3938 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/CallableSqlParameterMetaVisitor.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/CallableSqlParameterMetaVisitor.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta.parameter; public interface CallableSqlParameterMetaVisitor { diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/DomainInOutParameterMeta.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/DomainInOutParameterMeta.java index 9934e4a0f..3ac460301 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/DomainInOutParameterMeta.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/DomainInOutParameterMeta.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta.parameter; import static org.seasar.doma.internal.util.AssertionUtil.*; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/DomainInParameterMeta.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/DomainInParameterMeta.java index a7f404d34..4f6f31f44 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/DomainInParameterMeta.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/DomainInParameterMeta.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta.parameter; import static org.seasar.doma.internal.util.AssertionUtil.*; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/DomainListParameterMeta.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/DomainListParameterMeta.java index ab4ef344f..2b0a37804 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/DomainListParameterMeta.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/DomainListParameterMeta.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta.parameter; import static org.seasar.doma.internal.util.AssertionUtil.*; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/DomainOutParameterMeta.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/DomainOutParameterMeta.java index ba734a79f..3d79af02a 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/DomainOutParameterMeta.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/DomainOutParameterMeta.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta.parameter; import static org.seasar.doma.internal.util.AssertionUtil.*; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/DomainResultListParameterMeta.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/DomainResultListParameterMeta.java index 39b62b733..9ff40b55b 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/DomainResultListParameterMeta.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/DomainResultListParameterMeta.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta.parameter; import static org.seasar.doma.internal.util.AssertionUtil.*; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/DomainSingleResultParameterMeta.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/DomainSingleResultParameterMeta.java index 8decfe346..aa8940b36 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/DomainSingleResultParameterMeta.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/DomainSingleResultParameterMeta.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta.parameter; import static org.seasar.doma.internal.util.AssertionUtil.*; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/EntityListParameterMeta.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/EntityListParameterMeta.java index 521d165a0..1b1e5d676 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/EntityListParameterMeta.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/EntityListParameterMeta.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta.parameter; import static org.seasar.doma.internal.util.AssertionUtil.*; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/EntityResultListParameterMeta.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/EntityResultListParameterMeta.java index 34b23707d..89f0d045c 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/EntityResultListParameterMeta.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/EntityResultListParameterMeta.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta.parameter; import static org.seasar.doma.internal.util.AssertionUtil.*; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/MapListParameterMeta.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/MapListParameterMeta.java index f308cfe0f..fa75eddf5 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/MapListParameterMeta.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/MapListParameterMeta.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta.parameter; import static org.seasar.doma.internal.util.AssertionUtil.*; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/MapResultListParameterMeta.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/MapResultListParameterMeta.java index fa7a3313e..17b552f4b 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/MapResultListParameterMeta.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/MapResultListParameterMeta.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta.parameter; import static org.seasar.doma.internal.util.AssertionUtil.*; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/OptionalBasicInOutParameterMeta.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/OptionalBasicInOutParameterMeta.java index d5a0c11f2..1f79c0971 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/OptionalBasicInOutParameterMeta.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/OptionalBasicInOutParameterMeta.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta.parameter; import static org.seasar.doma.internal.util.AssertionUtil.*; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/OptionalBasicInParameterMeta.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/OptionalBasicInParameterMeta.java index cfb57b42d..4fbef16a9 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/OptionalBasicInParameterMeta.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/OptionalBasicInParameterMeta.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta.parameter; import static org.seasar.doma.internal.util.AssertionUtil.*; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/OptionalBasicListParameterMeta.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/OptionalBasicListParameterMeta.java index 578eef5c7..e9aebddcf 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/OptionalBasicListParameterMeta.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/OptionalBasicListParameterMeta.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta.parameter; import static org.seasar.doma.internal.util.AssertionUtil.*; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/OptionalBasicOutParameterMeta.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/OptionalBasicOutParameterMeta.java index 9c8bcce24..b04a88dd3 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/OptionalBasicOutParameterMeta.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/OptionalBasicOutParameterMeta.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta.parameter; import static org.seasar.doma.internal.util.AssertionUtil.*; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/OptionalBasicResultListParameterMeta.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/OptionalBasicResultListParameterMeta.java index 4a88c7fcc..3ca575be8 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/OptionalBasicResultListParameterMeta.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/OptionalBasicResultListParameterMeta.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta.parameter; import static org.seasar.doma.internal.util.AssertionUtil.*; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/OptionalBasicSingleResultParameterMeta.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/OptionalBasicSingleResultParameterMeta.java index 539160080..4ca7c2187 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/OptionalBasicSingleResultParameterMeta.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/OptionalBasicSingleResultParameterMeta.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta.parameter; import static org.seasar.doma.internal.util.AssertionUtil.*; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/OptionalDomainInOutParameterMeta.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/OptionalDomainInOutParameterMeta.java index c3894ce0f..b5e2c8c02 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/OptionalDomainInOutParameterMeta.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/OptionalDomainInOutParameterMeta.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta.parameter; import static org.seasar.doma.internal.util.AssertionUtil.*; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/OptionalDomainInParameterMeta.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/OptionalDomainInParameterMeta.java index fbe19f2b8..389a28762 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/OptionalDomainInParameterMeta.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/OptionalDomainInParameterMeta.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta.parameter; import static org.seasar.doma.internal.util.AssertionUtil.*; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/OptionalDomainListParameterMeta.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/OptionalDomainListParameterMeta.java index e36192d6b..b24e91d28 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/OptionalDomainListParameterMeta.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/OptionalDomainListParameterMeta.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta.parameter; import static org.seasar.doma.internal.util.AssertionUtil.*; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/OptionalDomainOutParameterMeta.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/OptionalDomainOutParameterMeta.java index a8fcd77f6..d71cea554 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/OptionalDomainOutParameterMeta.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/OptionalDomainOutParameterMeta.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta.parameter; import static org.seasar.doma.internal.util.AssertionUtil.*; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/OptionalDomainResultListParameterMeta.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/OptionalDomainResultListParameterMeta.java index 4b614f986..f444f5de6 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/OptionalDomainResultListParameterMeta.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/OptionalDomainResultListParameterMeta.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta.parameter; import static org.seasar.doma.internal.util.AssertionUtil.*; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/OptionalDomainSingleResultParameterMeta.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/OptionalDomainSingleResultParameterMeta.java index f3d58ee2b..b33a4c099 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/OptionalDomainSingleResultParameterMeta.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/OptionalDomainSingleResultParameterMeta.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta.parameter; import static org.seasar.doma.internal.util.AssertionUtil.*; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/OptionalDoubleInOutParameterMeta.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/OptionalDoubleInOutParameterMeta.java index fdfafb3b6..0e33c5488 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/OptionalDoubleInOutParameterMeta.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/OptionalDoubleInOutParameterMeta.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta.parameter; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/OptionalDoubleInParameterMeta.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/OptionalDoubleInParameterMeta.java index 4a4f4d66a..c53ec9b1b 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/OptionalDoubleInParameterMeta.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/OptionalDoubleInParameterMeta.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta.parameter; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/OptionalDoubleListParameterMeta.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/OptionalDoubleListParameterMeta.java index 59d05c851..649e997c3 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/OptionalDoubleListParameterMeta.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/OptionalDoubleListParameterMeta.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta.parameter; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/OptionalDoubleOutParameterMeta.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/OptionalDoubleOutParameterMeta.java index 80f507178..a840e047c 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/OptionalDoubleOutParameterMeta.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/OptionalDoubleOutParameterMeta.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta.parameter; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/OptionalDoubleResultListParameterMeta.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/OptionalDoubleResultListParameterMeta.java index 3a7b4a364..a665c5536 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/OptionalDoubleResultListParameterMeta.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/OptionalDoubleResultListParameterMeta.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta.parameter; public class OptionalDoubleResultListParameterMeta implements ResultListParameterMeta { diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/OptionalDoubleSingleResultParameterMeta.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/OptionalDoubleSingleResultParameterMeta.java index c740eefc5..2f581b4b4 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/OptionalDoubleSingleResultParameterMeta.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/OptionalDoubleSingleResultParameterMeta.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta.parameter; public class OptionalDoubleSingleResultParameterMeta implements SingleResultParameterMeta { diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/OptionalIntInOutParameterMeta.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/OptionalIntInOutParameterMeta.java index 1bfe4cb48..12377c484 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/OptionalIntInOutParameterMeta.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/OptionalIntInOutParameterMeta.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta.parameter; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/OptionalIntInParameterMeta.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/OptionalIntInParameterMeta.java index ae7cf7447..8bc134047 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/OptionalIntInParameterMeta.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/OptionalIntInParameterMeta.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta.parameter; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/OptionalIntListParameterMeta.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/OptionalIntListParameterMeta.java index c929d4b62..1f8bd0995 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/OptionalIntListParameterMeta.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/OptionalIntListParameterMeta.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta.parameter; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/OptionalIntOutParameterMeta.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/OptionalIntOutParameterMeta.java index e4dc800a7..bbb5a55aa 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/OptionalIntOutParameterMeta.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/OptionalIntOutParameterMeta.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta.parameter; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/OptionalIntResultListParameterMeta.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/OptionalIntResultListParameterMeta.java index a37fd87a2..5e61224d8 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/OptionalIntResultListParameterMeta.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/OptionalIntResultListParameterMeta.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta.parameter; public class OptionalIntResultListParameterMeta implements ResultListParameterMeta { diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/OptionalIntSingleResultParameterMeta.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/OptionalIntSingleResultParameterMeta.java index a63395865..538775cf0 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/OptionalIntSingleResultParameterMeta.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/OptionalIntSingleResultParameterMeta.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta.parameter; public class OptionalIntSingleResultParameterMeta implements SingleResultParameterMeta { diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/OptionalLongInOutParameterMeta.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/OptionalLongInOutParameterMeta.java index 80741e353..e21739c73 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/OptionalLongInOutParameterMeta.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/OptionalLongInOutParameterMeta.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta.parameter; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/OptionalLongInParameterMeta.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/OptionalLongInParameterMeta.java index 569a7abd9..1aea7a520 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/OptionalLongInParameterMeta.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/OptionalLongInParameterMeta.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta.parameter; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/OptionalLongListParameterMeta.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/OptionalLongListParameterMeta.java index da1cf1e99..525635000 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/OptionalLongListParameterMeta.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/OptionalLongListParameterMeta.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta.parameter; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/OptionalLongOutParameterMeta.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/OptionalLongOutParameterMeta.java index 59485fd42..eb76443cc 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/OptionalLongOutParameterMeta.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/OptionalLongOutParameterMeta.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta.parameter; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/OptionalLongResultListParameterMeta.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/OptionalLongResultListParameterMeta.java index aeb475ecb..ef4b3aee5 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/OptionalLongResultListParameterMeta.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/OptionalLongResultListParameterMeta.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta.parameter; public class OptionalLongResultListParameterMeta implements ResultListParameterMeta { diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/OptionalLongSingleResultParameterMeta.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/OptionalLongSingleResultParameterMeta.java index e145d585c..8ef58c2b5 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/OptionalLongSingleResultParameterMeta.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/OptionalLongSingleResultParameterMeta.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta.parameter; public class OptionalLongSingleResultParameterMeta implements SingleResultParameterMeta { diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/ResultListParameterMeta.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/ResultListParameterMeta.java index c5f038352..92062c768 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/ResultListParameterMeta.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/ResultListParameterMeta.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta.parameter; interface ResultListParameterMeta extends ResultParameterMeta {} diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/ResultParameterMeta.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/ResultParameterMeta.java index d076ec750..d11ac148f 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/ResultParameterMeta.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/ResultParameterMeta.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta.parameter; public interface ResultParameterMeta extends CallableSqlParameterMeta {} diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/SingleResultParameterMeta.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/SingleResultParameterMeta.java index 056502bf7..fba2e23f6 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/SingleResultParameterMeta.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/parameter/SingleResultParameterMeta.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta.parameter; interface SingleResultParameterMeta extends ResultParameterMeta {} diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/AbstractCreateQueryMeta.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/AbstractCreateQueryMeta.java index 8eacb9f42..0f5e6e060 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/AbstractCreateQueryMeta.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/AbstractCreateQueryMeta.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta.query; import javax.lang.model.element.ExecutableElement; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/AbstractCreateQueryMetaFactory.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/AbstractCreateQueryMetaFactory.java index 7dbe5b32f..954ea58bd 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/AbstractCreateQueryMetaFactory.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/AbstractCreateQueryMetaFactory.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta.query; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/AbstractQueryMeta.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/AbstractQueryMeta.java index 11c366de3..6f4a51210 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/AbstractQueryMeta.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/AbstractQueryMeta.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta.query; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/AbstractQueryMetaFactory.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/AbstractQueryMetaFactory.java index 72e8259a5..24f89d23f 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/AbstractQueryMetaFactory.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/AbstractQueryMetaFactory.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta.query; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/AbstractSqlFileQueryMeta.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/AbstractSqlFileQueryMeta.java index 028ee2a2a..4a41b8bfe 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/AbstractSqlFileQueryMeta.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/AbstractSqlFileQueryMeta.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta.query; import javax.lang.model.element.ExecutableElement; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/AbstractSqlFileQueryMetaFactory.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/AbstractSqlFileQueryMetaFactory.java index a674b9978..d060be49e 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/AbstractSqlFileQueryMetaFactory.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/AbstractSqlFileQueryMetaFactory.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta.query; import static org.seasar.doma.internal.util.AssertionUtil.assertUnreachable; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/ArrayCreateQueryMeta.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/ArrayCreateQueryMeta.java index 10e6cde3a..b444bfc99 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/ArrayCreateQueryMeta.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/ArrayCreateQueryMeta.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta.query; import javax.lang.model.element.ExecutableElement; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/ArrayCreateQueryMetaFactory.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/ArrayCreateQueryMetaFactory.java index a3285a1c0..4d46afeb1 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/ArrayCreateQueryMetaFactory.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/ArrayCreateQueryMetaFactory.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta.query; import java.sql.Array; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/AutoBatchModifyQueryMeta.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/AutoBatchModifyQueryMeta.java index b27ef652e..8e6c75951 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/AutoBatchModifyQueryMeta.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/AutoBatchModifyQueryMeta.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta.query; import java.util.List; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/AutoBatchModifyQueryMetaFactory.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/AutoBatchModifyQueryMetaFactory.java index b57c53a51..6fd266b17 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/AutoBatchModifyQueryMetaFactory.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/AutoBatchModifyQueryMetaFactory.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta.query; import java.util.List; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/AutoFunctionQueryMeta.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/AutoFunctionQueryMeta.java index 50295d6d5..a7e2379fd 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/AutoFunctionQueryMeta.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/AutoFunctionQueryMeta.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta.query; import javax.lang.model.element.ExecutableElement; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/AutoFunctionQueryMetaFactory.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/AutoFunctionQueryMetaFactory.java index da3c299d7..4e7c28359 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/AutoFunctionQueryMetaFactory.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/AutoFunctionQueryMetaFactory.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta.query; import javax.lang.model.element.ExecutableElement; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/AutoModifyQueryMeta.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/AutoModifyQueryMeta.java index e01c47fc1..17f29181e 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/AutoModifyQueryMeta.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/AutoModifyQueryMeta.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta.query; import java.util.List; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/AutoModifyQueryMetaFactory.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/AutoModifyQueryMetaFactory.java index 2412da7f0..c836c88a3 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/AutoModifyQueryMetaFactory.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/AutoModifyQueryMetaFactory.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta.query; import java.util.List; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/AutoModuleQueryMeta.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/AutoModuleQueryMeta.java index 47b98ccf1..7cb961d65 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/AutoModuleQueryMeta.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/AutoModuleQueryMeta.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta.query; import java.util.ArrayList; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/AutoModuleQueryMetaFactory.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/AutoModuleQueryMetaFactory.java index c64658dc8..c083e2a8e 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/AutoModuleQueryMetaFactory.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/AutoModuleQueryMetaFactory.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta.query; import javax.lang.model.element.ExecutableElement; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/AutoMultiInsertQueryMeta.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/AutoMultiInsertQueryMeta.java index d9a4ee944..e0b16add1 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/AutoMultiInsertQueryMeta.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/AutoMultiInsertQueryMeta.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta.query; import java.util.List; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/AutoMultiInsertQueryMetaFactory.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/AutoMultiInsertQueryMetaFactory.java index 328e7e1f6..2755f32ce 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/AutoMultiInsertQueryMetaFactory.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/AutoMultiInsertQueryMetaFactory.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta.query; import java.util.List; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/AutoProcedureQueryMeta.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/AutoProcedureQueryMeta.java index f31023a5e..ac4de6ccd 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/AutoProcedureQueryMeta.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/AutoProcedureQueryMeta.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta.query; import javax.lang.model.element.ExecutableElement; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/AutoProcedureQueryMetaFactory.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/AutoProcedureQueryMetaFactory.java index f175b6fb6..538b9999b 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/AutoProcedureQueryMetaFactory.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/AutoProcedureQueryMetaFactory.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta.query; import javax.lang.model.element.ExecutableElement; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/BlobCreateQueryMeta.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/BlobCreateQueryMeta.java index ad4c57496..fc4c0ce36 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/BlobCreateQueryMeta.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/BlobCreateQueryMeta.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta.query; import javax.lang.model.element.ExecutableElement; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/BlobCreateQueryMetaFactory.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/BlobCreateQueryMetaFactory.java index e9d07e83b..0f57fcad5 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/BlobCreateQueryMetaFactory.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/BlobCreateQueryMetaFactory.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta.query; import java.sql.Blob; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/ClobCreateQueryMeta.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/ClobCreateQueryMeta.java index 705e355ae..3e5c95955 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/ClobCreateQueryMeta.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/ClobCreateQueryMeta.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta.query; import javax.lang.model.element.ExecutableElement; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/ClobCreateQueryMetaFactory.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/ClobCreateQueryMetaFactory.java index 46cae453a..2ccd5b270 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/ClobCreateQueryMetaFactory.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/ClobCreateQueryMetaFactory.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta.query; import java.sql.Clob; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/DefaultQueryMeta.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/DefaultQueryMeta.java index c59c568db..bdb357640 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/DefaultQueryMeta.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/DefaultQueryMeta.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta.query; import javax.lang.model.element.ExecutableElement; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/DefaultQueryMetaFactory.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/DefaultQueryMetaFactory.java index b4005fcaa..49af69863 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/DefaultQueryMetaFactory.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/DefaultQueryMetaFactory.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta.query; import javax.lang.model.element.ExecutableElement; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/NClobCreateQueryMeta.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/NClobCreateQueryMeta.java index de9935a44..61f812a4d 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/NClobCreateQueryMeta.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/NClobCreateQueryMeta.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta.query; import javax.lang.model.element.ExecutableElement; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/NClobCreateQueryMetaFactory.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/NClobCreateQueryMetaFactory.java index 8df4fcdde..f37a3a5e1 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/NClobCreateQueryMetaFactory.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/NClobCreateQueryMetaFactory.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta.query; import java.sql.NClob; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/QueryKind.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/QueryKind.java index 75fd05746..0a3ec7793 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/QueryKind.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/QueryKind.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta.query; import org.seasar.doma.jdbc.command.BatchDeleteCommand; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/QueryMeta.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/QueryMeta.java index 081f89cb5..a515639a1 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/QueryMeta.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/QueryMeta.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta.query; import java.util.List; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/QueryMetaFactory.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/QueryMetaFactory.java index e71de9cd9..d9dd54256 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/QueryMetaFactory.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/QueryMetaFactory.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta.query; public interface QueryMetaFactory { diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/QueryMetaVisitor.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/QueryMetaVisitor.java index 46ea018bc..42a9869a3 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/QueryMetaVisitor.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/QueryMetaVisitor.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta.query; public interface QueryMetaVisitor { diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/QueryParameterMeta.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/QueryParameterMeta.java index a71fa65a5..9d75fdb31 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/QueryParameterMeta.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/QueryParameterMeta.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta.query; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/QueryParameterMetaFactory.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/QueryParameterMetaFactory.java index 6fe238f96..cc9e7a351 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/QueryParameterMetaFactory.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/QueryParameterMetaFactory.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta.query; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/QueryReturnMeta.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/QueryReturnMeta.java index aef3f2962..9d6be6add 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/QueryReturnMeta.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/QueryReturnMeta.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta.query; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/QueryReturnMetaFactory.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/QueryReturnMetaFactory.java index 9c6078ea4..455794d8b 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/QueryReturnMetaFactory.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/QueryReturnMetaFactory.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta.query; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/SQLXMLCreateQueryMeta.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/SQLXMLCreateQueryMeta.java index af65a3ad9..2747c6601 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/SQLXMLCreateQueryMeta.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/SQLXMLCreateQueryMeta.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta.query; import javax.lang.model.element.ExecutableElement; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/SQLXMLCreateQueryMetaFactory.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/SQLXMLCreateQueryMetaFactory.java index 10c177d17..42ef35d4b 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/SQLXMLCreateQueryMetaFactory.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/SQLXMLCreateQueryMetaFactory.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta.query; import java.sql.SQLXML; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/SqlFileBatchModifyQueryMeta.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/SqlFileBatchModifyQueryMeta.java index cb3ff5372..908b537dc 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/SqlFileBatchModifyQueryMeta.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/SqlFileBatchModifyQueryMeta.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta.query; import java.util.List; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/SqlFileBatchModifyQueryMetaFactory.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/SqlFileBatchModifyQueryMetaFactory.java index 7a8fd87a0..930807376 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/SqlFileBatchModifyQueryMetaFactory.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/SqlFileBatchModifyQueryMetaFactory.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta.query; import java.util.LinkedHashMap; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/SqlFileModifyQueryMeta.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/SqlFileModifyQueryMeta.java index bc7321aff..d4547b14b 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/SqlFileModifyQueryMeta.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/SqlFileModifyQueryMeta.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta.query; import java.util.List; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/SqlFileModifyQueryMetaFactory.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/SqlFileModifyQueryMetaFactory.java index 4df5d7068..9a788caf3 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/SqlFileModifyQueryMetaFactory.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/SqlFileModifyQueryMetaFactory.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta.query; import javax.lang.model.element.ExecutableElement; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/SqlFileScriptQueryMeta.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/SqlFileScriptQueryMeta.java index 6748fa3eb..7b99612b4 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/SqlFileScriptQueryMeta.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/SqlFileScriptQueryMeta.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta.query; import javax.lang.model.element.ExecutableElement; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/SqlFileScriptQueryMetaFactory.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/SqlFileScriptQueryMetaFactory.java index 2a7ee99b4..ba15ec02d 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/SqlFileScriptQueryMetaFactory.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/SqlFileScriptQueryMetaFactory.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta.query; import java.io.File; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/SqlFileSelectQueryMeta.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/SqlFileSelectQueryMeta.java index 52db66eb9..26c287e0a 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/SqlFileSelectQueryMeta.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/SqlFileSelectQueryMeta.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta.query; import javax.lang.model.element.ExecutableElement; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/SqlFileSelectQueryMetaFactory.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/SqlFileSelectQueryMetaFactory.java index c74431762..e42dc6f6a 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/SqlFileSelectQueryMetaFactory.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/SqlFileSelectQueryMetaFactory.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta.query; import javax.lang.model.element.ExecutableElement; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/SqlProcessorQueryMeta.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/SqlProcessorQueryMeta.java index eac05f301..3aa32e821 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/SqlProcessorQueryMeta.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/SqlProcessorQueryMeta.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta.query; import javax.lang.model.element.ExecutableElement; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/SqlProcessorQueryMetaFactory.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/SqlProcessorQueryMetaFactory.java index f1d288b55..8d31406a9 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/SqlProcessorQueryMetaFactory.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/meta/query/SqlProcessorQueryMetaFactory.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta.query; import javax.lang.model.element.ExecutableElement; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/processor/AbstractDomainProcessor.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/processor/AbstractDomainProcessor.java index 3619c3930..b9f7f3f68 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/processor/AbstractDomainProcessor.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/processor/AbstractDomainProcessor.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/processor/AbstractGeneratingProcessor.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/processor/AbstractGeneratingProcessor.java index 785b1ada3..b2219353a 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/processor/AbstractGeneratingProcessor.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/processor/AbstractGeneratingProcessor.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor; import java.lang.annotation.Annotation; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/processor/AbstractProcessor.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/processor/AbstractProcessor.java index 2a233d13b..e333e82f2 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/processor/AbstractProcessor.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/processor/AbstractProcessor.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor; import java.io.PrintWriter; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/processor/DaoProcessor.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/processor/DaoProcessor.java index 3fdd7c7d7..1a988dd63 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/processor/DaoProcessor.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/processor/DaoProcessor.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/processor/DataTypeProcessor.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/processor/DataTypeProcessor.java index ff38a14b8..41f8c6af9 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/processor/DataTypeProcessor.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/processor/DataTypeProcessor.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor; import javax.annotation.processing.SupportedAnnotationTypes; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/processor/DomainConvertersProcessor.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/processor/DomainConvertersProcessor.java index 293003799..b38333f7c 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/processor/DomainConvertersProcessor.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/processor/DomainConvertersProcessor.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor; import java.util.Set; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/processor/DomainProcessor.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/processor/DomainProcessor.java index 0381e9bf2..728345e4b 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/processor/DomainProcessor.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/processor/DomainProcessor.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor; import javax.annotation.processing.SupportedAnnotationTypes; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/processor/EmbeddableProcessor.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/processor/EmbeddableProcessor.java index 1c62f1111..e592f61c9 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/processor/EmbeddableProcessor.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/processor/EmbeddableProcessor.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/processor/EntityProcessor.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/processor/EntityProcessor.java index 2e8017391..7fb4215f6 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/processor/EntityProcessor.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/processor/EntityProcessor.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/processor/ExternalDomainProcessor.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/processor/ExternalDomainProcessor.java index aae20af04..74d4db90c 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/processor/ExternalDomainProcessor.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/processor/ExternalDomainProcessor.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/processor/ScopeProcessor.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/processor/ScopeProcessor.java index 8a71067fc..64045780b 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/processor/ScopeProcessor.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/processor/ScopeProcessor.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor; import java.util.Set; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/util/AnnotationValueUtil.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/util/AnnotationValueUtil.java index c54884898..f61f48362 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/util/AnnotationValueUtil.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/util/AnnotationValueUtil.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.util; import java.util.ArrayList; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/validator/BatchSqlValidator.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/validator/BatchSqlValidator.java index 5cfcc9909..351d7dc99 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/validator/BatchSqlValidator.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/validator/BatchSqlValidator.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.validator; import java.util.LinkedHashMap; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/validator/ExpressionValidator.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/validator/ExpressionValidator.java index 822b46cab..e8eae966d 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/validator/ExpressionValidator.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/validator/ExpressionValidator.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.validator; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-processor/src/main/java/org/seasar/doma/internal/apt/validator/SqlValidator.java b/doma-processor/src/main/java/org/seasar/doma/internal/apt/validator/SqlValidator.java index 5817c6421..88601883b 100644 --- a/doma-processor/src/main/java/org/seasar/doma/internal/apt/validator/SqlValidator.java +++ b/doma-processor/src/main/java/org/seasar/doma/internal/apt/validator/SqlValidator.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.validator; import static org.seasar.doma.internal.util.AssertionUtil.assertNotNull; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/CompilationUnitsParameterResolver.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/CompilationUnitsParameterResolver.java index 5ae66b2d8..78ebbb883 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/CompilationUnitsParameterResolver.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/CompilationUnitsParameterResolver.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt; import java.util.Arrays; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/CompilerExtension.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/CompilerExtension.java index 5a2427b0c..f11f317a4 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/CompilerExtension.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/CompilerExtension.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt; import static org.junit.jupiter.api.Assertions.fail; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/CompilerKind.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/CompilerKind.java index b242f4ec5..08192e7d3 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/CompilerKind.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/CompilerKind.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt; import javax.tools.JavaCompiler; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/CompilerSupport.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/CompilerSupport.java index a85745f7a..a08695159 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/CompilerSupport.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/CompilerSupport.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt; import static org.junit.jupiter.api.Assertions.fail; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/CriteriaGeneratedClassNameParameterResolver.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/CriteriaGeneratedClassNameParameterResolver.java index a6ee6d52b..34f49527a 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/CriteriaGeneratedClassNameParameterResolver.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/CriteriaGeneratedClassNameParameterResolver.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt; import static org.junit.jupiter.api.Assertions.assertNotNull; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/GeneratedClassNameParameterResolver.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/GeneratedClassNameParameterResolver.java index b0db1815b..0b101feb7 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/GeneratedClassNameParameterResolver.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/GeneratedClassNameParameterResolver.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt; import static org.junit.jupiter.api.Assertions.assertNotNull; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/MoreElementsTest.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/MoreElementsTest.java index c2e183101..5ff24c5f2 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/MoreElementsTest.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/MoreElementsTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/MoreTypesTest.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/MoreTypesTest.java index 84ec282f8..24c85ba9e 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/MoreTypesTest.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/MoreTypesTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/ResourceParameterResolver.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/ResourceParameterResolver.java index 41f86d57b..32e0e0127 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/ResourceParameterResolver.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/ResourceParameterResolver.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt; import static org.junit.jupiter.api.Assertions.assertNotNull; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/ResourcesTest.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/ResourcesTest.java index 03489f95a..3e39b9ee4 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/ResourcesTest.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/ResourcesTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt; import static org.junit.jupiter.api.Assertions.assertNotNull; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/Run.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/Run.java index 799c0a1a5..584cbe5c3 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/Run.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/Run.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt; import java.lang.annotation.ElementType; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/SimpleParameterResolver.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/SimpleParameterResolver.java index 7c060b7f4..0ebc8cf04 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/SimpleParameterResolver.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/SimpleParameterResolver.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt; import static org.junit.jupiter.api.Assertions.assertNotNull; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/TestProcessor.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/TestProcessor.java index d5300a62b..4b21306ef 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/TestProcessor.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/TestProcessor.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt; import java.util.Collections; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/cdi/ApplicationScoped.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/cdi/ApplicationScoped.java index 1b632e0d1..98873abc3 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/cdi/ApplicationScoped.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/cdi/ApplicationScoped.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.cdi; import static java.lang.annotation.ElementType.TYPE; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/decl/DeclarationsTest.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/decl/DeclarationsTest.java index c347ed383..e588799a7 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/decl/DeclarationsTest.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/decl/DeclarationsTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.decl; import static org.junit.jupiter.api.Assertions.*; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/decl/TypeDeclarationTest.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/decl/TypeDeclarationTest.java index 4ac25f5f6..3bc724a1c 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/decl/TypeDeclarationTest.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/decl/TypeDeclarationTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.decl; import static org.junit.jupiter.api.Assertions.*; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/generator/PrinterTest.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/generator/PrinterTest.java index 924456da2..9c91478a5 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/generator/PrinterTest.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/generator/PrinterTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.generator; import static org.junit.jupiter.api.Assertions.*; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/lombok/AccessLevel.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/lombok/AccessLevel.java index 45ab63d84..f461c835e 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/lombok/AccessLevel.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/lombok/AccessLevel.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.lombok; public enum AccessLevel { diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/lombok/AllArgsConstructor.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/lombok/AllArgsConstructor.java index 0fc780102..0ef21407d 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/lombok/AllArgsConstructor.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/lombok/AllArgsConstructor.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.lombok; import java.lang.annotation.ElementType; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/lombok/Value.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/lombok/Value.java index bd3613481..8e71d3d69 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/lombok/Value.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/lombok/Value.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.lombok; import java.lang.annotation.ElementType; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/meta/EntityMetaFactoryTest.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/meta/EntityMetaFactoryTest.java index 35222b6eb..8b9c43d68 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/meta/EntityMetaFactoryTest.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/meta/EntityMetaFactoryTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/meta/NamingType1Entity.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/meta/NamingType1Entity.java index 2a96d825a..40ed3789c 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/meta/NamingType1Entity.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/meta/NamingType1Entity.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta; import org.seasar.doma.Entity; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/meta/NamingType2Entity.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/meta/NamingType2Entity.java index a70b62dbe..457dd9d1a 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/meta/NamingType2Entity.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/meta/NamingType2Entity.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta; import org.seasar.doma.Entity; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/meta/NamingType3Entity.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/meta/NamingType3Entity.java index 9cd47aeb6..d400ac381 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/meta/NamingType3Entity.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/meta/NamingType3Entity.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.meta; import org.seasar.doma.Entity; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/Age.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/Age.java index 96051a5a7..9b4fed277 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/Age.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/Age.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import org.seasar.doma.Domain; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/AnnotateWithDao.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/AnnotateWithDao.java index 396efbb16..61ab13508 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/AnnotateWithDao.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/AnnotateWithDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import org.seasar.doma.AnnotateWith; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/AnnotationConfig.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/AnnotationConfig.java index 1d35b85dc..99090fd1f 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/AnnotationConfig.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/AnnotationConfig.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import java.lang.annotation.ElementType; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/AnnotationConfigDao.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/AnnotationConfigDao.java index cc37dbf65..cfee22353 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/AnnotationConfigDao.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/AnnotationConfigDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import org.seasar.doma.Dao; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/AnnotationConflictedDao.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/AnnotationConflictedDao.java index 675c6ff26..8722c8440 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/AnnotationConflictedDao.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/AnnotationConflictedDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import org.seasar.doma.Dao; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/AnnotationNotFoundDao.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/AnnotationNotFoundDao.java index 55df8148e..086f8f375 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/AnnotationNotFoundDao.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/AnnotationNotFoundDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import org.seasar.doma.Dao; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/ApplicationScopedDao.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/ApplicationScopedDao.java index 5a0773d54..735bde54a 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/ApplicationScopedDao.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/ApplicationScopedDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import org.seasar.doma.AnnotateWith; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/ArrayFactoryDao.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/ArrayFactoryDao.java index 2eefcf373..5b4749d08 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/ArrayFactoryDao.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/ArrayFactoryDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import java.sql.Array; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/AutoBatchUpdateDao.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/AutoBatchUpdateDao.java index ef285dbd2..0edfc1957 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/AutoBatchUpdateDao.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/AutoBatchUpdateDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import java.util.List; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/AutoDeleteDao.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/AutoDeleteDao.java index 0aee7a6d2..d654b2623 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/AutoDeleteDao.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/AutoDeleteDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import org.seasar.doma.Dao; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/AutoFunctionDao.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/AutoFunctionDao.java index 561d1e96e..8b07568ed 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/AutoFunctionDao.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/AutoFunctionDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import java.util.List; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/AutoFunctionOptionalParameterDao.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/AutoFunctionOptionalParameterDao.java index e7faa3b25..fc262e29a 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/AutoFunctionOptionalParameterDao.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/AutoFunctionOptionalParameterDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import java.util.List; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/AutoInsertDao.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/AutoInsertDao.java index bdb2998f5..14f9f682e 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/AutoInsertDao.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/AutoInsertDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import org.seasar.doma.Dao; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/AutoMultiInsertDao.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/AutoMultiInsertDao.java index 09ad3398e..981dea79d 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/AutoMultiInsertDao.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/AutoMultiInsertDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import java.util.List; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/AutoProcedureDao.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/AutoProcedureDao.java index 42905ceb3..4f005ed8e 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/AutoProcedureDao.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/AutoProcedureDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import org.seasar.doma.Dao; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/AutoProcedureOptionalParameterDao.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/AutoProcedureOptionalParameterDao.java index 305154ffc..5a74d28fb 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/AutoProcedureOptionalParameterDao.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/AutoProcedureOptionalParameterDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import java.util.Optional; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/AutoUpdateDao.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/AutoUpdateDao.java index 9a9f45aab..2d8cf034a 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/AutoUpdateDao.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/AutoUpdateDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import org.seasar.doma.Dao; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/BasicResultDao.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/BasicResultDao.java index c6081ee9d..8d9e67d8f 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/BasicResultDao.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/BasicResultDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import java.util.List; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/BatchInsertIllegalDuplicateKeyDao.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/BatchInsertIllegalDuplicateKeyDao.java index 5eee80fab..140fb9ee8 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/BatchInsertIllegalDuplicateKeyDao.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/BatchInsertIllegalDuplicateKeyDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import java.util.List; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/BlobFactoryDao.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/BlobFactoryDao.java index 804dd1c0f..7f743b45f 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/BlobFactoryDao.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/BlobFactoryDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import java.sql.Blob; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/ClassAnnotation.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/ClassAnnotation.java index 4c58adb36..10bdec43f 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/ClassAnnotation.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/ClassAnnotation.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import java.lang.annotation.ElementType; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/ClassAnnotation2.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/ClassAnnotation2.java index b1c286115..259f643eb 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/ClassAnnotation2.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/ClassAnnotation2.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import java.lang.annotation.ElementType; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/ClobFactoryDao.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/ClobFactoryDao.java index 6a8362d87..f6f9e1e97 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/ClobFactoryDao.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/ClobFactoryDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import java.sql.Clob; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/CollectorDao.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/CollectorDao.java index 2cf4b709f..757ce6fc0 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/CollectorDao.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/CollectorDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import java.util.Map; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/CollectorOptionalParameterDao.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/CollectorOptionalParameterDao.java index 6585ff179..168157448 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/CollectorOptionalParameterDao.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/CollectorOptionalParameterDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import java.util.Optional; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/ConfigAnnotateWithDao.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/ConfigAnnotateWithDao.java index 72240b8ce..837b9ed25 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/ConfigAnnotateWithDao.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/ConfigAnnotateWithDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import org.seasar.doma.AnnotateWith; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/ConstructorAnnotation.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/ConstructorAnnotation.java index 689147e15..4547c74da 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/ConstructorAnnotation.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/ConstructorAnnotation.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import java.lang.annotation.ElementType; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/ConstructorAnnotation2.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/ConstructorAnnotation2.java index 2e330b734..70af66d69 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/ConstructorAnnotation2.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/ConstructorAnnotation2.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import java.lang.annotation.ElementType; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/ConstructorParameterAnnotation.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/ConstructorParameterAnnotation.java index 7994f8a85..ba56567d6 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/ConstructorParameterAnnotation.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/ConstructorParameterAnnotation.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import java.lang.annotation.ElementType; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/ConstructorParameterAnnotation2.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/ConstructorParameterAnnotation2.java index 123a0d088..aa18e1743 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/ConstructorParameterAnnotation2.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/ConstructorParameterAnnotation2.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import java.lang.annotation.ElementType; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/DaoExtendsDao.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/DaoExtendsDao.java index 9ca22690f..5e7959411 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/DaoExtendsDao.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/DaoExtendsDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import org.seasar.doma.Dao; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/DaoProcessorTest.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/DaoProcessorTest.java index a35cb842f..af557d709 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/DaoProcessorTest.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/DaoProcessorTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import static org.junit.jupiter.api.Assertions.assertFalse; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/DefaultMethodDao.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/DefaultMethodDao.java index af2723f96..a669d79b2 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/DefaultMethodDao.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/DefaultMethodDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import java.math.BigDecimal; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/DelegateDaoDelegate.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/DelegateDaoDelegate.java index 10fdd669a..233692112 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/DelegateDaoDelegate.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/DelegateDaoDelegate.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import java.math.BigDecimal; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/DomainParameterDao.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/DomainParameterDao.java index 5efb7f7e5..e81ae3ce7 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/DomainParameterDao.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/DomainParameterDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import org.seasar.doma.Dao; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/DomainResultDao.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/DomainResultDao.java index b0ad2ae66..526bb55c3 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/DomainResultDao.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/DomainResultDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import java.util.List; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/ElementOfParamListUnspecifiedDao.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/ElementOfParamListUnspecifiedDao.java index 506275421..a60f0dbfd 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/ElementOfParamListUnspecifiedDao.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/ElementOfParamListUnspecifiedDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import java.util.List; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/ElementOfParamListWildcardTypeDao.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/ElementOfParamListWildcardTypeDao.java index eb0bd233c..8dfc04bc4 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/ElementOfParamListWildcardTypeDao.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/ElementOfParamListWildcardTypeDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import java.util.List; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/EmbeddedVariableDao.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/EmbeddedVariableDao.java index 1d3af927b..57064e67f 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/EmbeddedVariableDao.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/EmbeddedVariableDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import org.seasar.doma.Dao; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/EmpDao.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/EmpDao.java index b0a157db9..fc78e8336 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/EmpDao.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/EmpDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import java.math.BigDecimal; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/EmpDtoParameterDao.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/EmpDtoParameterDao.java index 3f143c895..51baf37b2 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/EmpDtoParameterDao.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/EmpDtoParameterDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import java.util.List; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/EmptySqlFileDao.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/EmptySqlFileDao.java index 823c04a07..f15ea89f8 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/EmptySqlFileDao.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/EmptySqlFileDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import org.seasar.doma.Dao; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/EnsureResultDao.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/EnsureResultDao.java index 84f1d06df..c673b4c7f 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/EnsureResultDao.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/EnsureResultDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import java.math.BigDecimal; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/EnsureResultMappingDao.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/EnsureResultMappingDao.java index 799b313ba..f38242f92 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/EnsureResultMappingDao.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/EnsureResultMappingDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import java.math.BigDecimal; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/EntityResultDao.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/EntityResultDao.java index ab2fce097..e847b4383 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/EntityResultDao.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/EntityResultDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import java.util.List; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/EnumDao.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/EnumDao.java index e501d1b32..2ce13518c 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/EnumDao.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/EnumDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import java.util.List; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/FunctionAbstractEntityListDao.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/FunctionAbstractEntityListDao.java index ff00ffc0b..fa5b08b91 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/FunctionAbstractEntityListDao.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/FunctionAbstractEntityListDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import java.util.List; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/FunctionDao.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/FunctionDao.java index 8b2701dc0..d3473281c 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/FunctionDao.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/FunctionDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import java.util.List; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/Height.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/Height.java index d7784241c..2f2c20c95 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/Height.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/Height.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import org.seasar.doma.Domain; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/IgnoreGeneratedKeysDao.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/IgnoreGeneratedKeysDao.java index fbd5514f3..a8d3b34d6 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/IgnoreGeneratedKeysDao.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/IgnoreGeneratedKeysDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import java.util.List; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/IllegalBatchModifyImmutableEmpDao.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/IllegalBatchModifyImmutableEmpDao.java index 819910765..85184cf0f 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/IllegalBatchModifyImmutableEmpDao.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/IllegalBatchModifyImmutableEmpDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import java.util.List; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/IllegalConstructorDelegateDaoDelegate.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/IllegalConstructorDelegateDaoDelegate.java index 2772013e9..1e50ee371 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/IllegalConstructorDelegateDaoDelegate.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/IllegalConstructorDelegateDaoDelegate.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; public class IllegalConstructorDelegateDaoDelegate {} diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/IllegalDelegateDaoDelegate.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/IllegalDelegateDaoDelegate.java index 01896131e..cd032caaf 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/IllegalDelegateDaoDelegate.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/IllegalDelegateDaoDelegate.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import org.seasar.doma.jdbc.Config; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/IllegalModifyImmutableEmpDao.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/IllegalModifyImmutableEmpDao.java index 2352ef5a2..69e664c28 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/IllegalModifyImmutableEmpDao.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/IllegalModifyImmutableEmpDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import org.seasar.doma.Dao; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/IllegalParameterNameDao.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/IllegalParameterNameDao.java index dfe168050..24027994b 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/IllegalParameterNameDao.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/IllegalParameterNameDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import org.seasar.doma.Dao; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/ImmutableEmpDao.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/ImmutableEmpDao.java index f273f8621..730d5272a 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/ImmutableEmpDao.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/ImmutableEmpDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import java.util.List; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/IncludeAndExcludeDao.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/IncludeAndExcludeDao.java index 78790d74e..fd2c1fc9d 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/IncludeAndExcludeDao.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/IncludeAndExcludeDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import org.seasar.doma.Dao; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/InsertIllegalDuplicateKeyDao.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/InsertIllegalDuplicateKeyDao.java index b687ac200..7836fb29c 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/InsertIllegalDuplicateKeyDao.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/InsertIllegalDuplicateKeyDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import org.seasar.doma.Dao; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/Issue214AbstractEntity.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/Issue214AbstractEntity.java index c8c5808b5..40308a10e 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/Issue214AbstractEntity.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/Issue214AbstractEntity.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; public class Issue214AbstractEntity implements Issue214EntityInterface2 { diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/Issue214AbstractEntity2.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/Issue214AbstractEntity2.java index 4ec139745..54995df15 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/Issue214AbstractEntity2.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/Issue214AbstractEntity2.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; public class Issue214AbstractEntity2 extends Issue214AbstractEntity { diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/Issue214Dao.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/Issue214Dao.java index 79017392b..e26cfe915 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/Issue214Dao.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/Issue214Dao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import org.seasar.doma.Dao; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/Issue214Entity.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/Issue214Entity.java index 42cc8e13a..6dd80842d 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/Issue214Entity.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/Issue214Entity.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import org.seasar.doma.Entity; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/Issue214EntityInterface.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/Issue214EntityInterface.java index b4d60a12f..7f357c78f 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/Issue214EntityInterface.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/Issue214EntityInterface.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; public interface Issue214EntityInterface { diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/Issue214EntityInterface2.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/Issue214EntityInterface2.java index 1cf17cc0c..38854a848 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/Issue214EntityInterface2.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/Issue214EntityInterface2.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; public interface Issue214EntityInterface2 extends Issue214EntityInterface { diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/Issue82Dao.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/Issue82Dao.java index c31fcb3f2..f820af8bf 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/Issue82Dao.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/Issue82Dao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import org.seasar.doma.Dao; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/IterableRawTypeParamDao.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/IterableRawTypeParamDao.java index 7d5bc37d1..7ff9c4073 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/IterableRawTypeParamDao.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/IterableRawTypeParamDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import java.util.List; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/IterableRawTypeReturnDao.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/IterableRawTypeReturnDao.java index eb5562b44..f24694386 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/IterableRawTypeReturnDao.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/IterableRawTypeReturnDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import java.util.List; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/IterableWildcardTypeParamDao.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/IterableWildcardTypeParamDao.java index fd4214726..ba4154da9 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/IterableWildcardTypeParamDao.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/IterableWildcardTypeParamDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import java.util.List; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/IterableWildcardTypeReturnDao.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/IterableWildcardTypeReturnDao.java index 32b65c301..39c98eab3 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/IterableWildcardTypeReturnDao.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/IterableWildcardTypeReturnDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import java.util.List; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/JobType.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/JobType.java index dce05e30c..9cd065fc1 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/JobType.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/JobType.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import org.seasar.doma.Domain; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/MapResultDao.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/MapResultDao.java index d7e6c2ba0..ddc231ffd 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/MapResultDao.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/MapResultDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import java.util.List; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/MethodAccessSqlValidationDao.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/MethodAccessSqlValidationDao.java index 7b6544a9a..9efa527df 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/MethodAccessSqlValidationDao.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/MethodAccessSqlValidationDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import org.seasar.doma.Dao; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/MultiDaoExtendsDao.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/MultiDaoExtendsDao.java index 30390265d..8c0ca80d6 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/MultiDaoExtendsDao.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/MultiDaoExtendsDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import org.seasar.doma.Dao; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/MultiInsertIllegalDuplicateKeyDao.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/MultiInsertIllegalDuplicateKeyDao.java index 33f93d8b5..f69836314 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/MultiInsertIllegalDuplicateKeyDao.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/MultiInsertIllegalDuplicateKeyDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import java.util.List; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/MultiInsertIllegalParameterSizeDao.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/MultiInsertIllegalParameterSizeDao.java index 8b2989cf1..27bec5498 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/MultiInsertIllegalParameterSizeDao.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/MultiInsertIllegalParameterSizeDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import java.util.List; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/MultiInsertIllegalParameterTypeDao.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/MultiInsertIllegalParameterTypeDao.java index 87f99fa7c..165c8a0e3 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/MultiInsertIllegalParameterTypeDao.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/MultiInsertIllegalParameterTypeDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import org.seasar.doma.Dao; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/MultiInsertIllegalReturnTypeDao.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/MultiInsertIllegalReturnTypeDao.java index b3f4c3655..1f88700ef 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/MultiInsertIllegalReturnTypeDao.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/MultiInsertIllegalReturnTypeDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import java.util.List; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/MultiInsertIllegalReturnTypeForImmutableEntityDao.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/MultiInsertIllegalReturnTypeForImmutableEntityDao.java index 043737d8d..9d36c381b 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/MultiInsertIllegalReturnTypeForImmutableEntityDao.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/MultiInsertIllegalReturnTypeForImmutableEntityDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import java.util.List; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/MultiInsertIllegalTypeArgumentDao.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/MultiInsertIllegalTypeArgumentDao.java index 9e04328fd..e7493545d 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/MultiInsertIllegalTypeArgumentDao.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/MultiInsertIllegalTypeArgumentDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import java.util.List; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/MultiParamMethodAccessSqlValidationDao.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/MultiParamMethodAccessSqlValidationDao.java index bf80799d7..2670d2317 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/MultiParamMethodAccessSqlValidationDao.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/MultiParamMethodAccessSqlValidationDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import org.seasar.doma.Dao; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/MultipleAnnotateWithDao.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/MultipleAnnotateWithDao.java index 755ed3748..b26bba4c7 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/MultipleAnnotateWithDao.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/MultipleAnnotateWithDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import org.seasar.doma.AnnotateWith; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/MultipleAnnotationConfig1.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/MultipleAnnotationConfig1.java index 6dc4ae449..a42b731e8 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/MultipleAnnotationConfig1.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/MultipleAnnotationConfig1.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import java.lang.annotation.ElementType; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/MultipleAnnotationConfig2.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/MultipleAnnotationConfig2.java index 043cb53ae..7caf7dd96 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/MultipleAnnotationConfig2.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/MultipleAnnotationConfig2.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import java.lang.annotation.ElementType; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/MyConfig.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/MyConfig.java index eed923251..0a73b3c01 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/MyConfig.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/MyConfig.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import javax.sql.DataSource; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/MyDao.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/MyDao.java index 7b273a645..45846f052 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/MyDao.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/MyDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import org.seasar.doma.Dao; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/MyDao2.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/MyDao2.java index f8a969fdf..95806702f 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/MyDao2.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/MyDao2.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import org.seasar.doma.Dao; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/NClobFactoryDao.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/NClobFactoryDao.java index 79661897a..7eefe445b 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/NClobFactoryDao.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/NClobFactoryDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import java.sql.NClob; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/NameUnsafeDaoImpl.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/NameUnsafeDaoImpl.java index 5849858f9..2e82c2330 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/NameUnsafeDaoImpl.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/NameUnsafeDaoImpl.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import org.seasar.doma.Dao; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/NoConfigDao.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/NoConfigDao.java index c3b7a837f..6f35c4d37 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/NoConfigDao.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/NoConfigDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import org.seasar.doma.Dao; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/NoConfigDaoExtendsDao.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/NoConfigDaoExtendsDao.java index 4fac23853..e8276f7ce 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/NoConfigDaoExtendsDao.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/NoConfigDaoExtendsDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import org.seasar.doma.Dao; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/NoConfigDaoExtendsNoConfigDao.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/NoConfigDaoExtendsNoConfigDao.java index 4fef6b360..494846618 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/NoConfigDaoExtendsNoConfigDao.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/NoConfigDaoExtendsNoConfigDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import org.seasar.doma.Dao; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/NoConfigEmpDao.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/NoConfigEmpDao.java index 7a6f5b1fd..faf6e2884 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/NoConfigEmpDao.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/NoConfigEmpDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import java.math.BigDecimal; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/NoTestLiteralDao.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/NoTestLiteralDao.java index 5d7f6dbbb..dabef7092 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/NoTestLiteralDao.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/NoTestLiteralDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import org.seasar.doma.Dao; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/NonDaoExtendsDao.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/NonDaoExtendsDao.java index 764abd256..23e437c4f 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/NonDaoExtendsDao.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/NonDaoExtendsDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import java.io.Serializable; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/NotInterfaceDao.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/NotInterfaceDao.java index 8a51a5f0a..1863b2737 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/NotInterfaceDao.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/NotInterfaceDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import org.seasar.doma.Dao; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/NotOnlyDefaultMethodsChild.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/NotOnlyDefaultMethodsChild.java index a1644eb63..979699f53 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/NotOnlyDefaultMethodsChild.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/NotOnlyDefaultMethodsChild.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; public interface NotOnlyDefaultMethodsChild extends NotOnlyDefaultMethodsParent { diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/NotOnlyDefaultMethodsExtendsDao.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/NotOnlyDefaultMethodsExtendsDao.java index d20a4c3c3..3311e7088 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/NotOnlyDefaultMethodsExtendsDao.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/NotOnlyDefaultMethodsExtendsDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import org.seasar.doma.Dao; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/NotOnlyDefaultMethodsParent.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/NotOnlyDefaultMethodsParent.java index 83a3a4d72..2a512dd2d 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/NotOnlyDefaultMethodsParent.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/NotOnlyDefaultMethodsParent.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; public interface NotOnlyDefaultMethodsParent { diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/NotTopLevelDao.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/NotTopLevelDao.java index 703d4b431..8a1b76f5d 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/NotTopLevelDao.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/NotTopLevelDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import org.seasar.doma.Dao; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/OnlyDefaultMethods.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/OnlyDefaultMethods.java index 9858c3382..991412726 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/OnlyDefaultMethods.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/OnlyDefaultMethods.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; public interface OnlyDefaultMethods { diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/OnlyDefaultMethodsExtendsDao.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/OnlyDefaultMethodsExtendsDao.java index 0a19203e5..eba13c9f4 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/OnlyDefaultMethodsExtendsDao.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/OnlyDefaultMethodsExtendsDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import org.seasar.doma.Dao; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/OptionalDoubleDao.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/OptionalDoubleDao.java index 57d3b9f03..dce10f5a2 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/OptionalDoubleDao.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/OptionalDoubleDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import java.util.List; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/OptionalEntityListDao.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/OptionalEntityListDao.java index cc3b8dad8..4790179a6 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/OptionalEntityListDao.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/OptionalEntityListDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import java.util.List; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/OptionalIntDao.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/OptionalIntDao.java index d5bece201..b4d92e55b 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/OptionalIntDao.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/OptionalIntDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import java.util.List; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/OptionalLongDao.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/OptionalLongDao.java index f9de481e3..cc39bbb74 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/OptionalLongDao.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/OptionalLongDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import java.util.List; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/OptionalMapListDao.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/OptionalMapListDao.java index 97f9b42ce..931e17fd0 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/OptionalMapListDao.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/OptionalMapListDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import java.util.List; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/OptionalParameterDao.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/OptionalParameterDao.java index 94f908b1a..fc46c7bc8 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/OptionalParameterDao.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/OptionalParameterDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import java.util.Optional; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/PackageAccessLevelDao.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/PackageAccessLevelDao.java index b1412ff44..628a5f5d6 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/PackageAccessLevelDao.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/PackageAccessLevelDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import org.seasar.doma.AccessLevel; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/PackagePrivateDao.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/PackagePrivateDao.java index 129f504b8..b59190701 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/PackagePrivateDao.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/PackagePrivateDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import org.seasar.doma.Dao; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/ParameterizedDomainResultDao.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/ParameterizedDomainResultDao.java index 26c76708d..b5ad34fef 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/ParameterizedDomainResultDao.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/ParameterizedDomainResultDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import java.util.List; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/ParameterizedParamDao.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/ParameterizedParamDao.java index 2f718d268..265ebbf74 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/ParameterizedParamDao.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/ParameterizedParamDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import org.seasar.doma.Dao; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/ParameterizedReturnDao.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/ParameterizedReturnDao.java index 2a46caae4..f6e918ff0 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/ParameterizedReturnDao.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/ParameterizedReturnDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import org.seasar.doma.Dao; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/PhoneNumber.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/PhoneNumber.java index ffe16c007..c398d4318 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/PhoneNumber.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/PhoneNumber.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import org.seasar.doma.Domain; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/PrimitiveTypeDao.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/PrimitiveTypeDao.java index 9173b3cf3..c5b76632f 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/PrimitiveTypeDao.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/PrimitiveTypeDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import org.seasar.doma.Dao; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/ProcedureAbstractEntityListDao.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/ProcedureAbstractEntityListDao.java index 88f491ac4..a61d8719c 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/ProcedureAbstractEntityListDao.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/ProcedureAbstractEntityListDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import java.util.List; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/ProcedureDao.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/ProcedureDao.java index 118a8a3c1..8558a746e 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/ProcedureDao.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/ProcedureDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import java.util.List; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/RawTypeParamDao.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/RawTypeParamDao.java index a2824d3d3..3179e2646 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/RawTypeParamDao.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/RawTypeParamDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import org.seasar.doma.Dao; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/RawTypeReturnDao.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/RawTypeReturnDao.java index e788a3e5a..fe12ab512 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/RawTypeReturnDao.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/RawTypeReturnDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import org.seasar.doma.Dao; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/ReferenceRawTypeParamDao.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/ReferenceRawTypeParamDao.java index 60b81ae3a..b3b3ade73 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/ReferenceRawTypeParamDao.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/ReferenceRawTypeParamDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import org.seasar.doma.Dao; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/ReferenceWildcardTypeParamDao.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/ReferenceWildcardTypeParamDao.java index d042b40bc..794f67a9d 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/ReferenceWildcardTypeParamDao.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/ReferenceWildcardTypeParamDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import org.seasar.doma.Dao; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/ResultStreamDao.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/ResultStreamDao.java index 27cb6d25b..17937a366 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/ResultStreamDao.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/ResultStreamDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import java.util.Map; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/SQLXMLFactoryDao.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/SQLXMLFactoryDao.java index fc5ab867c..22394e3f0 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/SQLXMLFactoryDao.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/SQLXMLFactoryDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import java.sql.SQLXML; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/ScriptDao.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/ScriptDao.java index fec0ffea5..acde9f96b 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/ScriptDao.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/ScriptDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import org.seasar.doma.Dao; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/SelectAbstractEntityDao.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/SelectAbstractEntityDao.java index 4bf61076f..0ac8581d3 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/SelectAbstractEntityDao.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/SelectAbstractEntityDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import org.seasar.doma.Dao; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/SelectAbstractEntityListDao.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/SelectAbstractEntityListDao.java index 639899859..cb2923ce6 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/SelectAbstractEntityListDao.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/SelectAbstractEntityListDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import java.util.List; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/SqlFileBatchUpdateDao.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/SqlFileBatchUpdateDao.java index 9fb8b220b..1d05daf0c 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/SqlFileBatchUpdateDao.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/SqlFileBatchUpdateDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import java.util.List; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/SqlFileBatchUpdateEntityDao.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/SqlFileBatchUpdateEntityDao.java index 9f97fbca7..b08d7e1ac 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/SqlFileBatchUpdateEntityDao.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/SqlFileBatchUpdateEntityDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import java.util.List; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/SqlFileInsertDao.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/SqlFileInsertDao.java index 72fed865d..581e66272 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/SqlFileInsertDao.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/SqlFileInsertDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import java.math.BigDecimal; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/SqlFileInsertEntityDao.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/SqlFileInsertEntityDao.java index dc6fd6ba0..e350132ae 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/SqlFileInsertEntityDao.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/SqlFileInsertEntityDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import org.seasar.doma.Dao; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/SqlFileSelectBasicDao.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/SqlFileSelectBasicDao.java index 4d917e285..a16362e45 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/SqlFileSelectBasicDao.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/SqlFileSelectBasicDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import java.math.BigDecimal; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/SqlFileSelectDomainDao.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/SqlFileSelectDomainDao.java index 624162bee..6c4410837 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/SqlFileSelectDomainDao.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/SqlFileSelectDomainDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import java.math.BigDecimal; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/SqlFileSelectEntityDao.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/SqlFileSelectEntityDao.java index 7db89f8a2..1ae8da6e1 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/SqlFileSelectEntityDao.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/SqlFileSelectEntityDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import java.math.BigDecimal; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/SqlFileSelectMapDao.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/SqlFileSelectMapDao.java index d68d55703..809e9ca72 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/SqlFileSelectMapDao.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/SqlFileSelectMapDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import java.math.BigDecimal; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/SqlProcessorBiFunction1stArgCheckDao.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/SqlProcessorBiFunction1stArgCheckDao.java index f60a7e341..95944f306 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/SqlProcessorBiFunction1stArgCheckDao.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/SqlProcessorBiFunction1stArgCheckDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import java.util.function.BiFunction; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/SqlProcessorBiFunction2ndArgCheckDao.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/SqlProcessorBiFunction2ndArgCheckDao.java index 3c0c46b16..3cb41ce2a 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/SqlProcessorBiFunction2ndArgCheckDao.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/SqlProcessorBiFunction2ndArgCheckDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import java.util.function.BiFunction; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/SqlProcessorDao.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/SqlProcessorDao.java index 53c241c4d..c84730c1e 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/SqlProcessorDao.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/SqlProcessorDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import java.util.function.BiFunction; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/SqlProcessorMultiBiFunctionsDao.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/SqlProcessorMultiBiFunctionsDao.java index 4ff82264a..b23f97977 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/SqlProcessorMultiBiFunctionsDao.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/SqlProcessorMultiBiFunctionsDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import java.util.function.BiFunction; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/SqlProcessorNoBiFunctionDao.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/SqlProcessorNoBiFunctionDao.java index c37f45544..57dde967b 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/SqlProcessorNoBiFunctionDao.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/SqlProcessorNoBiFunctionDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import org.seasar.doma.Dao; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/SqlProcessorRawTypeDao.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/SqlProcessorRawTypeDao.java index fbde5d4fa..cb66813ab 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/SqlProcessorRawTypeDao.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/SqlProcessorRawTypeDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import java.util.function.BiFunction; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/SqlProcessorReturnTypeDao.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/SqlProcessorReturnTypeDao.java index 7253e5861..ddd556764 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/SqlProcessorReturnTypeDao.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/SqlProcessorReturnTypeDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import java.util.function.BiFunction; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/SqlProcessorWildcardTypeDao.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/SqlProcessorWildcardTypeDao.java index 49c1b388e..b3217ce57 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/SqlProcessorWildcardTypeDao.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/SqlProcessorWildcardTypeDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import java.util.function.BiFunction; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/SqlValidationSkipDao.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/SqlValidationSkipDao.java index 2c80d0909..686194399 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/SqlValidationSkipDao.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/SqlValidationSkipDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import org.seasar.doma.Dao; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/SqlValidationSkipWithConfigFileDao.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/SqlValidationSkipWithConfigFileDao.java index 513c9cc74..0e2fc8177 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/SqlValidationSkipWithConfigFileDao.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/SqlValidationSkipWithConfigFileDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import org.seasar.doma.Dao; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/StaticMethodDao.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/StaticMethodDao.java index 4cf830032..f18fb1d58 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/StaticMethodDao.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/StaticMethodDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import org.seasar.doma.Dao; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/StreamDao.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/StreamDao.java index a24417a7a..036ac262c 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/StreamDao.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/StreamDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import java.util.Map; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/StreamOptionalParameterDao.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/StreamOptionalParameterDao.java index 89d605978..534664a11 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/StreamOptionalParameterDao.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/StreamOptionalParameterDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import java.util.Optional; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/UnknownBindVariableSqlValidationDao.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/UnknownBindVariableSqlValidationDao.java index 0a3ed5df2..4d9ac62a6 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/UnknownBindVariableSqlValidationDao.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/UnknownBindVariableSqlValidationDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import org.seasar.doma.Dao; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/UnknownVariableSqlValidationDao.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/UnknownVariableSqlValidationDao.java index 72356e5ab..fa58bee06 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/UnknownVariableSqlValidationDao.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/UnknownVariableSqlValidationDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import org.seasar.doma.Dao; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/VarArgsDao.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/VarArgsDao.java index 2b5256895..7fa685eb6 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/VarArgsDao.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/VarArgsDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import org.seasar.doma.Dao; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/VirtualDefaultMethodDao.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/VirtualDefaultMethodDao.java index 5db05dd90..870a18770 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/VirtualDefaultMethodDao.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/VirtualDefaultMethodDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import java.math.BigDecimal; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/WildcardTypeParamDao.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/WildcardTypeParamDao.java index b900ae794..aecef288b 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/WildcardTypeParamDao.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/WildcardTypeParamDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import org.seasar.doma.Dao; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/WildcardTypeReturnDao.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/WildcardTypeReturnDao.java index a48c73e08..5e929a97a 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/WildcardTypeReturnDao.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/WildcardTypeReturnDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao; import org.seasar.doma.Dao; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/experimental/AnnotationConflictDao.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/experimental/AnnotationConflictDao.java index bbf2d3806..ac8c222fa 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/experimental/AnnotationConflictDao.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/experimental/AnnotationConflictDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao.experimental; import org.seasar.doma.Dao; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/experimental/BatchModifySqlFileElementConflictDao.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/experimental/BatchModifySqlFileElementConflictDao.java index d7364729f..5faa5fa36 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/experimental/BatchModifySqlFileElementConflictDao.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/experimental/BatchModifySqlFileElementConflictDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao.experimental; import java.util.List; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/experimental/DefaultMethodConflictDao.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/experimental/DefaultMethodConflictDao.java index f5fdcc67e..ec8a2ef94 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/experimental/DefaultMethodConflictDao.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/experimental/DefaultMethodConflictDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao.experimental; import org.seasar.doma.Dao; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/experimental/ModifySqlFileElementConflictDao.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/experimental/ModifySqlFileElementConflictDao.java index f99c470e2..066b80f17 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/experimental/ModifySqlFileElementConflictDao.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/experimental/ModifySqlFileElementConflictDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao.experimental; import org.seasar.doma.Dao; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/experimental/SqlAnnotationDao.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/experimental/SqlAnnotationDao.java index 7e9542258..d1982decd 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/experimental/SqlAnnotationDao.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/experimental/SqlAnnotationDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao.experimental; import java.util.List; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/experimental/SqlTest.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/experimental/SqlTest.java index a33cf44be..99b4b542e 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/experimental/SqlTest.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/dao/experimental/SqlTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.dao.experimental; import static org.junit.jupiter.api.Assertions.assertFalse; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/AbstractDomain.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/AbstractDomain.java index 9d7e5c893..df4065129 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/AbstractDomain.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/AbstractDomain.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.domain; import org.seasar.doma.Domain; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/AbstractDomainConverter.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/AbstractDomainConverter.java index 60a20c558..73bcfb0d2 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/AbstractDomainConverter.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/AbstractDomainConverter.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.domain; import org.seasar.doma.ExternalDomain; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/AccessorNotFoundDomain.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/AccessorNotFoundDomain.java index d2fde5bdd..e1934fee3 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/AccessorNotFoundDomain.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/AccessorNotFoundDomain.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.domain; import java.math.BigDecimal; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/AnnotationDomain.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/AnnotationDomain.java index a2e325cc3..2e0b5b482 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/AnnotationDomain.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/AnnotationDomain.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.domain; import org.seasar.doma.Domain; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/BasicTypeConverter.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/BasicTypeConverter.java index fd9d79473..d2d3b4593 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/BasicTypeConverter.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/BasicTypeConverter.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.domain; import org.seasar.doma.ExternalDomain; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/Box.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/Box.java index 087fbf8b3..610305133 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/Box.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/Box.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.domain; public class Box {} diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/BoxJdbcTypeProvider.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/BoxJdbcTypeProvider.java index 29d8b6133..507e30c96 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/BoxJdbcTypeProvider.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/BoxJdbcTypeProvider.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.domain; import java.sql.CallableStatement; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/Color.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/Color.java index 5303fa7f5..cf9e4f2c7 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/Color.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/Color.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.domain; public enum Color { diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/ColorConverter.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/ColorConverter.java index bdaa50889..f14e0f13a 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/ColorConverter.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/ColorConverter.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.domain; import org.seasar.doma.ExternalDomain; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/ConstructorNotFoundDomain.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/ConstructorNotFoundDomain.java index ee1042c20..523b1d9ec 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/ConstructorNotFoundDomain.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/ConstructorNotFoundDomain.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.domain; import java.math.BigDecimal; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/ConstructorNotFoundDomainConverter.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/ConstructorNotFoundDomainConverter.java index 6891f9f60..ad44497d5 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/ConstructorNotFoundDomainConverter.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/ConstructorNotFoundDomainConverter.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.domain; import org.seasar.doma.ExternalDomain; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/DayConvertersProvider.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/DayConvertersProvider.java index e5a1e99e7..00e1fd19c 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/DayConvertersProvider.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/DayConvertersProvider.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.domain; import org.seasar.doma.DomainConverters; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/DomainConvertersProcessorTest.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/DomainConvertersProcessorTest.java index cf22c7df7..dc6e5e342 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/DomainConvertersProcessorTest.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/DomainConvertersProcessorTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.domain; import static org.junit.jupiter.api.Assertions.assertFalse; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/DomainProcessorTest.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/DomainProcessorTest.java index 3afd56c36..c01f10a03 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/DomainProcessorTest.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/DomainProcessorTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.domain; import static org.junit.jupiter.api.Assertions.assertFalse; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/EmptyConvertersProvider.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/EmptyConvertersProvider.java index fb607bf57..22658c9cd 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/EmptyConvertersProvider.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/EmptyConvertersProvider.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.domain; import org.seasar.doma.DomainConverters; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/EnumDomain.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/EnumDomain.java index bfabcf3e4..43ddd855f 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/EnumDomain.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/EnumDomain.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.domain; import org.seasar.doma.Domain; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/ExternalDomainNotSpecifiedProvider.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/ExternalDomainNotSpecifiedProvider.java index 8f37a38aa..996d80f8f 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/ExternalDomainNotSpecifiedProvider.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/ExternalDomainNotSpecifiedProvider.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.domain; import org.seasar.doma.DomainConverters; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/ExternalDomainProcessorTest.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/ExternalDomainProcessorTest.java index 04bbe3e43..76ee3cb86 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/ExternalDomainProcessorTest.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/ExternalDomainProcessorTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.domain; import static org.junit.jupiter.api.Assertions.assertFalse; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/GenericDomain.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/GenericDomain.java index 0e539fa44..1db451bf0 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/GenericDomain.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/GenericDomain.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.domain; /** diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/IllegalAcceptNullDomain.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/IllegalAcceptNullDomain.java index f626f4fb6..b8f59a6f6 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/IllegalAcceptNullDomain.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/IllegalAcceptNullDomain.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.domain; import org.seasar.doma.Domain; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/IllegalParameterizedValueObjectConverter.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/IllegalParameterizedValueObjectConverter.java index a5a72a755..1b084e28f 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/IllegalParameterizedValueObjectConverter.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/IllegalParameterizedValueObjectConverter.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.domain; import org.seasar.doma.ExternalDomain; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/IllegalSizeParameterizedOfSalary.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/IllegalSizeParameterizedOfSalary.java index 139f9a720..3392238c4 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/IllegalSizeParameterizedOfSalary.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/IllegalSizeParameterizedOfSalary.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.domain; import java.math.BigDecimal; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/IllegalTypeParameterizedOfSalary.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/IllegalTypeParameterizedOfSalary.java index 39251c527..c43189f6b 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/IllegalTypeParameterizedOfSalary.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/IllegalTypeParameterizedOfSalary.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.domain; import java.math.BigDecimal; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/InterfaceDomain.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/InterfaceDomain.java index 8a8dd1a73..aa489c1cc 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/InterfaceDomain.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/InterfaceDomain.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.domain; import java.util.Arrays; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/InterfaceNew.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/InterfaceNew.java index 7184c8a62..e7fdd8fee 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/InterfaceNew.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/InterfaceNew.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.domain; import org.seasar.doma.Domain; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/InterfaceOuter.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/InterfaceOuter.java index 0238f2696..d44b56a5f 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/InterfaceOuter.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/InterfaceOuter.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.domain; import java.math.BigDecimal; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/IntersectionParameterizedDomain.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/IntersectionParameterizedDomain.java index 20e98299b..eb0ca4632 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/IntersectionParameterizedDomain.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/IntersectionParameterizedDomain.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.domain; import org.seasar.doma.Domain; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/JobType.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/JobType.java index c84eb3806..a4239a2d2 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/JobType.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/JobType.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.domain; import org.seasar.doma.Domain; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/ListArrayConverter.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/ListArrayConverter.java index af00cf484..f584e3e46 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/ListArrayConverter.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/ListArrayConverter.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.domain; import java.util.List; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/LombokValue.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/LombokValue.java index 38fe3b4a5..2624d3b99 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/LombokValue.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/LombokValue.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.domain; import org.seasar.doma.Domain; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/LombokValueAccessorMethod.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/LombokValueAccessorMethod.java index 9367a9cd8..07ccbc768 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/LombokValueAccessorMethod.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/LombokValueAccessorMethod.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.domain; import org.seasar.doma.Domain; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/LombokValueAccessorMethod_boolean.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/LombokValueAccessorMethod_boolean.java index 244041029..7020777d2 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/LombokValueAccessorMethod_boolean.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/LombokValueAccessorMethod_boolean.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.domain; import org.seasar.doma.Domain; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/LombokValueNoField.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/LombokValueNoField.java index d17737e40..fb5237c7c 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/LombokValueNoField.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/LombokValueNoField.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.domain; import org.seasar.doma.Domain; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/LombokValueStaticConstructor.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/LombokValueStaticConstructor.java index 50b8c499b..4d41967db 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/LombokValueStaticConstructor.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/LombokValueStaticConstructor.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.domain; import org.seasar.doma.Domain; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/LombokValueTwoFields.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/LombokValueTwoFields.java index 16faac4c9..b1ad781f1 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/LombokValueTwoFields.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/LombokValueTwoFields.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.domain; import org.seasar.doma.Domain; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/LombokValueTypeNotAssignable.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/LombokValueTypeNotAssignable.java index 9dba5eac7..ad3ddd20b 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/LombokValueTypeNotAssignable.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/LombokValueTypeNotAssignable.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.domain; import org.seasar.doma.Domain; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/Monday.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/Monday.java index 150eeb82e..751cfa3e5 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/Monday.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/Monday.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.domain; public class Monday {} diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/MondayConverter.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/MondayConverter.java index 343a1837e..3da524d31 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/MondayConverter.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/MondayConverter.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.domain; import org.seasar.doma.ExternalDomain; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/MultidimensionalArrayConverter.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/MultidimensionalArrayConverter.java index cc92d614b..8c4be3c99 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/MultidimensionalArrayConverter.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/MultidimensionalArrayConverter.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.domain; import org.seasar.doma.ExternalDomain; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/NestingValueObjectConverter.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/NestingValueObjectConverter.java index fd2cc5f40..2843e380c 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/NestingValueObjectConverter.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/NestingValueObjectConverter.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.domain; import org.seasar.doma.ExternalDomain; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/NotDomainConverter.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/NotDomainConverter.java index e6ecafd3c..6bc1ee735 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/NotDomainConverter.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/NotDomainConverter.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.domain; import org.seasar.doma.ExternalDomain; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/NotPersistentValueObject.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/NotPersistentValueObject.java index 6ec57838f..3c6b49ea7 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/NotPersistentValueObject.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/NotPersistentValueObject.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.domain; public class NotPersistentValueObject {} diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/NotPersistentValueObjectConverter.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/NotPersistentValueObjectConverter.java index a559827fb..b1449c531 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/NotPersistentValueObjectConverter.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/NotPersistentValueObjectConverter.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.domain; import org.seasar.doma.ExternalDomain; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/NullRejectionDomain.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/NullRejectionDomain.java index f187f2757..2c0723c3a 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/NullRejectionDomain.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/NullRejectionDomain.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.domain; import org.seasar.doma.Domain; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/ObjectDomain.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/ObjectDomain.java index 5ead23bd7..3afb4bc9e 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/ObjectDomain.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/ObjectDomain.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.domain; import org.seasar.doma.Domain; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/OfAbstractDomain.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/OfAbstractDomain.java index 923bd3779..bc99334e7 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/OfAbstractDomain.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/OfAbstractDomain.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.domain; import org.seasar.doma.Domain; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/OfEnumDomain.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/OfEnumDomain.java index acbbf4580..c94f41057 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/OfEnumDomain.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/OfEnumDomain.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.domain; import org.seasar.doma.Domain; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/OfJobType.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/OfJobType.java index 22e07deda..a42f3355f 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/OfJobType.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/OfJobType.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.domain; import org.seasar.doma.Domain; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/OfPrimitiveValueDomain.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/OfPrimitiveValueDomain.java index 3d5ff3567..078468fc3 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/OfPrimitiveValueDomain.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/OfPrimitiveValueDomain.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.domain; import org.seasar.doma.Domain; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/OfPrimitiveValueType.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/OfPrimitiveValueType.java index 3b23733a8..1ef3f4f8d 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/OfPrimitiveValueType.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/OfPrimitiveValueType.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.domain; import org.seasar.doma.Domain; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/OfSalary.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/OfSalary.java index 7c25289bd..a61f711fb 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/OfSalary.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/OfSalary.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.domain; import java.math.BigDecimal; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/Outer.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/Outer.java index 2e22807cf..bf1f16ab8 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/Outer.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/Outer.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.domain; import java.math.BigDecimal; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/Outer__illegalName.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/Outer__illegalName.java index 077e8c0eb..f18b379f7 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/Outer__illegalName.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/Outer__illegalName.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.domain; import java.math.BigDecimal; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/Outer_deepInner.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/Outer_deepInner.java index f5a281a55..59c129ed8 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/Outer_deepInner.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/Outer_deepInner.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.domain; import java.math.BigDecimal; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/Outer_nonPublicInner.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/Outer_nonPublicInner.java index 8508faf43..4b1093bd1 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/Outer_nonPublicInner.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/Outer_nonPublicInner.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.domain; import java.math.BigDecimal; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/Outer_nonPublicMiddle.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/Outer_nonPublicMiddle.java index 7329747c8..308a6f6a4 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/Outer_nonPublicMiddle.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/Outer_nonPublicMiddle.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.domain; import java.math.BigDecimal; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/Outer_nonStaticInner.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/Outer_nonStaticInner.java index 2d39b7177..1bb3efa0d 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/Outer_nonStaticInner.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/Outer_nonStaticInner.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.domain; import java.math.BigDecimal; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/PackagePrivateDomain.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/PackagePrivateDomain.java index 5a8d48cc0..4eadb2a6c 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/PackagePrivateDomain.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/PackagePrivateDomain.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.domain; import org.seasar.doma.Domain; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/ParameterizedOfSalary.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/ParameterizedOfSalary.java index ef00e80ed..7d7434f61 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/ParameterizedOfSalary.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/ParameterizedOfSalary.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.domain; import java.math.BigDecimal; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/ParameterizedSalary.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/ParameterizedSalary.java index d7a05362c..2f0e1925c 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/ParameterizedSalary.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/ParameterizedSalary.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.domain; import java.math.BigDecimal; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/ParameterizedValueObject.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/ParameterizedValueObject.java index c841b6671..2d2765d09 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/ParameterizedValueObject.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/ParameterizedValueObject.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.domain; public class ParameterizedValueObject {} diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/ParameterizedValueObjectConverter.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/ParameterizedValueObjectConverter.java index aa3cd7358..df4e56540 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/ParameterizedValueObjectConverter.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/ParameterizedValueObjectConverter.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.domain; import org.seasar.doma.ExternalDomain; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/PrimitiveValueDomain.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/PrimitiveValueDomain.java index 8e79d3233..0cb46465a 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/PrimitiveValueDomain.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/PrimitiveValueDomain.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.domain; import org.seasar.doma.Domain; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/Salary.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/Salary.java index 26355947c..fa39d2876 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/Salary.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/Salary.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.domain; import java.math.BigDecimal; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/SpecificDomain.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/SpecificDomain.java index 453c0126c..edefd81b2 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/SpecificDomain.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/SpecificDomain.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.domain; import org.seasar.doma.Domain; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/StringArrayConverter.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/StringArrayConverter.java index 48cbf05cd..be0ea7685 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/StringArrayConverter.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/StringArrayConverter.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.domain; import org.seasar.doma.ExternalDomain; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/Tuesday.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/Tuesday.java index 8cc0e5a7a..cb062616a 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/Tuesday.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/Tuesday.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.domain; public class Tuesday {} diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/TuesdayConverter.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/TuesdayConverter.java index c918505d6..cab8954f8 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/TuesdayConverter.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/TuesdayConverter.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.domain; import org.seasar.doma.jdbc.domain.DomainConverter; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/UUIDConverter.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/UUIDConverter.java index d9251d81e..81ca702bf 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/UUIDConverter.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/UUIDConverter.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.domain; import java.util.UUID; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/UnsupportedValueTypeDomain.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/UnsupportedValueTypeDomain.java index a0e8b12ea..f06d63498 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/UnsupportedValueTypeDomain.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/UnsupportedValueTypeDomain.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.domain; import java.math.BigDecimal; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/UpperBoundParameterizedDomain.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/UpperBoundParameterizedDomain.java index 1ccd5ae15..08a6bcd09 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/UpperBoundParameterizedDomain.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/UpperBoundParameterizedDomain.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.domain; import org.seasar.doma.Domain; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/UpperBoundParameterizedValueObject.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/UpperBoundParameterizedValueObject.java index 061cdc8b3..8072a5ace 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/UpperBoundParameterizedValueObject.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/UpperBoundParameterizedValueObject.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.domain; public class UpperBoundParameterizedValueObject {} diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/UpperBoundParameterizedValueObjectConverter.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/UpperBoundParameterizedValueObjectConverter.java index 11a8819ec..31213b5ac 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/UpperBoundParameterizedValueObjectConverter.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/UpperBoundParameterizedValueObjectConverter.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.domain; import org.seasar.doma.ExternalDomain; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/ValueObject.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/ValueObject.java index a0d9919f8..9f6a9cb88 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/ValueObject.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/ValueObject.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.domain; public class ValueObject {} diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/ValueObjectConverter.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/ValueObjectConverter.java index bc9612550..0077c28a1 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/ValueObjectConverter.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/ValueObjectConverter.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.domain; import org.seasar.doma.ExternalDomain; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/VersionCheckSuppressedDomain.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/VersionCheckSuppressedDomain.java index 83e82c1bb..91efa66c8 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/VersionCheckSuppressedDomain.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/VersionCheckSuppressedDomain.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.domain; import java.math.BigDecimal; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/Wednesday.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/Wednesday.java index 3029ad8d4..f567af022 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/Wednesday.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/Wednesday.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.domain; public class Wednesday {} diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/WednesdayConverter.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/WednesdayConverter.java index 7d23a167b..b778ba3f9 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/WednesdayConverter.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/domain/WednesdayConverter.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.domain; import org.seasar.doma.ExternalDomain; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/embeddable/AbstractEmbeddable.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/embeddable/AbstractEmbeddable.java index 2a0ced4c7..25a2b7955 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/embeddable/AbstractEmbeddable.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/embeddable/AbstractEmbeddable.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.embeddable; import org.seasar.doma.Embeddable; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/embeddable/Address.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/embeddable/Address.java index 0dea1e4c7..01c9401d4 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/embeddable/Address.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/embeddable/Address.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.embeddable; import org.seasar.doma.Column; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/embeddable/Base.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/embeddable/Base.java index 8f05b650f..3bc772b1c 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/embeddable/Base.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/embeddable/Base.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.embeddable; import org.seasar.doma.Embeddable; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/embeddable/Derived.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/embeddable/Derived.java index 3e70f8d14..2522277ed 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/embeddable/Derived.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/embeddable/Derived.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.embeddable; import org.seasar.doma.Embeddable; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/embeddable/EmbeddableProcessorTest.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/embeddable/EmbeddableProcessorTest.java index cb822a15f..67da5b08d 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/embeddable/EmbeddableProcessorTest.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/embeddable/EmbeddableProcessorTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.embeddable; import static org.junit.jupiter.api.Assertions.assertFalse; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/embeddable/LombokAllArgsConstructor.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/embeddable/LombokAllArgsConstructor.java index 46cffd1ea..87d66e45c 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/embeddable/LombokAllArgsConstructor.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/embeddable/LombokAllArgsConstructor.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.embeddable; import org.seasar.doma.Embeddable; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/embeddable/LombokAllArgsConstructorAccess_none.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/embeddable/LombokAllArgsConstructorAccess_none.java index db1e3441e..87372c72f 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/embeddable/LombokAllArgsConstructorAccess_none.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/embeddable/LombokAllArgsConstructorAccess_none.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.embeddable; import org.seasar.doma.Embeddable; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/embeddable/LombokAllArgsConstructorAccess_private.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/embeddable/LombokAllArgsConstructorAccess_private.java index b279fb530..f070cbe89 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/embeddable/LombokAllArgsConstructorAccess_private.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/embeddable/LombokAllArgsConstructorAccess_private.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.embeddable; import org.seasar.doma.Embeddable; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/embeddable/LombokAllArgsConstructorStaticName.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/embeddable/LombokAllArgsConstructorStaticName.java index d5600faf2..b21cb1093 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/embeddable/LombokAllArgsConstructorStaticName.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/embeddable/LombokAllArgsConstructorStaticName.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.embeddable; import org.seasar.doma.Embeddable; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/embeddable/LombokValue.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/embeddable/LombokValue.java index 9efa881cc..ba85268b5 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/embeddable/LombokValue.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/embeddable/LombokValue.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.embeddable; import org.seasar.doma.Embeddable; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/embeddable/LombokValueStaticConstructor.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/embeddable/LombokValueStaticConstructor.java index c848146fc..7497b7b59 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/embeddable/LombokValueStaticConstructor.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/embeddable/LombokValueStaticConstructor.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.embeddable; import org.seasar.doma.Embeddable; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/embeddable/NotTopLevel.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/embeddable/NotTopLevel.java index cc5e7913a..4f778190b 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/embeddable/NotTopLevel.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/embeddable/NotTopLevel.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.embeddable; import org.seasar.doma.Embeddable; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/embeddable/Outer__illegalName.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/embeddable/Outer__illegalName.java index 1e9b8ac37..cf74b2d97 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/embeddable/Outer__illegalName.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/embeddable/Outer__illegalName.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.embeddable; import org.seasar.doma.Embeddable; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/embeddable/Outer_nonPublicInner.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/embeddable/Outer_nonPublicInner.java index d12b05512..c0be12694 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/embeddable/Outer_nonPublicInner.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/embeddable/Outer_nonPublicInner.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.embeddable; import org.seasar.doma.Embeddable; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/embeddable/Outer_nonPublicMiddle.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/embeddable/Outer_nonPublicMiddle.java index db0a3c5f0..054fb6a5d 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/embeddable/Outer_nonPublicMiddle.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/embeddable/Outer_nonPublicMiddle.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.embeddable; import org.seasar.doma.Embeddable; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/embeddable/Outer_nonStaticInner.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/embeddable/Outer_nonStaticInner.java index 03ff28a58..c3e68686f 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/embeddable/Outer_nonStaticInner.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/embeddable/Outer_nonStaticInner.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.embeddable; import org.seasar.doma.Embeddable; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/AbstractEntity.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/AbstractEntity.java index 0da3738a7..6548b5eae 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/AbstractEntity.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/AbstractEntity.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.entity; import org.seasar.doma.Entity; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/AbstractEntityListener.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/AbstractEntityListener.java index e497f9e7b..8c0f23629 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/AbstractEntityListener.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/AbstractEntityListener.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.entity; import org.seasar.doma.jdbc.entity.EntityListener; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/AbstractEntityListenerEntity.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/AbstractEntityListenerEntity.java index 9f080db70..8ed218b53 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/AbstractEntityListenerEntity.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/AbstractEntityListenerEntity.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.entity; import org.seasar.doma.Entity; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/AbstractSequenceIdGenerator.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/AbstractSequenceIdGenerator.java index 505f9bd31..d230ca0cc 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/AbstractSequenceIdGenerator.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/AbstractSequenceIdGenerator.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.entity; import org.seasar.doma.jdbc.id.BuiltinSequenceIdGenerator; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/AbstractSequenceIdGeneratorEntity.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/AbstractSequenceIdGeneratorEntity.java index 3c063651b..963466741 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/AbstractSequenceIdGeneratorEntity.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/AbstractSequenceIdGeneratorEntity.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.entity; import org.seasar.doma.Entity; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/AbstractTableIdGenerator.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/AbstractTableIdGenerator.java index c20531977..9cc19ff4e 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/AbstractTableIdGenerator.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/AbstractTableIdGenerator.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.entity; import org.seasar.doma.jdbc.id.BuiltinTableIdGenerator; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/AbstractTableIdGeneratorEntity.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/AbstractTableIdGeneratorEntity.java index f1ce078d0..e0646399f 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/AbstractTableIdGeneratorEntity.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/AbstractTableIdGeneratorEntity.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.entity; import org.seasar.doma.Entity; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/AnnotationConflictedEntity.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/AnnotationConflictedEntity.java index c4852ad37..15f5ed659 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/AnnotationConflictedEntity.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/AnnotationConflictedEntity.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.entity; import org.seasar.doma.Entity; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/Branch.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/Branch.java index f5bb9b998..34a22e28f 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/Branch.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/Branch.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.entity; public class Branch {} diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/BranchConverter.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/BranchConverter.java index a5cdaa53c..af682ee5c 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/BranchConverter.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/BranchConverter.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.entity; import org.seasar.doma.ExternalDomain; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/BytesPropertyEntity.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/BytesPropertyEntity.java index ba93fcc0d..5a58a6f59 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/BytesPropertyEntity.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/BytesPropertyEntity.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.entity; import org.seasar.doma.Entity; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/Child2InheritingEntity.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/Child2InheritingEntity.java index 294acd2f4..66466347f 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/Child2InheritingEntity.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/Child2InheritingEntity.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.entity; import java.math.BigDecimal; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/Child2NoInheritingEntity.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/Child2NoInheritingEntity.java index 2f7543293..adb54153f 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/Child2NoInheritingEntity.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/Child2NoInheritingEntity.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.entity; import org.seasar.doma.Entity; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/Child3InheritingEntity.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/Child3InheritingEntity.java index ce473b4a5..40858cec5 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/Child3InheritingEntity.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/Child3InheritingEntity.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.entity; import java.math.BigDecimal; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/ChildEntity.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/ChildEntity.java index 0422b1b7b..509defd08 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/ChildEntity.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/ChildEntity.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.entity; import java.math.BigDecimal; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/Common.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/Common.java index 4ca10ade3..0bb4f0046 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/Common.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/Common.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.entity; import org.seasar.doma.Entity; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/CommonChild.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/CommonChild.java index 8f9baf2e7..aceb535e7 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/CommonChild.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/CommonChild.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.entity; import org.seasar.doma.Entity; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/CommonChildListener.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/CommonChildListener.java index f208db969..97000a181 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/CommonChildListener.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/CommonChildListener.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.entity; public class CommonChildListener extends CommonListener {} diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/CommonListener.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/CommonListener.java index 36e4c69dd..4cf30504b 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/CommonListener.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/CommonListener.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.entity; import org.seasar.doma.jdbc.entity.EntityListener; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/Dept.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/Dept.java index 05e6dd4e3..dfd3e2cd2 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/Dept.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/Dept.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.entity; import org.seasar.doma.Entity; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/DomainConvertersProvider.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/DomainConvertersProvider.java index cf9c0faf6..7a066c5e5 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/DomainConvertersProvider.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/DomainConvertersProvider.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.entity; import org.seasar.doma.DomainConverters; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/DomainPropertyEntity.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/DomainPropertyEntity.java index 6f647c97c..938723a1c 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/DomainPropertyEntity.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/DomainPropertyEntity.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.entity; import org.seasar.doma.Entity; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/Emp.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/Emp.java index 3105ff8c5..5dbdc2330 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/Emp.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/Emp.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.entity; import java.io.Serializable; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/Emp2.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/Emp2.java index 89903799a..0828d6dd3 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/Emp2.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/Emp2.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.entity; import java.io.Serializable; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/EmpDto.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/EmpDto.java index edbec5edc..1bffe7520 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/EmpDto.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/EmpDto.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.entity; public class EmpDto { diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/EmpListener.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/EmpListener.java index bb8d43c30..154e3fd0b 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/EmpListener.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/EmpListener.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.entity; import org.seasar.doma.jdbc.entity.EntityListener; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/EntityProcessorTest.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/EntityProcessorTest.java index d96030c28..86158b955 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/EntityProcessorTest.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/EntityProcessorTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.entity; import static org.junit.jupiter.api.Assertions.assertFalse; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/EnumPropertyEntity.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/EnumPropertyEntity.java index 12347a805..b54e09c68 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/EnumPropertyEntity.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/EnumPropertyEntity.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.entity; import org.seasar.doma.Entity; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/FinalMissingImmutableEntity.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/FinalMissingImmutableEntity.java index 9aa70c1a4..00e67c32c 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/FinalMissingImmutableEntity.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/FinalMissingImmutableEntity.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.entity; import org.seasar.doma.Entity; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/GeneratedValueNotNumberEntity.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/GeneratedValueNotNumberEntity.java index 4c53f88c0..614e1a990 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/GeneratedValueNotNumberEntity.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/GeneratedValueNotNumberEntity.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.entity; import org.seasar.doma.Entity; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/GeneratedValueWithCompositeIdEntity.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/GeneratedValueWithCompositeIdEntity.java index cf64b0edc..b74b65529 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/GeneratedValueWithCompositeIdEntity.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/GeneratedValueWithCompositeIdEntity.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.entity; import org.seasar.doma.Entity; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/GeneratedValueWithoutIdEntity.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/GeneratedValueWithoutIdEntity.java index e63309b14..06554a614 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/GeneratedValueWithoutIdEntity.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/GeneratedValueWithoutIdEntity.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.entity; import org.seasar.doma.Entity; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/GenericListener1.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/GenericListener1.java index d56a3179d..a6828a1da 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/GenericListener1.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/GenericListener1.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.entity; import org.seasar.doma.jdbc.entity.EntityListener; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/GenericListener1Entity.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/GenericListener1Entity.java index 142d14055..8431046f5 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/GenericListener1Entity.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/GenericListener1Entity.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.entity; import org.seasar.doma.Entity; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/GenericListener2.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/GenericListener2.java index 8c173aa6b..f653ba2ca 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/GenericListener2.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/GenericListener2.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.entity; public class GenericListener2 extends GenericListener1 {} diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/GenericListener2Entity.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/GenericListener2Entity.java index ba635153f..f56b05901 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/GenericListener2Entity.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/GenericListener2Entity.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.entity; import org.seasar.doma.Entity; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/GenericListener3.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/GenericListener3.java index 9f3c924d8..42c24659f 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/GenericListener3.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/GenericListener3.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.entity; public class GenericListener3 extends GenericListener2 {} diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/GenericListener3Entity.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/GenericListener3Entity.java index 26ee9e515..71f162eaa 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/GenericListener3Entity.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/GenericListener3Entity.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.entity; import org.seasar.doma.Entity; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/GenericListener4.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/GenericListener4.java index a210e0c39..5d423e2c0 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/GenericListener4.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/GenericListener4.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.entity; import java.sql.Date; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/GenericListener4Entity.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/GenericListener4Entity.java index 9e29c3e06..426645da8 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/GenericListener4Entity.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/GenericListener4Entity.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.entity; import org.seasar.doma.Entity; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/GenericListener5.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/GenericListener5.java index c5b851b5d..61a1f48ab 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/GenericListener5.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/GenericListener5.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.entity; import org.seasar.doma.jdbc.entity.EntityListener; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/GenericListener5Entity.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/GenericListener5Entity.java index 8e31f1eda..e5caa2ea0 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/GenericListener5Entity.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/GenericListener5Entity.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.entity; import org.seasar.doma.Entity; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/GenericListener6.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/GenericListener6.java index 578fc9541..0183954b1 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/GenericListener6.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/GenericListener6.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.entity; import org.seasar.doma.jdbc.entity.PostDeleteContext; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/GenericListener6Entity.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/GenericListener6Entity.java index fbd762228..c2cea8b18 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/GenericListener6Entity.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/GenericListener6Entity.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.entity; import org.seasar.doma.Entity; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/GenericListener7.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/GenericListener7.java index 567a00120..e8e2b79f5 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/GenericListener7.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/GenericListener7.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.entity; import org.seasar.doma.jdbc.entity.EntityListener; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/GenericListener8.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/GenericListener8.java index 79690fa75..0c5301f57 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/GenericListener8.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/GenericListener8.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.entity; import org.seasar.doma.jdbc.entity.PostDeleteContext; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/GenericListener8Entity.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/GenericListener8Entity.java index 1c41be191..16db1abf3 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/GenericListener8Entity.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/GenericListener8Entity.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.entity; import org.seasar.doma.Entity; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/Identifier.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/Identifier.java index 84700db9e..65609e89a 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/Identifier.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/Identifier.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.entity; import org.seasar.doma.Domain; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/IllegalId.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/IllegalId.java index c5b1e59b7..30f31d4fd 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/IllegalId.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/IllegalId.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.entity; import org.seasar.doma.Domain; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/IllegalIdPropertyEntity.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/IllegalIdPropertyEntity.java index 448efb233..4f8bc3d9e 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/IllegalIdPropertyEntity.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/IllegalIdPropertyEntity.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.entity; import org.seasar.doma.Entity; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/IllegalMutableChildEntity.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/IllegalMutableChildEntity.java index 044f7c59c..6fd00acfe 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/IllegalMutableChildEntity.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/IllegalMutableChildEntity.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.entity; import org.seasar.doma.Entity; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/IllegalOriginalStatesImmutableEntity.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/IllegalOriginalStatesImmutableEntity.java index 8c0db63f2..f31bbf8c1 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/IllegalOriginalStatesImmutableEntity.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/IllegalOriginalStatesImmutableEntity.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.entity; import org.seasar.doma.Entity; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/IllegalVersion.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/IllegalVersion.java index f21523c79..2b291fd35 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/IllegalVersion.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/IllegalVersion.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.entity; import org.seasar.doma.Domain; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/IllegalVersionPropertyEntity.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/IllegalVersionPropertyEntity.java index 3f0856421..5571fe521 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/IllegalVersionPropertyEntity.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/IllegalVersionPropertyEntity.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.entity; import org.seasar.doma.Entity; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/ImmutableChildEntity.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/ImmutableChildEntity.java index 8d04a61ab..eeb2ea457 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/ImmutableChildEntity.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/ImmutableChildEntity.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.entity; import org.seasar.doma.Entity; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/ImmutableEmp.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/ImmutableEmp.java index e228d4dd7..9419698bf 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/ImmutableEmp.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/ImmutableEmp.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.entity; import java.math.BigDecimal; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/ImmutableEmp2.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/ImmutableEmp2.java index 483114a9a..63d00716c 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/ImmutableEmp2.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/ImmutableEmp2.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.entity; import java.io.Serializable; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/ImmutableEntity.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/ImmutableEntity.java index d663ca7a9..0d155c3bb 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/ImmutableEntity.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/ImmutableEntity.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.entity; import org.seasar.doma.Entity; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/ImmutableParentEntity.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/ImmutableParentEntity.java index 55140eff2..9d12ece8e 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/ImmutableParentEntity.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/ImmutableParentEntity.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.entity; import org.seasar.doma.Entity; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/ImmutableUser.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/ImmutableUser.java index 2e7a2e0e2..aa9bbd9ea 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/ImmutableUser.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/ImmutableUser.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.entity; import org.seasar.doma.Entity; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/Kind.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/Kind.java index 40899a552..de71d4080 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/Kind.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/Kind.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.entity; public enum Kind { diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/ListenerArgumentTypeIllegalEntity.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/ListenerArgumentTypeIllegalEntity.java index ffeb6f2e3..a924b9959 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/ListenerArgumentTypeIllegalEntity.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/ListenerArgumentTypeIllegalEntity.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.entity; import org.seasar.doma.Entity; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/ListenerArgumentTypeIllegalEntityListener.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/ListenerArgumentTypeIllegalEntityListener.java index dc9583dbb..91c535b33 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/ListenerArgumentTypeIllegalEntityListener.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/ListenerArgumentTypeIllegalEntityListener.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.entity; import org.seasar.doma.jdbc.entity.EntityListener; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/LombokAllArgsConstructor.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/LombokAllArgsConstructor.java index c88300570..358dfc355 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/LombokAllArgsConstructor.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/LombokAllArgsConstructor.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.entity; import org.seasar.doma.Entity; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/LombokAllArgsConstructorAccess_none.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/LombokAllArgsConstructorAccess_none.java index 7c04f90fb..b2a08385b 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/LombokAllArgsConstructorAccess_none.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/LombokAllArgsConstructorAccess_none.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.entity; import org.seasar.doma.Entity; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/LombokAllArgsConstructorAccess_private.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/LombokAllArgsConstructorAccess_private.java index 2e19e0042..4796fdf18 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/LombokAllArgsConstructorAccess_private.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/LombokAllArgsConstructorAccess_private.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.entity; import org.seasar.doma.Entity; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/LombokAllArgsConstructorNotImmutable.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/LombokAllArgsConstructorNotImmutable.java index 2c6b61af5..8e9307b58 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/LombokAllArgsConstructorNotImmutable.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/LombokAllArgsConstructorNotImmutable.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.entity; import org.seasar.doma.Entity; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/LombokAllArgsConstructorStaticName.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/LombokAllArgsConstructorStaticName.java index 26d17f632..26b0bbfab 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/LombokAllArgsConstructorStaticName.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/LombokAllArgsConstructorStaticName.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.entity; import org.seasar.doma.Entity; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/LombokValue.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/LombokValue.java index 18549d8be..7910e7181 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/LombokValue.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/LombokValue.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.entity; import org.seasar.doma.Entity; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/LombokValueNotImmutable.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/LombokValueNotImmutable.java index 0a4f68296..a7da4728a 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/LombokValueNotImmutable.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/LombokValueNotImmutable.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.entity; import org.seasar.doma.Entity; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/LombokValueStaticConstructor.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/LombokValueStaticConstructor.java index 62bfbf631..4ad80956b 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/LombokValueStaticConstructor.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/LombokValueStaticConstructor.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.entity; import org.seasar.doma.Entity; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/Name.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/Name.java index 5ec0fbd8c..68c4ce4a2 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/Name.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/Name.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.entity; import org.seasar.doma.Domain; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/NameUnsafeEntity_.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/NameUnsafeEntity_.java index 80438d5d0..3a13d9f34 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/NameUnsafeEntity_.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/NameUnsafeEntity_.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.entity; import org.seasar.doma.Entity; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/Names.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/Names.java index a8290344a..53550daf3 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/Names.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/Names.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.entity; import java.util.Arrays; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/NamingType1Entity.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/NamingType1Entity.java index 8ed30ed32..202a7d425 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/NamingType1Entity.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/NamingType1Entity.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.entity; import org.seasar.doma.Entity; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/NamingType2Entity.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/NamingType2Entity.java index 51d514439..9f4855165 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/NamingType2Entity.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/NamingType2Entity.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.entity; import org.seasar.doma.Entity; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/NamingType3Entity.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/NamingType3Entity.java index 2b84b2aa3..b190367fa 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/NamingType3Entity.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/NamingType3Entity.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.entity; import org.seasar.doma.Entity; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/NoDefaultConstructorEntityListener.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/NoDefaultConstructorEntityListener.java index c2807441c..18fffb43d 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/NoDefaultConstructorEntityListener.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/NoDefaultConstructorEntityListener.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.entity; import org.seasar.doma.jdbc.entity.EntityListener; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/NoDefaultConstructorEntityListenerEntity.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/NoDefaultConstructorEntityListenerEntity.java index 072318616..c8e1b689e 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/NoDefaultConstructorEntityListenerEntity.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/NoDefaultConstructorEntityListenerEntity.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.entity; import org.seasar.doma.Entity; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/NoDefaultConstructorSequenceIdGenerator.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/NoDefaultConstructorSequenceIdGenerator.java index 64eaece2e..875c2d2d8 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/NoDefaultConstructorSequenceIdGenerator.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/NoDefaultConstructorSequenceIdGenerator.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.entity; import org.seasar.doma.jdbc.id.BuiltinSequenceIdGenerator; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/NoDefaultConstructorSequenceIdGeneratorEntity.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/NoDefaultConstructorSequenceIdGeneratorEntity.java index 17282bc14..ec9af719e 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/NoDefaultConstructorSequenceIdGeneratorEntity.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/NoDefaultConstructorSequenceIdGeneratorEntity.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.entity; import org.seasar.doma.Entity; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/NoDefaultConstructorTableIdGenerator.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/NoDefaultConstructorTableIdGenerator.java index f5ee76573..450b82a69 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/NoDefaultConstructorTableIdGenerator.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/NoDefaultConstructorTableIdGenerator.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.entity; import org.seasar.doma.jdbc.id.BuiltinTableIdGenerator; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/NoDefaultConstructorTableIdGeneratorEntity.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/NoDefaultConstructorTableIdGeneratorEntity.java index fc8916c9b..17be7e09a 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/NoDefaultConstructorTableIdGeneratorEntity.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/NoDefaultConstructorTableIdGeneratorEntity.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.entity; import org.seasar.doma.Entity; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/NotTopLevelEntity.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/NotTopLevelEntity.java index 0be752ba0..fb4f19ed0 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/NotTopLevelEntity.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/NotTopLevelEntity.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.entity; import org.seasar.doma.Entity; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/NotTopLevelImmutableEntity.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/NotTopLevelImmutableEntity.java index b20685f85..48329c59d 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/NotTopLevelImmutableEntity.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/NotTopLevelImmutableEntity.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.entity; import org.seasar.doma.Entity; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/OptionalDoubleEntity.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/OptionalDoubleEntity.java index 65ced28dd..8d9d538ba 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/OptionalDoubleEntity.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/OptionalDoubleEntity.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.entity; import java.util.OptionalDouble; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/OptionalEntity.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/OptionalEntity.java index 0e2c0994b..36ed67617 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/OptionalEntity.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/OptionalEntity.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.entity; import java.util.Optional; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/OptionalIntEntity.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/OptionalIntEntity.java index 787ef658a..2e0978727 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/OptionalIntEntity.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/OptionalIntEntity.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.entity; import java.util.OptionalInt; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/OptionalLongEntity.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/OptionalLongEntity.java index ec8f59bd9..5fb99bc27 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/OptionalLongEntity.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/OptionalLongEntity.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.entity; import java.util.OptionalLong; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/OriginalStatesChildEntity.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/OriginalStatesChildEntity.java index 4f58f1c67..59132d778 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/OriginalStatesChildEntity.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/OriginalStatesChildEntity.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.entity; import java.math.BigDecimal; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/OriginalStatesParentEntity.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/OriginalStatesParentEntity.java index 6b2e08f9b..5793c1a9e 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/OriginalStatesParentEntity.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/OriginalStatesParentEntity.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.entity; import org.seasar.doma.Entity; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/Outer__illegalName.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/Outer__illegalName.java index 5e74cabc6..98ddcd6d2 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/Outer__illegalName.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/Outer__illegalName.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.entity; import org.seasar.doma.Entity; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/Outer_nonPublicInner.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/Outer_nonPublicInner.java index e19c0352e..f227297a3 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/Outer_nonPublicInner.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/Outer_nonPublicInner.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.entity; import org.seasar.doma.Entity; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/Outer_nonPublicMiddle.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/Outer_nonPublicMiddle.java index 8049fe65c..cfb7b5838 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/Outer_nonPublicMiddle.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/Outer_nonPublicMiddle.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.entity; import org.seasar.doma.Entity; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/Outer_nonStaticInner.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/Outer_nonStaticInner.java index 9ff9d8534..dec7cabe5 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/Outer_nonStaticInner.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/Outer_nonStaticInner.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.entity; import org.seasar.doma.Entity; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/PackagePrivateEntity.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/PackagePrivateEntity.java index 7abcd39c4..9d56d627b 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/PackagePrivateEntity.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/PackagePrivateEntity.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.entity; import java.math.BigDecimal; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/ParameterizedPropertyEntity.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/ParameterizedPropertyEntity.java index b3013e3e4..313d9f791 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/ParameterizedPropertyEntity.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/ParameterizedPropertyEntity.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.entity; import org.seasar.doma.Entity; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/Parent2Entity.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/Parent2Entity.java index 3d7cd9024..25f05df09 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/Parent2Entity.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/Parent2Entity.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.entity; import org.seasar.doma.Entity; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/Parent2EntityListener.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/Parent2EntityListener.java index 02133f230..ae536c13e 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/Parent2EntityListener.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/Parent2EntityListener.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.entity; import org.seasar.doma.jdbc.entity.EntityListener; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/Parent3Entity.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/Parent3Entity.java index dc6b4e7b6..0885485e5 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/Parent3Entity.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/Parent3Entity.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.entity; import org.seasar.doma.Entity; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/Parent3EntityListener.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/Parent3EntityListener.java index 3fb59ac67..339673357 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/Parent3EntityListener.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/Parent3EntityListener.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.entity; import org.seasar.doma.jdbc.entity.EntityListener; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/ParentEntity.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/ParentEntity.java index 15da61d4c..3a258114c 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/ParentEntity.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/ParentEntity.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.entity; import org.seasar.doma.Entity; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/PrimaryKey.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/PrimaryKey.java index 7c2821820..e268b77f1 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/PrimaryKey.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/PrimaryKey.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.entity; public class PrimaryKey {} diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/PrimaryKeyConverter.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/PrimaryKeyConverter.java index 3aa261e32..06f3e27a8 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/PrimaryKeyConverter.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/PrimaryKeyConverter.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.entity; import org.seasar.doma.ExternalDomain; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/PrimitivePropertyEntity.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/PrimitivePropertyEntity.java index f8fdd5e41..4b25e684d 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/PrimitivePropertyEntity.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/PrimitivePropertyEntity.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.entity; import org.seasar.doma.Entity; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/PrivateOriginalStatesEntity.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/PrivateOriginalStatesEntity.java index c31b7d2d2..3ebab3798 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/PrivateOriginalStatesEntity.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/PrivateOriginalStatesEntity.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.entity; import org.seasar.doma.Entity; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/PrivatePropertyEntity.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/PrivatePropertyEntity.java index bac7736e3..c6c29bf39 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/PrivatePropertyEntity.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/PrivatePropertyEntity.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.entity; import org.seasar.doma.Entity; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/PropertyNameReservedEntity.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/PropertyNameReservedEntity.java index d52dd9585..623aa0d90 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/PropertyNameReservedEntity.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/PropertyNameReservedEntity.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.entity; import org.seasar.doma.Entity; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/QuoteEntity.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/QuoteEntity.java index 67fa85c0e..82fbb6ccf 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/QuoteEntity.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/QuoteEntity.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.entity; import org.seasar.doma.Column; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/RawtypeOptionalEntity.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/RawtypeOptionalEntity.java index f8abc7bd4..23a1df3ac 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/RawtypeOptionalEntity.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/RawtypeOptionalEntity.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.entity; import java.util.Optional; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/RawtypePropertyEntity.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/RawtypePropertyEntity.java index 6579370ee..7de6c53af 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/RawtypePropertyEntity.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/RawtypePropertyEntity.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.entity; import org.seasar.doma.Entity; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/Room.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/Room.java index 27ab83745..d29762e18 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/Room.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/Room.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.entity; import org.seasar.doma.Entity; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/SequenceGeneratorWithoutGeneratedValueEntity.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/SequenceGeneratorWithoutGeneratedValueEntity.java index 3223d607f..76a8c2d78 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/SequenceGeneratorWithoutGeneratedValueEntity.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/SequenceGeneratorWithoutGeneratedValueEntity.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.entity; import org.seasar.doma.Entity; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/StringArrayConverter.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/StringArrayConverter.java index 4d6d0a8c1..92aac8725 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/StringArrayConverter.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/StringArrayConverter.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.entity; import org.seasar.doma.ExternalDomain; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/SupportedPropertyEntity.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/SupportedPropertyEntity.java index 4d5c45467..7ecf60ab7 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/SupportedPropertyEntity.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/SupportedPropertyEntity.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.entity; import java.math.BigDecimal; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/TableGeneratorWithoutGeneratedValueEntity.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/TableGeneratorWithoutGeneratedValueEntity.java index cce0eef9b..681b4a0fa 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/TableGeneratorWithoutGeneratedValueEntity.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/TableGeneratorWithoutGeneratedValueEntity.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.entity; import org.seasar.doma.Entity; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/TenantIdEntity.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/TenantIdEntity.java index 127998c77..3aa6d6dd4 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/TenantIdEntity.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/TenantIdEntity.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.entity; import org.seasar.doma.Entity; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/TransientPropertyEntity.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/TransientPropertyEntity.java index 192861644..f9351831e 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/TransientPropertyEntity.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/TransientPropertyEntity.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.entity; import java.util.List; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/UnsupportedPropertyEntity.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/UnsupportedPropertyEntity.java index 187ec1759..f54ca1e11 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/UnsupportedPropertyEntity.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/UnsupportedPropertyEntity.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.entity; import java.util.Calendar; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/User.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/User.java index 4555adc5a..d694ad971 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/User.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/User.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.entity; import org.seasar.doma.Entity; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/UserAddress.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/UserAddress.java index 2ee997f56..23101e55c 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/UserAddress.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/UserAddress.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.entity; import org.seasar.doma.Embeddable; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/ValueObjectConverter.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/ValueObjectConverter.java index 5ed5970fa..2cf1a7e2e 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/ValueObjectConverter.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/ValueObjectConverter.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.entity; import org.seasar.doma.ExternalDomain; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/Ver.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/Ver.java index 1d587380d..fb8ef7370 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/Ver.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/Ver.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.entity; import org.seasar.doma.Domain; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/VersionDuplicatedEntity.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/VersionDuplicatedEntity.java index 241f48169..7f2e33e76 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/VersionDuplicatedEntity.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/VersionDuplicatedEntity.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.entity; import org.seasar.doma.Entity; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/VersionNo.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/VersionNo.java index 5134f48fe..8e6b7d518 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/VersionNo.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/VersionNo.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.entity; public class VersionNo {} diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/VersionNoConverter.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/VersionNoConverter.java index 57a33f514..f7320e478 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/VersionNoConverter.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/VersionNoConverter.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.entity; import org.seasar.doma.ExternalDomain; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/VersionNotNumberEntity.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/VersionNotNumberEntity.java index 999332314..39265ac1c 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/VersionNotNumberEntity.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/VersionNotNumberEntity.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.entity; import org.seasar.doma.Entity; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/Weight.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/Weight.java index b696ba007..37b62233e 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/Weight.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/Weight.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.entity; import org.seasar.doma.Domain; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/WildcardOptionalEntity.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/WildcardOptionalEntity.java index b7631e846..64337338b 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/WildcardOptionalEntity.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/WildcardOptionalEntity.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.entity; import java.util.Optional; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/WildcardPropertyEntity.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/WildcardPropertyEntity.java index 6fa209dee..9dee826ea 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/WildcardPropertyEntity.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/entity/WildcardPropertyEntity.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.entity; import org.seasar.doma.Entity; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/error/AbstractProcessorTest.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/error/AbstractProcessorTest.java index af8154056..8e7f896c0 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/error/AbstractProcessorTest.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/error/AbstractProcessorTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.error; import org.junit.jupiter.api.AfterEach; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/error/MyAnnotation.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/error/MyAnnotation.java index a8439cd60..68278a25c 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/error/MyAnnotation.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/error/MyAnnotation.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.error; public @interface MyAnnotation {} diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/error/MyProcessor.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/error/MyProcessor.java index 28e76e2a2..97a34c4a9 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/error/MyProcessor.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/error/MyProcessor.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.error; import java.util.Set; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/error/Person.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/error/Person.java index 2c019d460..2c477876a 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/error/Person.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/error/Person.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.error; @MyAnnotation diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/metamodel/Dept.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/metamodel/Dept.java index e94513800..d7a2015c5 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/metamodel/Dept.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/metamodel/Dept.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.metamodel; import org.seasar.doma.Entity; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/metamodel/Emp.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/metamodel/Emp.java index d523683b6..f047d8c95 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/metamodel/Emp.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/metamodel/Emp.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.metamodel; import java.util.Optional; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/metamodel/EmpInfo.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/metamodel/EmpInfo.java index d8c3e7422..dc8520aaf 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/metamodel/EmpInfo.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/metamodel/EmpInfo.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.metamodel; import java.time.LocalDate; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/metamodel/MetamodelOptionTest.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/metamodel/MetamodelOptionTest.java index 772282ec0..46a2b3860 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/metamodel/MetamodelOptionTest.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/metamodel/MetamodelOptionTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.metamodel; import static org.junit.jupiter.api.Assertions.assertTrue; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/metamodel/MetamodelTest.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/metamodel/MetamodelTest.java index 1eec37084..fdb47eecf 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/metamodel/MetamodelTest.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/metamodel/MetamodelTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.metamodel; import static org.junit.jupiter.api.Assertions.assertFalse; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/metamodel/Name.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/metamodel/Name.java index cea2ab51f..c512db327 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/metamodel/Name.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/metamodel/Name.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.metamodel; import org.seasar.doma.Domain; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/metamodel/Person.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/metamodel/Person.java index 5e082714e..f0d7ed8eb 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/metamodel/Person.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/metamodel/Person.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.metamodel; import org.seasar.doma.Entity; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/metamodel/Salesman.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/metamodel/Salesman.java index bf0b21ddd..40dc09c18 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/metamodel/Salesman.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/metamodel/Salesman.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.metamodel; import org.seasar.doma.Entity; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/metamodel/ScopeTest.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/metamodel/ScopeTest.java index 8f5cea096..951325cc0 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/metamodel/ScopeTest.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/metamodel/ScopeTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.metamodel; import static org.junit.jupiter.api.Assertions.assertTrue; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/metamodel/Worker.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/metamodel/Worker.java index 69792bf46..d77d9e8df 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/metamodel/Worker.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/metamodel/Worker.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.metamodel; import org.seasar.doma.Entity; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/scope/Item.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/scope/Item.java index fc2245a89..e95b09c35 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/scope/Item.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/scope/Item.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.scope; import org.seasar.doma.Entity; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/scope/ItemScope.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/scope/ItemScope.java index baeb4c888..f8008e057 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/scope/ItemScope.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/scope/ItemScope.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.scope; import java.io.Serializable; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/scope/Item_.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/scope/Item_.java index 810bf367b..35ac391f2 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/scope/Item_.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/scope/Item_.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.scope; public final class Item_ implements org.seasar.doma.jdbc.criteria.metamodel.EntityMetamodel { diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/scope/NoParamMethod.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/scope/NoParamMethod.java index 42140c5d8..3b4da348f 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/scope/NoParamMethod.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/scope/NoParamMethod.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.scope; import org.seasar.doma.Entity; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/scope/NoParamMethodScope.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/scope/NoParamMethodScope.java index e6a985f4d..49ce1ce42 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/scope/NoParamMethodScope.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/scope/NoParamMethodScope.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.scope; import java.util.function.Consumer; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/scope/NonPublicMethod.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/scope/NonPublicMethod.java index 8cffd13b2..4086b2327 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/scope/NonPublicMethod.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/scope/NonPublicMethod.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.scope; import org.seasar.doma.Entity; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/scope/NonPublicMethodScope.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/scope/NonPublicMethodScope.java index 08ea134d9..3ec63c67b 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/scope/NonPublicMethodScope.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/scope/NonPublicMethodScope.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.scope; import java.util.function.Consumer; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/scope/NonPublicMethod_.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/scope/NonPublicMethod_.java index 781f8cbb2..1a98a00de 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/scope/NonPublicMethod_.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/scope/NonPublicMethod_.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.scope; public class NonPublicMethod_ {} diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/scope/ScopeProcessorTest.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/scope/ScopeProcessorTest.java index 2bf7a5a8c..17dd12fa7 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/scope/ScopeProcessorTest.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/scope/ScopeProcessorTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.scope; import static org.junit.jupiter.api.Assertions.assertFalse; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/scope/StaticMethod.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/scope/StaticMethod.java index 4d5487d77..ae7b06c83 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/scope/StaticMethod.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/scope/StaticMethod.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.scope; import org.seasar.doma.Entity; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/scope/StaticMethodScope.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/scope/StaticMethodScope.java index fb39fcd4b..8d97c7229 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/scope/StaticMethodScope.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/scope/StaticMethodScope.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.scope; import java.util.function.Consumer; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/scope/StaticMethod_.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/scope/StaticMethod_.java index 90226f234..4d22ffcc6 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/scope/StaticMethod_.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/scope/StaticMethod_.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.scope; public class StaticMethod_ {} diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/scope/_Item.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/scope/_Item.java index 1d49d5503..03b69cc9a 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/scope/_Item.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/processor/scope/_Item.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.processor.scope; import java.util.List; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/validator/AbstractCriteria.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/validator/AbstractCriteria.java index 902d165c9..c59277464 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/validator/AbstractCriteria.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/validator/AbstractCriteria.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.validator; import java.util.ArrayList; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/validator/BatchSqlValidationDao.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/validator/BatchSqlValidationDao.java index 5b8e5d39f..b4f5617e8 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/validator/BatchSqlValidationDao.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/validator/BatchSqlValidationDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.validator; import java.util.List; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/validator/BatchSqlValidatorTest.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/validator/BatchSqlValidatorTest.java index 7ae4731e7..450c0724e 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/validator/BatchSqlValidatorTest.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/validator/BatchSqlValidatorTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.validator; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/validator/CriteriaHolder.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/validator/CriteriaHolder.java index b6949f206..be552e36f 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/validator/CriteriaHolder.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/validator/CriteriaHolder.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.validator; public class CriteriaHolder { diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/validator/Emp.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/validator/Emp.java index 3f89699a8..a66397a47 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/validator/Emp.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/validator/Emp.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.validator; import java.io.Serializable; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/validator/ExpressionValidationDao.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/validator/ExpressionValidationDao.java index 77ec8e972..f6984bd2a 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/validator/ExpressionValidationDao.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/validator/ExpressionValidationDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.validator; public interface ExpressionValidationDao { diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/validator/ExpressionValidatorTest.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/validator/ExpressionValidatorTest.java index 1dad1eb70..f6655b304 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/validator/ExpressionValidatorTest.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/validator/ExpressionValidatorTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.validator; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/validator/Job.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/validator/Job.java index b28eed5b9..69e7f0925 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/validator/Job.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/validator/Job.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.validator; public class Job { diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/validator/LongCriteria.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/validator/LongCriteria.java index 6f8fb6dad..8b9a0e0a5 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/validator/LongCriteria.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/validator/LongCriteria.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.validator; public class LongCriteria extends AbstractCriteria {} diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/validator/MyExpressionFunctions.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/validator/MyExpressionFunctions.java index aecdd9f60..0bf4649cc 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/validator/MyExpressionFunctions.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/validator/MyExpressionFunctions.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.validator; import org.seasar.doma.jdbc.dialect.H2Dialect.H2ExpressionFunctions; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/validator/Person.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/validator/Person.java index 3d3cfa706..a31a66768 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/validator/Person.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/validator/Person.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.validator; import java.util.Optional; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/validator/SqlValidationDao.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/validator/SqlValidationDao.java index 62c25852d..8aae00396 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/validator/SqlValidationDao.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/validator/SqlValidationDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.validator; import java.util.Iterator; diff --git a/doma-processor/src/test/java/org/seasar/doma/internal/apt/validator/SqlValidatorTest.java b/doma-processor/src/test/java/org/seasar/doma/internal/apt/validator/SqlValidatorTest.java index 9c7567047..9d636d03e 100644 --- a/doma-processor/src/test/java/org/seasar/doma/internal/apt/validator/SqlValidatorTest.java +++ b/doma-processor/src/test/java/org/seasar/doma/internal/apt/validator/SqlValidatorTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.internal.apt.validator; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-slf4j/src/main/java/module-info.java b/doma-slf4j/src/main/java/module-info.java index 0bf827ae9..33cf08a35 100644 --- a/doma-slf4j/src/main/java/module-info.java +++ b/doma-slf4j/src/main/java/module-info.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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. + */ module org.seasar.doma.slf4j { exports org.seasar.doma.slf4j; diff --git a/doma-slf4j/src/main/java/org/seasar/doma/slf4j/Slf4jJdbcLogger.java b/doma-slf4j/src/main/java/org/seasar/doma/slf4j/Slf4jJdbcLogger.java index 7597639a1..a4117c2ba 100644 --- a/doma-slf4j/src/main/java/org/seasar/doma/slf4j/Slf4jJdbcLogger.java +++ b/doma-slf4j/src/main/java/org/seasar/doma/slf4j/Slf4jJdbcLogger.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.slf4j; import java.sql.SQLException; diff --git a/doma-slf4j/src/test/java/org/seasar/doma/slf4j/Slf4jJdbcLoggerTest.java b/doma-slf4j/src/test/java/org/seasar/doma/slf4j/Slf4jJdbcLoggerTest.java index 5a2a9151c..fab09d827 100644 --- a/doma-slf4j/src/test/java/org/seasar/doma/slf4j/Slf4jJdbcLoggerTest.java +++ b/doma-slf4j/src/test/java/org/seasar/doma/slf4j/Slf4jJdbcLoggerTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.slf4j; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/doma-template/src/main/java/module-info.java b/doma-template/src/main/java/module-info.java index 9ce93e109..f51dbb6a0 100644 --- a/doma-template/src/main/java/module-info.java +++ b/doma-template/src/main/java/module-info.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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. + */ module org.seasar.doma.template { exports org.seasar.doma.template; diff --git a/doma-template/src/main/java/org/seasar/doma/template/SqlArgument.java b/doma-template/src/main/java/org/seasar/doma/template/SqlArgument.java index 7eeece9d9..995fbe765 100644 --- a/doma-template/src/main/java/org/seasar/doma/template/SqlArgument.java +++ b/doma-template/src/main/java/org/seasar/doma/template/SqlArgument.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.template; import java.util.Objects; diff --git a/doma-template/src/main/java/org/seasar/doma/template/SqlStatement.java b/doma-template/src/main/java/org/seasar/doma/template/SqlStatement.java index 90a2adcae..d4685e792 100644 --- a/doma-template/src/main/java/org/seasar/doma/template/SqlStatement.java +++ b/doma-template/src/main/java/org/seasar/doma/template/SqlStatement.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.template; import java.util.List; diff --git a/doma-template/src/main/java/org/seasar/doma/template/SqlTemplate.java b/doma-template/src/main/java/org/seasar/doma/template/SqlTemplate.java index 321b326ee..5ec6d3e02 100644 --- a/doma-template/src/main/java/org/seasar/doma/template/SqlTemplate.java +++ b/doma-template/src/main/java/org/seasar/doma/template/SqlTemplate.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.template; import java.util.HashMap; diff --git a/doma-template/src/test/java/org/seasar/doma/template/SqlTemplateTest.java b/doma-template/src/test/java/org/seasar/doma/template/SqlTemplateTest.java index 0210466a9..55f2ff288 100644 --- a/doma-template/src/test/java/org/seasar/doma/template/SqlTemplateTest.java +++ b/doma-template/src/test/java/org/seasar/doma/template/SqlTemplateTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.template; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/integration-test-common/src/main/java/org/seasar/doma/it/AppConfig.java b/integration-test-common/src/main/java/org/seasar/doma/it/AppConfig.java index 5aa0c2ad7..33a6722ef 100644 --- a/integration-test-common/src/main/java/org/seasar/doma/it/AppConfig.java +++ b/integration-test-common/src/main/java/org/seasar/doma/it/AppConfig.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it; import java.util.Objects; diff --git a/integration-test-common/src/main/java/org/seasar/doma/it/CustomSqliteDialect.java b/integration-test-common/src/main/java/org/seasar/doma/it/CustomSqliteDialect.java index 20f89d99f..10b96b7e3 100644 --- a/integration-test-common/src/main/java/org/seasar/doma/it/CustomSqliteDialect.java +++ b/integration-test-common/src/main/java/org/seasar/doma/it/CustomSqliteDialect.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it; import org.seasar.doma.jdbc.dialect.SqliteDialect; diff --git a/integration-test-common/src/main/java/org/seasar/doma/it/CustomSqliteJdbcMappingVisitor.java b/integration-test-common/src/main/java/org/seasar/doma/it/CustomSqliteJdbcMappingVisitor.java index 6f3d733a3..8692fa6c8 100644 --- a/integration-test-common/src/main/java/org/seasar/doma/it/CustomSqliteJdbcMappingVisitor.java +++ b/integration-test-common/src/main/java/org/seasar/doma/it/CustomSqliteJdbcMappingVisitor.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it; import java.math.BigDecimal; diff --git a/integration-test-common/src/main/java/org/seasar/doma/it/CustomSqliteLogFormattingVisitor.java b/integration-test-common/src/main/java/org/seasar/doma/it/CustomSqliteLogFormattingVisitor.java index 32b4413f9..feee5e5c4 100644 --- a/integration-test-common/src/main/java/org/seasar/doma/it/CustomSqliteLogFormattingVisitor.java +++ b/integration-test-common/src/main/java/org/seasar/doma/it/CustomSqliteLogFormattingVisitor.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it; import java.time.LocalDate; diff --git a/integration-test-common/src/main/java/org/seasar/doma/it/Dbms.java b/integration-test-common/src/main/java/org/seasar/doma/it/Dbms.java index 4859c302a..a0bc6082f 100644 --- a/integration-test-common/src/main/java/org/seasar/doma/it/Dbms.java +++ b/integration-test-common/src/main/java/org/seasar/doma/it/Dbms.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it; public enum Dbms { diff --git a/integration-test-common/src/main/java/org/seasar/doma/it/DelegatingConfig.java b/integration-test-common/src/main/java/org/seasar/doma/it/DelegatingConfig.java index 935ee9e13..ff4448bdb 100644 --- a/integration-test-common/src/main/java/org/seasar/doma/it/DelegatingConfig.java +++ b/integration-test-common/src/main/java/org/seasar/doma/it/DelegatingConfig.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it; import java.util.Objects; diff --git a/integration-test-common/src/main/java/org/seasar/doma/it/IntegrationTestEnvironment.java b/integration-test-common/src/main/java/org/seasar/doma/it/IntegrationTestEnvironment.java index 5aa904700..a74c29946 100644 --- a/integration-test-common/src/main/java/org/seasar/doma/it/IntegrationTestEnvironment.java +++ b/integration-test-common/src/main/java/org/seasar/doma/it/IntegrationTestEnvironment.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it; import static org.junit.jupiter.api.extension.ConditionEvaluationResult.disabled; diff --git a/integration-test-common/src/main/java/org/seasar/doma/it/LogConfigurator.java b/integration-test-common/src/main/java/org/seasar/doma/it/LogConfigurator.java index 19df9b831..c1bed7a8b 100644 --- a/integration-test-common/src/main/java/org/seasar/doma/it/LogConfigurator.java +++ b/integration-test-common/src/main/java/org/seasar/doma/it/LogConfigurator.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it; import static ch.qos.logback.classic.spi.Configurator.ExecutionStatus.DO_NOT_INVOKE_NEXT_IF_ANY; diff --git a/integration-test-common/src/main/java/org/seasar/doma/it/Run.java b/integration-test-common/src/main/java/org/seasar/doma/it/Run.java index 0552f7c74..0c61835f0 100644 --- a/integration-test-common/src/main/java/org/seasar/doma/it/Run.java +++ b/integration-test-common/src/main/java/org/seasar/doma/it/Run.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it; import java.lang.annotation.ElementType; diff --git a/integration-test-common/src/main/java/org/seasar/doma/it/dao/ScriptDao.java b/integration-test-common/src/main/java/org/seasar/doma/it/dao/ScriptDao.java index 4f73817f1..56977a5a3 100644 --- a/integration-test-common/src/main/java/org/seasar/doma/it/dao/ScriptDao.java +++ b/integration-test-common/src/main/java/org/seasar/doma/it/dao/ScriptDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.dao; import org.seasar.doma.Dao; diff --git a/integration-test-java/src/main/java/org/seasar/doma/it/criteria/Address.java b/integration-test-java/src/main/java/org/seasar/doma/it/criteria/Address.java index 81b406912..26e9720b6 100644 --- a/integration-test-java/src/main/java/org/seasar/doma/it/criteria/Address.java +++ b/integration-test-java/src/main/java/org/seasar/doma/it/criteria/Address.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.criteria; import org.seasar.doma.Entity; diff --git a/integration-test-java/src/main/java/org/seasar/doma/it/criteria/Avenue.java b/integration-test-java/src/main/java/org/seasar/doma/it/criteria/Avenue.java index 187f2247c..725a8b8ec 100644 --- a/integration-test-java/src/main/java/org/seasar/doma/it/criteria/Avenue.java +++ b/integration-test-java/src/main/java/org/seasar/doma/it/criteria/Avenue.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.criteria; import org.seasar.doma.DataType; diff --git a/integration-test-java/src/main/java/org/seasar/doma/it/criteria/Book.java b/integration-test-java/src/main/java/org/seasar/doma/it/criteria/Book.java index 24f6347f1..65c5a5c4a 100644 --- a/integration-test-java/src/main/java/org/seasar/doma/it/criteria/Book.java +++ b/integration-test-java/src/main/java/org/seasar/doma/it/criteria/Book.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.criteria; import java.util.UUID; diff --git a/integration-test-java/src/main/java/org/seasar/doma/it/criteria/Coach.java b/integration-test-java/src/main/java/org/seasar/doma/it/criteria/Coach.java index cd57f3a8d..7c0601a1b 100644 --- a/integration-test-java/src/main/java/org/seasar/doma/it/criteria/Coach.java +++ b/integration-test-java/src/main/java/org/seasar/doma/it/criteria/Coach.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.criteria; import org.seasar.doma.Entity; diff --git a/integration-test-java/src/main/java/org/seasar/doma/it/criteria/CompKeyDepartment.java b/integration-test-java/src/main/java/org/seasar/doma/it/criteria/CompKeyDepartment.java index ee5b621da..3c26826ad 100644 --- a/integration-test-java/src/main/java/org/seasar/doma/it/criteria/CompKeyDepartment.java +++ b/integration-test-java/src/main/java/org/seasar/doma/it/criteria/CompKeyDepartment.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.criteria; import java.util.ArrayList; diff --git a/integration-test-java/src/main/java/org/seasar/doma/it/criteria/Department.java b/integration-test-java/src/main/java/org/seasar/doma/it/criteria/Department.java index 08416c7fd..9288c132e 100644 --- a/integration-test-java/src/main/java/org/seasar/doma/it/criteria/Department.java +++ b/integration-test-java/src/main/java/org/seasar/doma/it/criteria/Department.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.criteria; import java.util.ArrayList; diff --git a/integration-test-java/src/main/java/org/seasar/doma/it/criteria/DepartmentArchive.java b/integration-test-java/src/main/java/org/seasar/doma/it/criteria/DepartmentArchive.java index cc7683f7b..75f2c7107 100644 --- a/integration-test-java/src/main/java/org/seasar/doma/it/criteria/DepartmentArchive.java +++ b/integration-test-java/src/main/java/org/seasar/doma/it/criteria/DepartmentArchive.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.criteria; import java.util.ArrayList; diff --git a/integration-test-java/src/main/java/org/seasar/doma/it/criteria/DepartmentCount.java b/integration-test-java/src/main/java/org/seasar/doma/it/criteria/DepartmentCount.java index c98325b78..6291ad7f4 100644 --- a/integration-test-java/src/main/java/org/seasar/doma/it/criteria/DepartmentCount.java +++ b/integration-test-java/src/main/java/org/seasar/doma/it/criteria/DepartmentCount.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.criteria; import org.seasar.doma.Column; diff --git a/integration-test-java/src/main/java/org/seasar/doma/it/criteria/Dept.java b/integration-test-java/src/main/java/org/seasar/doma/it/criteria/Dept.java index 404b69e90..8c5adb56d 100644 --- a/integration-test-java/src/main/java/org/seasar/doma/it/criteria/Dept.java +++ b/integration-test-java/src/main/java/org/seasar/doma/it/criteria/Dept.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.criteria; import org.seasar.doma.Entity; diff --git a/integration-test-java/src/main/java/org/seasar/doma/it/criteria/Division.java b/integration-test-java/src/main/java/org/seasar/doma/it/criteria/Division.java index 30557d88e..448269da1 100644 --- a/integration-test-java/src/main/java/org/seasar/doma/it/criteria/Division.java +++ b/integration-test-java/src/main/java/org/seasar/doma/it/criteria/Division.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.criteria; import org.seasar.doma.Entity; diff --git a/integration-test-java/src/main/java/org/seasar/doma/it/criteria/Emp.java b/integration-test-java/src/main/java/org/seasar/doma/it/criteria/Emp.java index ed1837f46..d4d08d5ca 100644 --- a/integration-test-java/src/main/java/org/seasar/doma/it/criteria/Emp.java +++ b/integration-test-java/src/main/java/org/seasar/doma/it/criteria/Emp.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.criteria; import java.time.LocalDate; diff --git a/integration-test-java/src/main/java/org/seasar/doma/it/criteria/Employee.java b/integration-test-java/src/main/java/org/seasar/doma/it/criteria/Employee.java index 5b5c433cc..11dc7d6f8 100644 --- a/integration-test-java/src/main/java/org/seasar/doma/it/criteria/Employee.java +++ b/integration-test-java/src/main/java/org/seasar/doma/it/criteria/Employee.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.criteria; import java.time.LocalDate; diff --git a/integration-test-java/src/main/java/org/seasar/doma/it/criteria/EmployeeInfo.java b/integration-test-java/src/main/java/org/seasar/doma/it/criteria/EmployeeInfo.java index 879c4f221..f9cf990e7 100644 --- a/integration-test-java/src/main/java/org/seasar/doma/it/criteria/EmployeeInfo.java +++ b/integration-test-java/src/main/java/org/seasar/doma/it/criteria/EmployeeInfo.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.criteria; import java.time.LocalDate; diff --git a/integration-test-java/src/main/java/org/seasar/doma/it/criteria/IdentityTable.java b/integration-test-java/src/main/java/org/seasar/doma/it/criteria/IdentityTable.java index fde2e0664..aca10aed1 100644 --- a/integration-test-java/src/main/java/org/seasar/doma/it/criteria/IdentityTable.java +++ b/integration-test-java/src/main/java/org/seasar/doma/it/criteria/IdentityTable.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.criteria; import org.seasar.doma.Column; diff --git a/integration-test-java/src/main/java/org/seasar/doma/it/criteria/NameAndAmount.java b/integration-test-java/src/main/java/org/seasar/doma/it/criteria/NameAndAmount.java index ff9735307..cc5d7395a 100644 --- a/integration-test-java/src/main/java/org/seasar/doma/it/criteria/NameAndAmount.java +++ b/integration-test-java/src/main/java/org/seasar/doma/it/criteria/NameAndAmount.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.criteria; import java.math.BigDecimal; diff --git a/integration-test-java/src/main/java/org/seasar/doma/it/criteria/Names.java b/integration-test-java/src/main/java/org/seasar/doma/it/criteria/Names.java index 929a20038..889d5c999 100644 --- a/integration-test-java/src/main/java/org/seasar/doma/it/criteria/Names.java +++ b/integration-test-java/src/main/java/org/seasar/doma/it/criteria/Names.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.criteria; import java.util.Arrays; diff --git a/integration-test-java/src/main/java/org/seasar/doma/it/criteria/Person.java b/integration-test-java/src/main/java/org/seasar/doma/it/criteria/Person.java index 6009b197a..c6d5c28f2 100644 --- a/integration-test-java/src/main/java/org/seasar/doma/it/criteria/Person.java +++ b/integration-test-java/src/main/java/org/seasar/doma/it/criteria/Person.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.criteria; import java.util.Date; diff --git a/integration-test-java/src/main/java/org/seasar/doma/it/criteria/Place.java b/integration-test-java/src/main/java/org/seasar/doma/it/criteria/Place.java index 484f12ab7..12630813d 100644 --- a/integration-test-java/src/main/java/org/seasar/doma/it/criteria/Place.java +++ b/integration-test-java/src/main/java/org/seasar/doma/it/criteria/Place.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.criteria; import org.seasar.doma.Entity; diff --git a/integration-test-java/src/main/java/org/seasar/doma/it/criteria/Player.java b/integration-test-java/src/main/java/org/seasar/doma/it/criteria/Player.java index 79d4d74e9..255acb91d 100644 --- a/integration-test-java/src/main/java/org/seasar/doma/it/criteria/Player.java +++ b/integration-test-java/src/main/java/org/seasar/doma/it/criteria/Player.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.criteria; import org.seasar.doma.Entity; diff --git a/integration-test-java/src/main/java/org/seasar/doma/it/criteria/Salary.java b/integration-test-java/src/main/java/org/seasar/doma/it/criteria/Salary.java index 69f82e9c0..9fe21900b 100644 --- a/integration-test-java/src/main/java/org/seasar/doma/it/criteria/Salary.java +++ b/integration-test-java/src/main/java/org/seasar/doma/it/criteria/Salary.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.criteria; import java.math.BigDecimal; diff --git a/integration-test-java/src/main/java/org/seasar/doma/it/criteria/Street.java b/integration-test-java/src/main/java/org/seasar/doma/it/criteria/Street.java index d5610e8c7..217d96e82 100644 --- a/integration-test-java/src/main/java/org/seasar/doma/it/criteria/Street.java +++ b/integration-test-java/src/main/java/org/seasar/doma/it/criteria/Street.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.criteria; import org.seasar.doma.Domain; diff --git a/integration-test-java/src/main/java/org/seasar/doma/it/criteria/Team.java b/integration-test-java/src/main/java/org/seasar/doma/it/criteria/Team.java index 2933958da..6dc117e6a 100644 --- a/integration-test-java/src/main/java/org/seasar/doma/it/criteria/Team.java +++ b/integration-test-java/src/main/java/org/seasar/doma/it/criteria/Team.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.criteria; import java.util.ArrayList; diff --git a/integration-test-java/src/main/java/org/seasar/doma/it/dao/BranchDao.java b/integration-test-java/src/main/java/org/seasar/doma/it/dao/BranchDao.java index 7a989f154..4d6f58e58 100644 --- a/integration-test-java/src/main/java/org/seasar/doma/it/dao/BranchDao.java +++ b/integration-test-java/src/main/java/org/seasar/doma/it/dao/BranchDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.dao; import java.util.List; diff --git a/integration-test-java/src/main/java/org/seasar/doma/it/dao/BusinessmanDao.java b/integration-test-java/src/main/java/org/seasar/doma/it/dao/BusinessmanDao.java index 9dbfa7dbc..1993f3d4e 100644 --- a/integration-test-java/src/main/java/org/seasar/doma/it/dao/BusinessmanDao.java +++ b/integration-test-java/src/main/java/org/seasar/doma/it/dao/BusinessmanDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.dao; import java.util.List; diff --git a/integration-test-java/src/main/java/org/seasar/doma/it/dao/CompKeyDepartmentDao.java b/integration-test-java/src/main/java/org/seasar/doma/it/dao/CompKeyDepartmentDao.java index 85f858507..589494ff0 100644 --- a/integration-test-java/src/main/java/org/seasar/doma/it/dao/CompKeyDepartmentDao.java +++ b/integration-test-java/src/main/java/org/seasar/doma/it/dao/CompKeyDepartmentDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.dao; import java.util.List; diff --git a/integration-test-java/src/main/java/org/seasar/doma/it/dao/CompKeyDeptDao.java b/integration-test-java/src/main/java/org/seasar/doma/it/dao/CompKeyDeptDao.java index 06fd97af5..e5441bd13 100644 --- a/integration-test-java/src/main/java/org/seasar/doma/it/dao/CompKeyDeptDao.java +++ b/integration-test-java/src/main/java/org/seasar/doma/it/dao/CompKeyDeptDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.dao; import java.util.List; diff --git a/integration-test-java/src/main/java/org/seasar/doma/it/dao/CompKeyEmployeeDao.java b/integration-test-java/src/main/java/org/seasar/doma/it/dao/CompKeyEmployeeDao.java index 94eb4cfc5..d9013ec60 100644 --- a/integration-test-java/src/main/java/org/seasar/doma/it/dao/CompKeyEmployeeDao.java +++ b/integration-test-java/src/main/java/org/seasar/doma/it/dao/CompKeyEmployeeDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.dao; import java.util.List; diff --git a/integration-test-java/src/main/java/org/seasar/doma/it/dao/CriteriaDao.java b/integration-test-java/src/main/java/org/seasar/doma/it/dao/CriteriaDao.java index 079049b60..8de1d2f94 100644 --- a/integration-test-java/src/main/java/org/seasar/doma/it/dao/CriteriaDao.java +++ b/integration-test-java/src/main/java/org/seasar/doma/it/dao/CriteriaDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.dao; import java.util.List; diff --git a/integration-test-java/src/main/java/org/seasar/doma/it/dao/DepartmentDao.java b/integration-test-java/src/main/java/org/seasar/doma/it/dao/DepartmentDao.java index ac050707a..1f7f2b787 100644 --- a/integration-test-java/src/main/java/org/seasar/doma/it/dao/DepartmentDao.java +++ b/integration-test-java/src/main/java/org/seasar/doma/it/dao/DepartmentDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.dao; import java.util.List; diff --git a/integration-test-java/src/main/java/org/seasar/doma/it/dao/DeptDao.java b/integration-test-java/src/main/java/org/seasar/doma/it/dao/DeptDao.java index e54b7bde9..84ad9ee53 100644 --- a/integration-test-java/src/main/java/org/seasar/doma/it/dao/DeptDao.java +++ b/integration-test-java/src/main/java/org/seasar/doma/it/dao/DeptDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.dao; import java.util.List; diff --git a/integration-test-java/src/main/java/org/seasar/doma/it/dao/EmpDao.java b/integration-test-java/src/main/java/org/seasar/doma/it/dao/EmpDao.java index 70dce50fe..bfb507ab5 100644 --- a/integration-test-java/src/main/java/org/seasar/doma/it/dao/EmpDao.java +++ b/integration-test-java/src/main/java/org/seasar/doma/it/dao/EmpDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.dao; import java.util.List; diff --git a/integration-test-java/src/main/java/org/seasar/doma/it/dao/EmployeeDao.java b/integration-test-java/src/main/java/org/seasar/doma/it/dao/EmployeeDao.java index a5d9209ea..b1c90c1dc 100644 --- a/integration-test-java/src/main/java/org/seasar/doma/it/dao/EmployeeDao.java +++ b/integration-test-java/src/main/java/org/seasar/doma/it/dao/EmployeeDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.dao; import java.math.BigDecimal; diff --git a/integration-test-java/src/main/java/org/seasar/doma/it/dao/FulltimeEmployeeDao.java b/integration-test-java/src/main/java/org/seasar/doma/it/dao/FulltimeEmployeeDao.java index 13ff60a2b..ff2fd703c 100644 --- a/integration-test-java/src/main/java/org/seasar/doma/it/dao/FulltimeEmployeeDao.java +++ b/integration-test-java/src/main/java/org/seasar/doma/it/dao/FulltimeEmployeeDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.dao; import java.util.Optional; diff --git a/integration-test-java/src/main/java/org/seasar/doma/it/dao/FunctionDao.java b/integration-test-java/src/main/java/org/seasar/doma/it/dao/FunctionDao.java index 8b8a73de3..277f8f6ec 100644 --- a/integration-test-java/src/main/java/org/seasar/doma/it/dao/FunctionDao.java +++ b/integration-test-java/src/main/java/org/seasar/doma/it/dao/FunctionDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.dao; import java.sql.Time; diff --git a/integration-test-java/src/main/java/org/seasar/doma/it/dao/IdentityStrategy2Dao.java b/integration-test-java/src/main/java/org/seasar/doma/it/dao/IdentityStrategy2Dao.java index 1fa4ad058..f3999dc1b 100644 --- a/integration-test-java/src/main/java/org/seasar/doma/it/dao/IdentityStrategy2Dao.java +++ b/integration-test-java/src/main/java/org/seasar/doma/it/dao/IdentityStrategy2Dao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.dao; import java.util.List; diff --git a/integration-test-java/src/main/java/org/seasar/doma/it/dao/IdentityStrategyDao.java b/integration-test-java/src/main/java/org/seasar/doma/it/dao/IdentityStrategyDao.java index 7aafb5181..85e089a68 100644 --- a/integration-test-java/src/main/java/org/seasar/doma/it/dao/IdentityStrategyDao.java +++ b/integration-test-java/src/main/java/org/seasar/doma/it/dao/IdentityStrategyDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.dao; import java.util.List; diff --git a/integration-test-java/src/main/java/org/seasar/doma/it/dao/NoIdDao.java b/integration-test-java/src/main/java/org/seasar/doma/it/dao/NoIdDao.java index 021cf1886..7d83f9809 100644 --- a/integration-test-java/src/main/java/org/seasar/doma/it/dao/NoIdDao.java +++ b/integration-test-java/src/main/java/org/seasar/doma/it/dao/NoIdDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.dao; import java.util.List; diff --git a/integration-test-java/src/main/java/org/seasar/doma/it/dao/PersonDao.java b/integration-test-java/src/main/java/org/seasar/doma/it/dao/PersonDao.java index 930041d15..1de43e27d 100644 --- a/integration-test-java/src/main/java/org/seasar/doma/it/dao/PersonDao.java +++ b/integration-test-java/src/main/java/org/seasar/doma/it/dao/PersonDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.dao; import java.util.List; diff --git a/integration-test-java/src/main/java/org/seasar/doma/it/dao/PhantomEmployeeDao.java b/integration-test-java/src/main/java/org/seasar/doma/it/dao/PhantomEmployeeDao.java index aba61bc5a..af8c4699e 100644 --- a/integration-test-java/src/main/java/org/seasar/doma/it/dao/PhantomEmployeeDao.java +++ b/integration-test-java/src/main/java/org/seasar/doma/it/dao/PhantomEmployeeDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.dao; import java.util.List; diff --git a/integration-test-java/src/main/java/org/seasar/doma/it/dao/PrimitiveIdentityStrategyDao.java b/integration-test-java/src/main/java/org/seasar/doma/it/dao/PrimitiveIdentityStrategyDao.java index 1a55883d4..154ed4601 100644 --- a/integration-test-java/src/main/java/org/seasar/doma/it/dao/PrimitiveIdentityStrategyDao.java +++ b/integration-test-java/src/main/java/org/seasar/doma/it/dao/PrimitiveIdentityStrategyDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.dao; import java.util.List; diff --git a/integration-test-java/src/main/java/org/seasar/doma/it/dao/ProcedureDao.java b/integration-test-java/src/main/java/org/seasar/doma/it/dao/ProcedureDao.java index 02034db42..cd48f914d 100644 --- a/integration-test-java/src/main/java/org/seasar/doma/it/dao/ProcedureDao.java +++ b/integration-test-java/src/main/java/org/seasar/doma/it/dao/ProcedureDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.dao; import java.sql.Time; diff --git a/integration-test-java/src/main/java/org/seasar/doma/it/dao/ProductDao.java b/integration-test-java/src/main/java/org/seasar/doma/it/dao/ProductDao.java index 523637132..276a0e5f5 100644 --- a/integration-test-java/src/main/java/org/seasar/doma/it/dao/ProductDao.java +++ b/integration-test-java/src/main/java/org/seasar/doma/it/dao/ProductDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.dao; import java.sql.SQLXML; diff --git a/integration-test-java/src/main/java/org/seasar/doma/it/dao/RoomDao.java b/integration-test-java/src/main/java/org/seasar/doma/it/dao/RoomDao.java index cd18aa2f1..905e7bd71 100644 --- a/integration-test-java/src/main/java/org/seasar/doma/it/dao/RoomDao.java +++ b/integration-test-java/src/main/java/org/seasar/doma/it/dao/RoomDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.dao; import java.sql.Array; diff --git a/integration-test-java/src/main/java/org/seasar/doma/it/dao/SalEmpDao.java b/integration-test-java/src/main/java/org/seasar/doma/it/dao/SalEmpDao.java index 310a566ff..90579f973 100644 --- a/integration-test-java/src/main/java/org/seasar/doma/it/dao/SalEmpDao.java +++ b/integration-test-java/src/main/java/org/seasar/doma/it/dao/SalEmpDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.dao; import java.sql.Array; diff --git a/integration-test-java/src/main/java/org/seasar/doma/it/dao/SalesmanDao.java b/integration-test-java/src/main/java/org/seasar/doma/it/dao/SalesmanDao.java index d6d85c72e..1580fa1e1 100644 --- a/integration-test-java/src/main/java/org/seasar/doma/it/dao/SalesmanDao.java +++ b/integration-test-java/src/main/java/org/seasar/doma/it/dao/SalesmanDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.dao; import java.util.List; diff --git a/integration-test-java/src/main/java/org/seasar/doma/it/dao/SequenceStrategyDao.java b/integration-test-java/src/main/java/org/seasar/doma/it/dao/SequenceStrategyDao.java index 739fad520..0e2d171f9 100644 --- a/integration-test-java/src/main/java/org/seasar/doma/it/dao/SequenceStrategyDao.java +++ b/integration-test-java/src/main/java/org/seasar/doma/it/dao/SequenceStrategyDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.dao; import java.util.List; diff --git a/integration-test-java/src/main/java/org/seasar/doma/it/dao/StaffDao.java b/integration-test-java/src/main/java/org/seasar/doma/it/dao/StaffDao.java index 4f51ca15f..01fec3a76 100644 --- a/integration-test-java/src/main/java/org/seasar/doma/it/dao/StaffDao.java +++ b/integration-test-java/src/main/java/org/seasar/doma/it/dao/StaffDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.dao; import java.util.List; diff --git a/integration-test-java/src/main/java/org/seasar/doma/it/dao/TableStrategyDao.java b/integration-test-java/src/main/java/org/seasar/doma/it/dao/TableStrategyDao.java index e4df3fd36..fe2914169 100644 --- a/integration-test-java/src/main/java/org/seasar/doma/it/dao/TableStrategyDao.java +++ b/integration-test-java/src/main/java/org/seasar/doma/it/dao/TableStrategyDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.dao; import java.util.List; diff --git a/integration-test-java/src/main/java/org/seasar/doma/it/dao/VeryLongCharactersNamedTableDao.java b/integration-test-java/src/main/java/org/seasar/doma/it/dao/VeryLongCharactersNamedTableDao.java index a648173ee..56fb6058e 100644 --- a/integration-test-java/src/main/java/org/seasar/doma/it/dao/VeryLongCharactersNamedTableDao.java +++ b/integration-test-java/src/main/java/org/seasar/doma/it/dao/VeryLongCharactersNamedTableDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.dao; import java.util.List; diff --git a/integration-test-java/src/main/java/org/seasar/doma/it/dao/WorkerDao.java b/integration-test-java/src/main/java/org/seasar/doma/it/dao/WorkerDao.java index 33cde093b..998fa09ab 100644 --- a/integration-test-java/src/main/java/org/seasar/doma/it/dao/WorkerDao.java +++ b/integration-test-java/src/main/java/org/seasar/doma/it/dao/WorkerDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.dao; import java.util.List; diff --git a/integration-test-java/src/main/java/org/seasar/doma/it/domain/Age.java b/integration-test-java/src/main/java/org/seasar/doma/it/domain/Age.java index b07e5cd81..1a480ecf3 100644 --- a/integration-test-java/src/main/java/org/seasar/doma/it/domain/Age.java +++ b/integration-test-java/src/main/java/org/seasar/doma/it/domain/Age.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.domain; public class Age { diff --git a/integration-test-java/src/main/java/org/seasar/doma/it/domain/AgeConverter.java b/integration-test-java/src/main/java/org/seasar/doma/it/domain/AgeConverter.java index 3b26746c4..b4ed15fa5 100644 --- a/integration-test-java/src/main/java/org/seasar/doma/it/domain/AgeConverter.java +++ b/integration-test-java/src/main/java/org/seasar/doma/it/domain/AgeConverter.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.domain; import org.seasar.doma.ExternalDomain; diff --git a/integration-test-java/src/main/java/org/seasar/doma/it/domain/DomainConverterProvider.java b/integration-test-java/src/main/java/org/seasar/doma/it/domain/DomainConverterProvider.java index 1d6378084..3dbc1e9c1 100644 --- a/integration-test-java/src/main/java/org/seasar/doma/it/domain/DomainConverterProvider.java +++ b/integration-test-java/src/main/java/org/seasar/doma/it/domain/DomainConverterProvider.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.domain; import org.seasar.doma.DomainConverters; diff --git a/integration-test-java/src/main/java/org/seasar/doma/it/domain/Height.java b/integration-test-java/src/main/java/org/seasar/doma/it/domain/Height.java index d922b1403..f4488ed26 100644 --- a/integration-test-java/src/main/java/org/seasar/doma/it/domain/Height.java +++ b/integration-test-java/src/main/java/org/seasar/doma/it/domain/Height.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.domain; import org.seasar.doma.Domain; diff --git a/integration-test-java/src/main/java/org/seasar/doma/it/domain/Hiredate.java b/integration-test-java/src/main/java/org/seasar/doma/it/domain/Hiredate.java index 98078bf99..74737bb48 100644 --- a/integration-test-java/src/main/java/org/seasar/doma/it/domain/Hiredate.java +++ b/integration-test-java/src/main/java/org/seasar/doma/it/domain/Hiredate.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.domain; import java.sql.Date; diff --git a/integration-test-java/src/main/java/org/seasar/doma/it/domain/HiredateConverter.java b/integration-test-java/src/main/java/org/seasar/doma/it/domain/HiredateConverter.java index 0c3c0c8e7..ec2ac776c 100644 --- a/integration-test-java/src/main/java/org/seasar/doma/it/domain/HiredateConverter.java +++ b/integration-test-java/src/main/java/org/seasar/doma/it/domain/HiredateConverter.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.domain; import java.sql.Date; diff --git a/integration-test-java/src/main/java/org/seasar/doma/it/domain/HiredateImpl.java b/integration-test-java/src/main/java/org/seasar/doma/it/domain/HiredateImpl.java index 7b1f5bc76..a1db3d2bc 100644 --- a/integration-test-java/src/main/java/org/seasar/doma/it/domain/HiredateImpl.java +++ b/integration-test-java/src/main/java/org/seasar/doma/it/domain/HiredateImpl.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.domain; import java.sql.Date; diff --git a/integration-test-java/src/main/java/org/seasar/doma/it/domain/Identity.java b/integration-test-java/src/main/java/org/seasar/doma/it/domain/Identity.java index dcef27bc1..c7d606d4f 100644 --- a/integration-test-java/src/main/java/org/seasar/doma/it/domain/Identity.java +++ b/integration-test-java/src/main/java/org/seasar/doma/it/domain/Identity.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.domain; import org.seasar.doma.Domain; diff --git a/integration-test-java/src/main/java/org/seasar/doma/it/domain/Income.java b/integration-test-java/src/main/java/org/seasar/doma/it/domain/Income.java index 2122ca075..ff07af6ae 100644 --- a/integration-test-java/src/main/java/org/seasar/doma/it/domain/Income.java +++ b/integration-test-java/src/main/java/org/seasar/doma/it/domain/Income.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.domain; import org.seasar.doma.Domain; diff --git a/integration-test-java/src/main/java/org/seasar/doma/it/domain/Location.java b/integration-test-java/src/main/java/org/seasar/doma/it/domain/Location.java index 1790b6ef7..1a4b321c2 100644 --- a/integration-test-java/src/main/java/org/seasar/doma/it/domain/Location.java +++ b/integration-test-java/src/main/java/org/seasar/doma/it/domain/Location.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.domain; public class Location { diff --git a/integration-test-java/src/main/java/org/seasar/doma/it/domain/LocationConverter.java b/integration-test-java/src/main/java/org/seasar/doma/it/domain/LocationConverter.java index 0c21fbc1f..7078ca798 100644 --- a/integration-test-java/src/main/java/org/seasar/doma/it/domain/LocationConverter.java +++ b/integration-test-java/src/main/java/org/seasar/doma/it/domain/LocationConverter.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.domain; import org.seasar.doma.ExternalDomain; diff --git a/integration-test-java/src/main/java/org/seasar/doma/it/domain/Money.java b/integration-test-java/src/main/java/org/seasar/doma/it/domain/Money.java index e33e43113..e59ddbf93 100644 --- a/integration-test-java/src/main/java/org/seasar/doma/it/domain/Money.java +++ b/integration-test-java/src/main/java/org/seasar/doma/it/domain/Money.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.domain; import java.math.BigDecimal; diff --git a/integration-test-java/src/main/java/org/seasar/doma/it/domain/PostgresUUIDConverter.java b/integration-test-java/src/main/java/org/seasar/doma/it/domain/PostgresUUIDConverter.java index c1a9bf484..e88f7f462 100644 --- a/integration-test-java/src/main/java/org/seasar/doma/it/domain/PostgresUUIDConverter.java +++ b/integration-test-java/src/main/java/org/seasar/doma/it/domain/PostgresUUIDConverter.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.domain; import java.sql.CallableStatement; diff --git a/integration-test-java/src/main/java/org/seasar/doma/it/domain/PrimitiveHeight.java b/integration-test-java/src/main/java/org/seasar/doma/it/domain/PrimitiveHeight.java index d94efcfca..fa6f60cb7 100644 --- a/integration-test-java/src/main/java/org/seasar/doma/it/domain/PrimitiveHeight.java +++ b/integration-test-java/src/main/java/org/seasar/doma/it/domain/PrimitiveHeight.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.domain; import org.seasar.doma.Domain; diff --git a/integration-test-java/src/main/java/org/seasar/doma/it/domain/Salary.java b/integration-test-java/src/main/java/org/seasar/doma/it/domain/Salary.java index 3b3973a63..d553ebc49 100644 --- a/integration-test-java/src/main/java/org/seasar/doma/it/domain/Salary.java +++ b/integration-test-java/src/main/java/org/seasar/doma/it/domain/Salary.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.domain; import java.math.BigDecimal; diff --git a/integration-test-java/src/main/java/org/seasar/doma/it/domain/StringArrayConverter.java b/integration-test-java/src/main/java/org/seasar/doma/it/domain/StringArrayConverter.java index 511f7fd4f..a9b7fe756 100644 --- a/integration-test-java/src/main/java/org/seasar/doma/it/domain/StringArrayConverter.java +++ b/integration-test-java/src/main/java/org/seasar/doma/it/domain/StringArrayConverter.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.domain; import java.sql.Array; diff --git a/integration-test-java/src/main/java/org/seasar/doma/it/domain/Weight.java b/integration-test-java/src/main/java/org/seasar/doma/it/domain/Weight.java index e4495d666..960fc28b8 100644 --- a/integration-test-java/src/main/java/org/seasar/doma/it/domain/Weight.java +++ b/integration-test-java/src/main/java/org/seasar/doma/it/domain/Weight.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.domain; import org.seasar.doma.Domain; diff --git a/integration-test-java/src/main/java/org/seasar/doma/it/embeddable/StaffInfo.java b/integration-test-java/src/main/java/org/seasar/doma/it/embeddable/StaffInfo.java index 97f81b5bf..aa4b73304 100644 --- a/integration-test-java/src/main/java/org/seasar/doma/it/embeddable/StaffInfo.java +++ b/integration-test-java/src/main/java/org/seasar/doma/it/embeddable/StaffInfo.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.embeddable; import java.sql.Date; diff --git a/integration-test-java/src/main/java/org/seasar/doma/it/entity/Businessman.java b/integration-test-java/src/main/java/org/seasar/doma/it/entity/Businessman.java index bb674e824..d453e156a 100644 --- a/integration-test-java/src/main/java/org/seasar/doma/it/entity/Businessman.java +++ b/integration-test-java/src/main/java/org/seasar/doma/it/entity/Businessman.java @@ -1,17 +1,17 @@ /* - * Copyright 2004-2010 the Seasar Foundation and the Others. + * Copyright Doma Authors * * 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 + * https://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. + * 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 org.seasar.doma.it.entity; diff --git a/integration-test-java/src/main/java/org/seasar/doma/it/entity/CompKeyDepartment.java b/integration-test-java/src/main/java/org/seasar/doma/it/entity/CompKeyDepartment.java index 3a4c0f82d..f27092830 100644 --- a/integration-test-java/src/main/java/org/seasar/doma/it/entity/CompKeyDepartment.java +++ b/integration-test-java/src/main/java/org/seasar/doma/it/entity/CompKeyDepartment.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.entity; import org.seasar.doma.Entity; diff --git a/integration-test-java/src/main/java/org/seasar/doma/it/entity/CompKeyDept.java b/integration-test-java/src/main/java/org/seasar/doma/it/entity/CompKeyDept.java index c72a69250..3f09073a0 100644 --- a/integration-test-java/src/main/java/org/seasar/doma/it/entity/CompKeyDept.java +++ b/integration-test-java/src/main/java/org/seasar/doma/it/entity/CompKeyDept.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.entity; import org.seasar.doma.Entity; diff --git a/integration-test-java/src/main/java/org/seasar/doma/it/entity/CompKeyDeptListener.java b/integration-test-java/src/main/java/org/seasar/doma/it/entity/CompKeyDeptListener.java index 48ba78457..ba8ef18f1 100644 --- a/integration-test-java/src/main/java/org/seasar/doma/it/entity/CompKeyDeptListener.java +++ b/integration-test-java/src/main/java/org/seasar/doma/it/entity/CompKeyDeptListener.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.entity; import org.seasar.doma.jdbc.entity.EntityListener; diff --git a/integration-test-java/src/main/java/org/seasar/doma/it/entity/CompKeyEmployee.java b/integration-test-java/src/main/java/org/seasar/doma/it/entity/CompKeyEmployee.java index 8c5588424..205a88b47 100644 --- a/integration-test-java/src/main/java/org/seasar/doma/it/entity/CompKeyEmployee.java +++ b/integration-test-java/src/main/java/org/seasar/doma/it/entity/CompKeyEmployee.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.entity; import java.math.BigDecimal; diff --git a/integration-test-java/src/main/java/org/seasar/doma/it/entity/Department.java b/integration-test-java/src/main/java/org/seasar/doma/it/entity/Department.java index 25ebcfa05..a3b452903 100644 --- a/integration-test-java/src/main/java/org/seasar/doma/it/entity/Department.java +++ b/integration-test-java/src/main/java/org/seasar/doma/it/entity/Department.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.entity; import java.util.ArrayList; diff --git a/integration-test-java/src/main/java/org/seasar/doma/it/entity/Dept.java b/integration-test-java/src/main/java/org/seasar/doma/it/entity/Dept.java index a9826d858..52754c30d 100644 --- a/integration-test-java/src/main/java/org/seasar/doma/it/entity/Dept.java +++ b/integration-test-java/src/main/java/org/seasar/doma/it/entity/Dept.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.entity; import org.seasar.doma.Entity; diff --git a/integration-test-java/src/main/java/org/seasar/doma/it/entity/DeptListener.java b/integration-test-java/src/main/java/org/seasar/doma/it/entity/DeptListener.java index 659ab7afc..da7ba1efd 100644 --- a/integration-test-java/src/main/java/org/seasar/doma/it/entity/DeptListener.java +++ b/integration-test-java/src/main/java/org/seasar/doma/it/entity/DeptListener.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.entity; import org.seasar.doma.jdbc.entity.EntityListener; diff --git a/integration-test-java/src/main/java/org/seasar/doma/it/entity/Emp.java b/integration-test-java/src/main/java/org/seasar/doma/it/entity/Emp.java index 6ce491bcb..2101b3730 100644 --- a/integration-test-java/src/main/java/org/seasar/doma/it/entity/Emp.java +++ b/integration-test-java/src/main/java/org/seasar/doma/it/entity/Emp.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.entity; import java.math.BigDecimal; diff --git a/integration-test-java/src/main/java/org/seasar/doma/it/entity/Emp2.java b/integration-test-java/src/main/java/org/seasar/doma/it/entity/Emp2.java index 1223799bf..a54ef4835 100644 --- a/integration-test-java/src/main/java/org/seasar/doma/it/entity/Emp2.java +++ b/integration-test-java/src/main/java/org/seasar/doma/it/entity/Emp2.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.entity; import org.seasar.doma.Entity; diff --git a/integration-test-java/src/main/java/org/seasar/doma/it/entity/Emp3.java b/integration-test-java/src/main/java/org/seasar/doma/it/entity/Emp3.java index 31ee30988..c4192dedf 100644 --- a/integration-test-java/src/main/java/org/seasar/doma/it/entity/Emp3.java +++ b/integration-test-java/src/main/java/org/seasar/doma/it/entity/Emp3.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.entity; import org.seasar.doma.Entity; diff --git a/integration-test-java/src/main/java/org/seasar/doma/it/entity/EmpListener.java b/integration-test-java/src/main/java/org/seasar/doma/it/entity/EmpListener.java index 71c127096..1701e7c7d 100644 --- a/integration-test-java/src/main/java/org/seasar/doma/it/entity/EmpListener.java +++ b/integration-test-java/src/main/java/org/seasar/doma/it/entity/EmpListener.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.entity; import java.sql.Timestamp; diff --git a/integration-test-java/src/main/java/org/seasar/doma/it/entity/Employee.java b/integration-test-java/src/main/java/org/seasar/doma/it/entity/Employee.java index c5da93f42..cf7e0fc17 100644 --- a/integration-test-java/src/main/java/org/seasar/doma/it/entity/Employee.java +++ b/integration-test-java/src/main/java/org/seasar/doma/it/entity/Employee.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.entity; import org.seasar.doma.Entity; diff --git a/integration-test-java/src/main/java/org/seasar/doma/it/entity/FulltimeEmployee.java b/integration-test-java/src/main/java/org/seasar/doma/it/entity/FulltimeEmployee.java index 58477e535..c603d224d 100644 --- a/integration-test-java/src/main/java/org/seasar/doma/it/entity/FulltimeEmployee.java +++ b/integration-test-java/src/main/java/org/seasar/doma/it/entity/FulltimeEmployee.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.entity; import org.seasar.doma.Entity; diff --git a/integration-test-java/src/main/java/org/seasar/doma/it/entity/IdColumnOnlyEmployee.java b/integration-test-java/src/main/java/org/seasar/doma/it/entity/IdColumnOnlyEmployee.java index 8b35e6245..19c7b6c0d 100644 --- a/integration-test-java/src/main/java/org/seasar/doma/it/entity/IdColumnOnlyEmployee.java +++ b/integration-test-java/src/main/java/org/seasar/doma/it/entity/IdColumnOnlyEmployee.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.entity; import org.seasar.doma.Entity; diff --git a/integration-test-java/src/main/java/org/seasar/doma/it/entity/IdentityStrategy.java b/integration-test-java/src/main/java/org/seasar/doma/it/entity/IdentityStrategy.java index 91131eaf4..013c0a3df 100644 --- a/integration-test-java/src/main/java/org/seasar/doma/it/entity/IdentityStrategy.java +++ b/integration-test-java/src/main/java/org/seasar/doma/it/entity/IdentityStrategy.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.entity; import org.seasar.doma.Column; diff --git a/integration-test-java/src/main/java/org/seasar/doma/it/entity/IdentityStrategy2.java b/integration-test-java/src/main/java/org/seasar/doma/it/entity/IdentityStrategy2.java index e7216ff3f..80e1e4555 100644 --- a/integration-test-java/src/main/java/org/seasar/doma/it/entity/IdentityStrategy2.java +++ b/integration-test-java/src/main/java/org/seasar/doma/it/entity/IdentityStrategy2.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.entity; import org.seasar.doma.Column; diff --git a/integration-test-java/src/main/java/org/seasar/doma/it/entity/NoId.java b/integration-test-java/src/main/java/org/seasar/doma/it/entity/NoId.java index a656b0c4f..0010bd0a2 100644 --- a/integration-test-java/src/main/java/org/seasar/doma/it/entity/NoId.java +++ b/integration-test-java/src/main/java/org/seasar/doma/it/entity/NoId.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.entity; import org.seasar.doma.Entity; diff --git a/integration-test-java/src/main/java/org/seasar/doma/it/entity/Person.java b/integration-test-java/src/main/java/org/seasar/doma/it/entity/Person.java index 14a2d2d83..e4f5c968d 100644 --- a/integration-test-java/src/main/java/org/seasar/doma/it/entity/Person.java +++ b/integration-test-java/src/main/java/org/seasar/doma/it/entity/Person.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.entity; import java.sql.Date; diff --git a/integration-test-java/src/main/java/org/seasar/doma/it/entity/PersonListener.java b/integration-test-java/src/main/java/org/seasar/doma/it/entity/PersonListener.java index 0223e4c9f..ad4141a55 100644 --- a/integration-test-java/src/main/java/org/seasar/doma/it/entity/PersonListener.java +++ b/integration-test-java/src/main/java/org/seasar/doma/it/entity/PersonListener.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.entity; import org.seasar.doma.jdbc.entity.EntityListener; diff --git a/integration-test-java/src/main/java/org/seasar/doma/it/entity/PhantomEmployee.java b/integration-test-java/src/main/java/org/seasar/doma/it/entity/PhantomEmployee.java index 3572ae8df..cf4d11cfb 100644 --- a/integration-test-java/src/main/java/org/seasar/doma/it/entity/PhantomEmployee.java +++ b/integration-test-java/src/main/java/org/seasar/doma/it/entity/PhantomEmployee.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.entity; import org.seasar.doma.Entity; diff --git a/integration-test-java/src/main/java/org/seasar/doma/it/entity/PrimitiveIdentityStrategy.java b/integration-test-java/src/main/java/org/seasar/doma/it/entity/PrimitiveIdentityStrategy.java index 9f5ce3a60..6d5e3f728 100644 --- a/integration-test-java/src/main/java/org/seasar/doma/it/entity/PrimitiveIdentityStrategy.java +++ b/integration-test-java/src/main/java/org/seasar/doma/it/entity/PrimitiveIdentityStrategy.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.entity; import org.seasar.doma.Column; diff --git a/integration-test-java/src/main/java/org/seasar/doma/it/entity/Product.java b/integration-test-java/src/main/java/org/seasar/doma/it/entity/Product.java index 1f3268e35..2da94bd95 100644 --- a/integration-test-java/src/main/java/org/seasar/doma/it/entity/Product.java +++ b/integration-test-java/src/main/java/org/seasar/doma/it/entity/Product.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.entity; import java.sql.SQLXML; diff --git a/integration-test-java/src/main/java/org/seasar/doma/it/entity/Room.java b/integration-test-java/src/main/java/org/seasar/doma/it/entity/Room.java index ebc1a3da5..72fbd98c1 100644 --- a/integration-test-java/src/main/java/org/seasar/doma/it/entity/Room.java +++ b/integration-test-java/src/main/java/org/seasar/doma/it/entity/Room.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.entity; import org.seasar.doma.Entity; diff --git a/integration-test-java/src/main/java/org/seasar/doma/it/entity/SalEmp.java b/integration-test-java/src/main/java/org/seasar/doma/it/entity/SalEmp.java index 977687c1e..d69f4c810 100644 --- a/integration-test-java/src/main/java/org/seasar/doma/it/entity/SalEmp.java +++ b/integration-test-java/src/main/java/org/seasar/doma/it/entity/SalEmp.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.entity; import java.sql.Array; diff --git a/integration-test-java/src/main/java/org/seasar/doma/it/entity/Salesman.java b/integration-test-java/src/main/java/org/seasar/doma/it/entity/Salesman.java index 16a7265b7..ac2454d78 100644 --- a/integration-test-java/src/main/java/org/seasar/doma/it/entity/Salesman.java +++ b/integration-test-java/src/main/java/org/seasar/doma/it/entity/Salesman.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.entity; import java.math.BigDecimal; diff --git a/integration-test-java/src/main/java/org/seasar/doma/it/entity/SequenceStrategy.java b/integration-test-java/src/main/java/org/seasar/doma/it/entity/SequenceStrategy.java index 20bc7c2f6..78cc286af 100644 --- a/integration-test-java/src/main/java/org/seasar/doma/it/entity/SequenceStrategy.java +++ b/integration-test-java/src/main/java/org/seasar/doma/it/entity/SequenceStrategy.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.entity; import org.seasar.doma.Column; diff --git a/integration-test-java/src/main/java/org/seasar/doma/it/entity/Staff.java b/integration-test-java/src/main/java/org/seasar/doma/it/entity/Staff.java index 38e371487..93420d3c2 100644 --- a/integration-test-java/src/main/java/org/seasar/doma/it/entity/Staff.java +++ b/integration-test-java/src/main/java/org/seasar/doma/it/entity/Staff.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.entity; import org.seasar.doma.Entity; diff --git a/integration-test-java/src/main/java/org/seasar/doma/it/entity/TableStrategy.java b/integration-test-java/src/main/java/org/seasar/doma/it/entity/TableStrategy.java index ff230d5e2..db7d06214 100644 --- a/integration-test-java/src/main/java/org/seasar/doma/it/entity/TableStrategy.java +++ b/integration-test-java/src/main/java/org/seasar/doma/it/entity/TableStrategy.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.entity; import org.seasar.doma.Column; diff --git a/integration-test-java/src/main/java/org/seasar/doma/it/entity/VeryLongCharactersNamedTable.java b/integration-test-java/src/main/java/org/seasar/doma/it/entity/VeryLongCharactersNamedTable.java index 2bab31fa0..4621d3262 100644 --- a/integration-test-java/src/main/java/org/seasar/doma/it/entity/VeryLongCharactersNamedTable.java +++ b/integration-test-java/src/main/java/org/seasar/doma/it/entity/VeryLongCharactersNamedTable.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.entity; import org.seasar.doma.Entity; diff --git a/integration-test-java/src/main/java/org/seasar/doma/it/entity/Worker.java b/integration-test-java/src/main/java/org/seasar/doma/it/entity/Worker.java index 1f12dc837..05197c1f7 100644 --- a/integration-test-java/src/main/java/org/seasar/doma/it/entity/Worker.java +++ b/integration-test-java/src/main/java/org/seasar/doma/it/entity/Worker.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.entity; import java.util.Optional; diff --git a/integration-test-java/src/main/java/org/seasar/doma/it/jep355/Employee.java b/integration-test-java/src/main/java/org/seasar/doma/it/jep355/Employee.java index 2235981cd..986f05d68 100644 --- a/integration-test-java/src/main/java/org/seasar/doma/it/jep355/Employee.java +++ b/integration-test-java/src/main/java/org/seasar/doma/it/jep355/Employee.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.jep355; import java.math.BigDecimal; diff --git a/integration-test-java/src/main/java/org/seasar/doma/it/jep355/TextBlockDao.java b/integration-test-java/src/main/java/org/seasar/doma/it/jep355/TextBlockDao.java index 5e1785ff1..2f3ca951d 100644 --- a/integration-test-java/src/main/java/org/seasar/doma/it/jep355/TextBlockDao.java +++ b/integration-test-java/src/main/java/org/seasar/doma/it/jep355/TextBlockDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.jep355; import java.util.List; diff --git a/integration-test-java/src/main/java/org/seasar/doma/it/jep384/Department.java b/integration-test-java/src/main/java/org/seasar/doma/it/jep384/Department.java index a54902cd4..9f17969fe 100644 --- a/integration-test-java/src/main/java/org/seasar/doma/it/jep384/Department.java +++ b/integration-test-java/src/main/java/org/seasar/doma/it/jep384/Department.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.jep384; import org.seasar.doma.Entity; diff --git a/integration-test-java/src/main/java/org/seasar/doma/it/jep384/RecordDao.java b/integration-test-java/src/main/java/org/seasar/doma/it/jep384/RecordDao.java index 13912dbd0..45b21c616 100644 --- a/integration-test-java/src/main/java/org/seasar/doma/it/jep384/RecordDao.java +++ b/integration-test-java/src/main/java/org/seasar/doma/it/jep384/RecordDao.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.jep384; import java.util.List; diff --git a/integration-test-java/src/main/java/org/seasar/doma/it/jep384/Salary.java b/integration-test-java/src/main/java/org/seasar/doma/it/jep384/Salary.java index c4018c55e..19d139785 100644 --- a/integration-test-java/src/main/java/org/seasar/doma/it/jep384/Salary.java +++ b/integration-test-java/src/main/java/org/seasar/doma/it/jep384/Salary.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.jep384; import java.math.BigDecimal; diff --git a/integration-test-java/src/main/java/org/seasar/doma/it/jep384/Worker.java b/integration-test-java/src/main/java/org/seasar/doma/it/jep384/Worker.java index bccc3fd4e..e8888b3bc 100644 --- a/integration-test-java/src/main/java/org/seasar/doma/it/jep384/Worker.java +++ b/integration-test-java/src/main/java/org/seasar/doma/it/jep384/Worker.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.jep384; import org.seasar.doma.Entity; diff --git a/integration-test-java/src/main/java/org/seasar/doma/it/jep384/WorkerInfo.java b/integration-test-java/src/main/java/org/seasar/doma/it/jep384/WorkerInfo.java index ad7cc9308..913fa39c0 100644 --- a/integration-test-java/src/main/java/org/seasar/doma/it/jep384/WorkerInfo.java +++ b/integration-test-java/src/main/java/org/seasar/doma/it/jep384/WorkerInfo.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.jep384; import java.time.LocalDate; diff --git a/integration-test-java/src/test/java/org/seasar/doma/it/auto/AutoBatchDeleteTest.java b/integration-test-java/src/test/java/org/seasar/doma/it/auto/AutoBatchDeleteTest.java index 556c869fc..10cb2b42e 100644 --- a/integration-test-java/src/test/java/org/seasar/doma/it/auto/AutoBatchDeleteTest.java +++ b/integration-test-java/src/test/java/org/seasar/doma/it/auto/AutoBatchDeleteTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.auto; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/integration-test-java/src/test/java/org/seasar/doma/it/auto/AutoBatchInsertTest.java b/integration-test-java/src/test/java/org/seasar/doma/it/auto/AutoBatchInsertTest.java index bf4a1351a..7dfe2263a 100644 --- a/integration-test-java/src/test/java/org/seasar/doma/it/auto/AutoBatchInsertTest.java +++ b/integration-test-java/src/test/java/org/seasar/doma/it/auto/AutoBatchInsertTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.auto; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/integration-test-java/src/test/java/org/seasar/doma/it/auto/AutoBatchUpdateTest.java b/integration-test-java/src/test/java/org/seasar/doma/it/auto/AutoBatchUpdateTest.java index a5af88b1e..e834d996b 100644 --- a/integration-test-java/src/test/java/org/seasar/doma/it/auto/AutoBatchUpdateTest.java +++ b/integration-test-java/src/test/java/org/seasar/doma/it/auto/AutoBatchUpdateTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.auto; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/integration-test-java/src/test/java/org/seasar/doma/it/auto/AutoDeleteTest.java b/integration-test-java/src/test/java/org/seasar/doma/it/auto/AutoDeleteTest.java index 6fe93f9ef..b3ceedbd2 100644 --- a/integration-test-java/src/test/java/org/seasar/doma/it/auto/AutoDeleteTest.java +++ b/integration-test-java/src/test/java/org/seasar/doma/it/auto/AutoDeleteTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.auto; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/integration-test-java/src/test/java/org/seasar/doma/it/auto/AutoFunctionTest.java b/integration-test-java/src/test/java/org/seasar/doma/it/auto/AutoFunctionTest.java index 20167deec..3a464e4a9 100644 --- a/integration-test-java/src/test/java/org/seasar/doma/it/auto/AutoFunctionTest.java +++ b/integration-test-java/src/test/java/org/seasar/doma/it/auto/AutoFunctionTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.auto; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/integration-test-java/src/test/java/org/seasar/doma/it/auto/AutoInsertTest.java b/integration-test-java/src/test/java/org/seasar/doma/it/auto/AutoInsertTest.java index 3194453f9..136b32736 100644 --- a/integration-test-java/src/test/java/org/seasar/doma/it/auto/AutoInsertTest.java +++ b/integration-test-java/src/test/java/org/seasar/doma/it/auto/AutoInsertTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.auto; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/integration-test-java/src/test/java/org/seasar/doma/it/auto/AutoMultiInsertTest.java b/integration-test-java/src/test/java/org/seasar/doma/it/auto/AutoMultiInsertTest.java index b923be200..3b371c90c 100644 --- a/integration-test-java/src/test/java/org/seasar/doma/it/auto/AutoMultiInsertTest.java +++ b/integration-test-java/src/test/java/org/seasar/doma/it/auto/AutoMultiInsertTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.auto; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/integration-test-java/src/test/java/org/seasar/doma/it/auto/AutoProcedureTest.java b/integration-test-java/src/test/java/org/seasar/doma/it/auto/AutoProcedureTest.java index 453690b3c..b6e43c187 100644 --- a/integration-test-java/src/test/java/org/seasar/doma/it/auto/AutoProcedureTest.java +++ b/integration-test-java/src/test/java/org/seasar/doma/it/auto/AutoProcedureTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.auto; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/integration-test-java/src/test/java/org/seasar/doma/it/auto/AutoUpdateTest.java b/integration-test-java/src/test/java/org/seasar/doma/it/auto/AutoUpdateTest.java index 960c453ec..8e6d64079 100644 --- a/integration-test-java/src/test/java/org/seasar/doma/it/auto/AutoUpdateTest.java +++ b/integration-test-java/src/test/java/org/seasar/doma/it/auto/AutoUpdateTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.auto; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/integration-test-java/src/test/java/org/seasar/doma/it/builder/SelectBuilderTest.java b/integration-test-java/src/test/java/org/seasar/doma/it/builder/SelectBuilderTest.java index a9fded88c..d44dce7ff 100644 --- a/integration-test-java/src/test/java/org/seasar/doma/it/builder/SelectBuilderTest.java +++ b/integration-test-java/src/test/java/org/seasar/doma/it/builder/SelectBuilderTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.builder; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/integration-test-java/src/test/java/org/seasar/doma/it/config/StatisticTest.java b/integration-test-java/src/test/java/org/seasar/doma/it/config/StatisticTest.java index a1a59778d..4dc7e557c 100644 --- a/integration-test-java/src/test/java/org/seasar/doma/it/config/StatisticTest.java +++ b/integration-test-java/src/test/java/org/seasar/doma/it/config/StatisticTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.config; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/integration-test-java/src/test/java/org/seasar/doma/it/criteria/CustomExpressions.java b/integration-test-java/src/test/java/org/seasar/doma/it/criteria/CustomExpressions.java index 9248c3a5f..371b43457 100644 --- a/integration-test-java/src/test/java/org/seasar/doma/it/criteria/CustomExpressions.java +++ b/integration-test-java/src/test/java/org/seasar/doma/it/criteria/CustomExpressions.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.criteria; import static org.seasar.doma.jdbc.criteria.expression.Expressions.userDefined; diff --git a/integration-test-java/src/test/java/org/seasar/doma/it/criteria/DaoTest.java b/integration-test-java/src/test/java/org/seasar/doma/it/criteria/DaoTest.java index 3c58ac14e..5b4d2cd8a 100644 --- a/integration-test-java/src/test/java/org/seasar/doma/it/criteria/DaoTest.java +++ b/integration-test-java/src/test/java/org/seasar/doma/it/criteria/DaoTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.criteria; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/integration-test-java/src/test/java/org/seasar/doma/it/criteria/MetamodelTest.java b/integration-test-java/src/test/java/org/seasar/doma/it/criteria/MetamodelTest.java index 9e486af9a..848f87e78 100644 --- a/integration-test-java/src/test/java/org/seasar/doma/it/criteria/MetamodelTest.java +++ b/integration-test-java/src/test/java/org/seasar/doma/it/criteria/MetamodelTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.criteria; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/integration-test-java/src/test/java/org/seasar/doma/it/criteria/QueryDslEntityBatchDeleteTest.java b/integration-test-java/src/test/java/org/seasar/doma/it/criteria/QueryDslEntityBatchDeleteTest.java index 73e28a059..5a5849743 100644 --- a/integration-test-java/src/test/java/org/seasar/doma/it/criteria/QueryDslEntityBatchDeleteTest.java +++ b/integration-test-java/src/test/java/org/seasar/doma/it/criteria/QueryDslEntityBatchDeleteTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.criteria; import static org.junit.jupiter.api.Assertions.assertArrayEquals; diff --git a/integration-test-java/src/test/java/org/seasar/doma/it/criteria/QueryDslEntityBatchInsertTest.java b/integration-test-java/src/test/java/org/seasar/doma/it/criteria/QueryDslEntityBatchInsertTest.java index 4178121bd..0c93e71a5 100644 --- a/integration-test-java/src/test/java/org/seasar/doma/it/criteria/QueryDslEntityBatchInsertTest.java +++ b/integration-test-java/src/test/java/org/seasar/doma/it/criteria/QueryDslEntityBatchInsertTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.criteria; import static java.util.stream.Collectors.toList; diff --git a/integration-test-java/src/test/java/org/seasar/doma/it/criteria/QueryDslEntityBatchUpdateTest.java b/integration-test-java/src/test/java/org/seasar/doma/it/criteria/QueryDslEntityBatchUpdateTest.java index a9fd4c79b..2c94a86e3 100644 --- a/integration-test-java/src/test/java/org/seasar/doma/it/criteria/QueryDslEntityBatchUpdateTest.java +++ b/integration-test-java/src/test/java/org/seasar/doma/it/criteria/QueryDslEntityBatchUpdateTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.criteria; import static org.junit.jupiter.api.Assertions.assertArrayEquals; diff --git a/integration-test-java/src/test/java/org/seasar/doma/it/criteria/QueryDslEntityDeleteTest.java b/integration-test-java/src/test/java/org/seasar/doma/it/criteria/QueryDslEntityDeleteTest.java index f06b9e548..bfbf4ba04 100644 --- a/integration-test-java/src/test/java/org/seasar/doma/it/criteria/QueryDslEntityDeleteTest.java +++ b/integration-test-java/src/test/java/org/seasar/doma/it/criteria/QueryDslEntityDeleteTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.criteria; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/integration-test-java/src/test/java/org/seasar/doma/it/criteria/QueryDslEntityInsertTest.java b/integration-test-java/src/test/java/org/seasar/doma/it/criteria/QueryDslEntityInsertTest.java index ac130f112..929052855 100644 --- a/integration-test-java/src/test/java/org/seasar/doma/it/criteria/QueryDslEntityInsertTest.java +++ b/integration-test-java/src/test/java/org/seasar/doma/it/criteria/QueryDslEntityInsertTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.criteria; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/integration-test-java/src/test/java/org/seasar/doma/it/criteria/QueryDslEntityMultiInsertTest.java b/integration-test-java/src/test/java/org/seasar/doma/it/criteria/QueryDslEntityMultiInsertTest.java index f8695caba..5118d321c 100644 --- a/integration-test-java/src/test/java/org/seasar/doma/it/criteria/QueryDslEntityMultiInsertTest.java +++ b/integration-test-java/src/test/java/org/seasar/doma/it/criteria/QueryDslEntityMultiInsertTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.criteria; import static java.util.stream.Collectors.toList; diff --git a/integration-test-java/src/test/java/org/seasar/doma/it/criteria/QueryDslEntitySelectTest.java b/integration-test-java/src/test/java/org/seasar/doma/it/criteria/QueryDslEntitySelectTest.java index 0a7f44213..277f1ca09 100644 --- a/integration-test-java/src/test/java/org/seasar/doma/it/criteria/QueryDslEntitySelectTest.java +++ b/integration-test-java/src/test/java/org/seasar/doma/it/criteria/QueryDslEntitySelectTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.criteria; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/integration-test-java/src/test/java/org/seasar/doma/it/criteria/QueryDslEntityUpdateTest.java b/integration-test-java/src/test/java/org/seasar/doma/it/criteria/QueryDslEntityUpdateTest.java index 2e7bed03c..260722f44 100644 --- a/integration-test-java/src/test/java/org/seasar/doma/it/criteria/QueryDslEntityUpdateTest.java +++ b/integration-test-java/src/test/java/org/seasar/doma/it/criteria/QueryDslEntityUpdateTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.criteria; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/integration-test-java/src/test/java/org/seasar/doma/it/criteria/QueryDslImmutableTest.java b/integration-test-java/src/test/java/org/seasar/doma/it/criteria/QueryDslImmutableTest.java index d3da086cd..a833c1b0b 100644 --- a/integration-test-java/src/test/java/org/seasar/doma/it/criteria/QueryDslImmutableTest.java +++ b/integration-test-java/src/test/java/org/seasar/doma/it/criteria/QueryDslImmutableTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.criteria; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/integration-test-java/src/test/java/org/seasar/doma/it/criteria/QueryDslSqlDeleteTest.java b/integration-test-java/src/test/java/org/seasar/doma/it/criteria/QueryDslSqlDeleteTest.java index b0058728c..c6ef45413 100644 --- a/integration-test-java/src/test/java/org/seasar/doma/it/criteria/QueryDslSqlDeleteTest.java +++ b/integration-test-java/src/test/java/org/seasar/doma/it/criteria/QueryDslSqlDeleteTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.criteria; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/integration-test-java/src/test/java/org/seasar/doma/it/criteria/QueryDslSqlInsertTest.java b/integration-test-java/src/test/java/org/seasar/doma/it/criteria/QueryDslSqlInsertTest.java index 093efb554..aa26a7d51 100644 --- a/integration-test-java/src/test/java/org/seasar/doma/it/criteria/QueryDslSqlInsertTest.java +++ b/integration-test-java/src/test/java/org/seasar/doma/it/criteria/QueryDslSqlInsertTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.criteria; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/integration-test-java/src/test/java/org/seasar/doma/it/criteria/QueryDslSqlSelectTest.java b/integration-test-java/src/test/java/org/seasar/doma/it/criteria/QueryDslSqlSelectTest.java index 78b2a04af..9583f28cb 100644 --- a/integration-test-java/src/test/java/org/seasar/doma/it/criteria/QueryDslSqlSelectTest.java +++ b/integration-test-java/src/test/java/org/seasar/doma/it/criteria/QueryDslSqlSelectTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.criteria; import static java.util.stream.Collectors.counting; diff --git a/integration-test-java/src/test/java/org/seasar/doma/it/criteria/QueryDslSqlUpdateTest.java b/integration-test-java/src/test/java/org/seasar/doma/it/criteria/QueryDslSqlUpdateTest.java index e4b9dc7f7..18eef3089 100644 --- a/integration-test-java/src/test/java/org/seasar/doma/it/criteria/QueryDslSqlUpdateTest.java +++ b/integration-test-java/src/test/java/org/seasar/doma/it/criteria/QueryDslSqlUpdateTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.criteria; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/integration-test-java/src/test/java/org/seasar/doma/it/domain/AllowNullTest.java b/integration-test-java/src/test/java/org/seasar/doma/it/domain/AllowNullTest.java index 262fc1d25..116b7fcb6 100644 --- a/integration-test-java/src/test/java/org/seasar/doma/it/domain/AllowNullTest.java +++ b/integration-test-java/src/test/java/org/seasar/doma/it/domain/AllowNullTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.domain; import static org.junit.jupiter.api.Assertions.assertFalse; diff --git a/integration-test-java/src/test/java/org/seasar/doma/it/domain/HeightTest.java b/integration-test-java/src/test/java/org/seasar/doma/it/domain/HeightTest.java index caa12c335..8cb9baea5 100644 --- a/integration-test-java/src/test/java/org/seasar/doma/it/domain/HeightTest.java +++ b/integration-test-java/src/test/java/org/seasar/doma/it/domain/HeightTest.java @@ -1,17 +1,17 @@ /* - * Copyright 2004-2010 the Seasar Foundation and the Others. + * Copyright Doma Authors * * 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 + * https://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. + * 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 org.seasar.doma.it.domain; diff --git a/integration-test-java/src/test/java/org/seasar/doma/it/domain/PrimitiveHeightTest.java b/integration-test-java/src/test/java/org/seasar/doma/it/domain/PrimitiveHeightTest.java index 27178d168..a93d2e8d8 100644 --- a/integration-test-java/src/test/java/org/seasar/doma/it/domain/PrimitiveHeightTest.java +++ b/integration-test-java/src/test/java/org/seasar/doma/it/domain/PrimitiveHeightTest.java @@ -1,17 +1,17 @@ /* - * Copyright 2004-2010 the Seasar Foundation and the Others. + * Copyright Doma Authors * * 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 + * https://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. + * 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 org.seasar.doma.it.domain; diff --git a/integration-test-java/src/test/java/org/seasar/doma/it/domain/StringArrayTest.java b/integration-test-java/src/test/java/org/seasar/doma/it/domain/StringArrayTest.java index 13b41388c..ce7ea0e2d 100644 --- a/integration-test-java/src/test/java/org/seasar/doma/it/domain/StringArrayTest.java +++ b/integration-test-java/src/test/java/org/seasar/doma/it/domain/StringArrayTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.domain; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/integration-test-java/src/test/java/org/seasar/doma/it/domain/WeightTest.java b/integration-test-java/src/test/java/org/seasar/doma/it/domain/WeightTest.java index e4f99a8e1..7d689a6ce 100644 --- a/integration-test-java/src/test/java/org/seasar/doma/it/domain/WeightTest.java +++ b/integration-test-java/src/test/java/org/seasar/doma/it/domain/WeightTest.java @@ -1,17 +1,17 @@ /* - * Copyright 2004-2010 the Seasar Foundation and the Others. + * Copyright Doma Authors * * 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 + * https://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. + * 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 org.seasar.doma.it.domain; diff --git a/integration-test-java/src/test/java/org/seasar/doma/it/embeddable/StaffInfoTest.java b/integration-test-java/src/test/java/org/seasar/doma/it/embeddable/StaffInfoTest.java index 569e77a6b..1adaa35ca 100644 --- a/integration-test-java/src/test/java/org/seasar/doma/it/embeddable/StaffInfoTest.java +++ b/integration-test-java/src/test/java/org/seasar/doma/it/embeddable/StaffInfoTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.embeddable; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/integration-test-java/src/test/java/org/seasar/doma/it/jep355/TextBlockTest.java b/integration-test-java/src/test/java/org/seasar/doma/it/jep355/TextBlockTest.java index 6e9041be1..8495d50d8 100644 --- a/integration-test-java/src/test/java/org/seasar/doma/it/jep355/TextBlockTest.java +++ b/integration-test-java/src/test/java/org/seasar/doma/it/jep355/TextBlockTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.jep355; import static org.junit.jupiter.api.Assertions.assertNotNull; diff --git a/integration-test-java/src/test/java/org/seasar/doma/it/jep384/RecordTest.java b/integration-test-java/src/test/java/org/seasar/doma/it/jep384/RecordTest.java index d3ee40200..dae63fb82 100644 --- a/integration-test-java/src/test/java/org/seasar/doma/it/jep384/RecordTest.java +++ b/integration-test-java/src/test/java/org/seasar/doma/it/jep384/RecordTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.jep384; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/integration-test-java/src/test/java/org/seasar/doma/it/other/ArrayTest.java b/integration-test-java/src/test/java/org/seasar/doma/it/other/ArrayTest.java index 736582df8..5e16fbe7d 100644 --- a/integration-test-java/src/test/java/org/seasar/doma/it/other/ArrayTest.java +++ b/integration-test-java/src/test/java/org/seasar/doma/it/other/ArrayTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.other; import static org.junit.jupiter.api.Assertions.assertArrayEquals; diff --git a/integration-test-java/src/test/java/org/seasar/doma/it/other/ExternalDomainTest.java b/integration-test-java/src/test/java/org/seasar/doma/it/other/ExternalDomainTest.java index c41a6cbb9..207783f4d 100644 --- a/integration-test-java/src/test/java/org/seasar/doma/it/other/ExternalDomainTest.java +++ b/integration-test-java/src/test/java/org/seasar/doma/it/other/ExternalDomainTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.other; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/integration-test-java/src/test/java/org/seasar/doma/it/other/PrimitiveTypeTest.java b/integration-test-java/src/test/java/org/seasar/doma/it/other/PrimitiveTypeTest.java index f1cede538..f41f5de01 100644 --- a/integration-test-java/src/test/java/org/seasar/doma/it/other/PrimitiveTypeTest.java +++ b/integration-test-java/src/test/java/org/seasar/doma/it/other/PrimitiveTypeTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.other; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/integration-test-java/src/test/java/org/seasar/doma/it/other/SQLXMLTest.java b/integration-test-java/src/test/java/org/seasar/doma/it/other/SQLXMLTest.java index e966c62ca..e4e766046 100644 --- a/integration-test-java/src/test/java/org/seasar/doma/it/other/SQLXMLTest.java +++ b/integration-test-java/src/test/java/org/seasar/doma/it/other/SQLXMLTest.java @@ -1,17 +1,17 @@ /* - * Copyright 2004-2010 the Seasar Foundation and the Others. + * Copyright Doma Authors * * 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 + * https://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. + * 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 org.seasar.doma.it.other; diff --git a/integration-test-java/src/test/java/org/seasar/doma/it/other/postgresql/LongNameSerialSequenceTest.java b/integration-test-java/src/test/java/org/seasar/doma/it/other/postgresql/LongNameSerialSequenceTest.java index 06df93ac4..287f66680 100644 --- a/integration-test-java/src/test/java/org/seasar/doma/it/other/postgresql/LongNameSerialSequenceTest.java +++ b/integration-test-java/src/test/java/org/seasar/doma/it/other/postgresql/LongNameSerialSequenceTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.other.postgresql; import java.util.Arrays; diff --git a/integration-test-java/src/test/java/org/seasar/doma/it/sql/SqlSelectTest.java b/integration-test-java/src/test/java/org/seasar/doma/it/sql/SqlSelectTest.java index 1fcff8d42..e60d90ede 100644 --- a/integration-test-java/src/test/java/org/seasar/doma/it/sql/SqlSelectTest.java +++ b/integration-test-java/src/test/java/org/seasar/doma/it/sql/SqlSelectTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.sql; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/integration-test-java/src/test/java/org/seasar/doma/it/sqlfile/SqlFileBatchDeleteTest.java b/integration-test-java/src/test/java/org/seasar/doma/it/sqlfile/SqlFileBatchDeleteTest.java index 7b7fa38dc..7f8560548 100644 --- a/integration-test-java/src/test/java/org/seasar/doma/it/sqlfile/SqlFileBatchDeleteTest.java +++ b/integration-test-java/src/test/java/org/seasar/doma/it/sqlfile/SqlFileBatchDeleteTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.sqlfile; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/integration-test-java/src/test/java/org/seasar/doma/it/sqlfile/SqlFileBatchInsertTest.java b/integration-test-java/src/test/java/org/seasar/doma/it/sqlfile/SqlFileBatchInsertTest.java index 8cfca9ece..d8a5a877e 100644 --- a/integration-test-java/src/test/java/org/seasar/doma/it/sqlfile/SqlFileBatchInsertTest.java +++ b/integration-test-java/src/test/java/org/seasar/doma/it/sqlfile/SqlFileBatchInsertTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.sqlfile; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/integration-test-java/src/test/java/org/seasar/doma/it/sqlfile/SqlFileBatchUpdateTest.java b/integration-test-java/src/test/java/org/seasar/doma/it/sqlfile/SqlFileBatchUpdateTest.java index 90c3e294f..b2376e3c2 100644 --- a/integration-test-java/src/test/java/org/seasar/doma/it/sqlfile/SqlFileBatchUpdateTest.java +++ b/integration-test-java/src/test/java/org/seasar/doma/it/sqlfile/SqlFileBatchUpdateTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.sqlfile; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/integration-test-java/src/test/java/org/seasar/doma/it/sqlfile/SqlFileDeleteTest.java b/integration-test-java/src/test/java/org/seasar/doma/it/sqlfile/SqlFileDeleteTest.java index 306d56569..ce93d22d6 100644 --- a/integration-test-java/src/test/java/org/seasar/doma/it/sqlfile/SqlFileDeleteTest.java +++ b/integration-test-java/src/test/java/org/seasar/doma/it/sqlfile/SqlFileDeleteTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.sqlfile; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/integration-test-java/src/test/java/org/seasar/doma/it/sqlfile/SqlFileInsertTest.java b/integration-test-java/src/test/java/org/seasar/doma/it/sqlfile/SqlFileInsertTest.java index be66bb355..434a7a7cb 100644 --- a/integration-test-java/src/test/java/org/seasar/doma/it/sqlfile/SqlFileInsertTest.java +++ b/integration-test-java/src/test/java/org/seasar/doma/it/sqlfile/SqlFileInsertTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.sqlfile; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/integration-test-java/src/test/java/org/seasar/doma/it/sqlfile/SqlFileSelectCollectorTest.java b/integration-test-java/src/test/java/org/seasar/doma/it/sqlfile/SqlFileSelectCollectorTest.java index bf4023f2a..19eb8829d 100644 --- a/integration-test-java/src/test/java/org/seasar/doma/it/sqlfile/SqlFileSelectCollectorTest.java +++ b/integration-test-java/src/test/java/org/seasar/doma/it/sqlfile/SqlFileSelectCollectorTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.sqlfile; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/integration-test-java/src/test/java/org/seasar/doma/it/sqlfile/SqlFileSelectCountTest.java b/integration-test-java/src/test/java/org/seasar/doma/it/sqlfile/SqlFileSelectCountTest.java index 75299611c..068228a95 100644 --- a/integration-test-java/src/test/java/org/seasar/doma/it/sqlfile/SqlFileSelectCountTest.java +++ b/integration-test-java/src/test/java/org/seasar/doma/it/sqlfile/SqlFileSelectCountTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.sqlfile; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/integration-test-java/src/test/java/org/seasar/doma/it/sqlfile/SqlFileSelectForUpdateTest.java b/integration-test-java/src/test/java/org/seasar/doma/it/sqlfile/SqlFileSelectForUpdateTest.java index a9081f569..60b730237 100644 --- a/integration-test-java/src/test/java/org/seasar/doma/it/sqlfile/SqlFileSelectForUpdateTest.java +++ b/integration-test-java/src/test/java/org/seasar/doma/it/sqlfile/SqlFileSelectForUpdateTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.sqlfile; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/integration-test-java/src/test/java/org/seasar/doma/it/sqlfile/SqlFileSelectPagingTest.java b/integration-test-java/src/test/java/org/seasar/doma/it/sqlfile/SqlFileSelectPagingTest.java index cc33ec1f1..9262586ff 100644 --- a/integration-test-java/src/test/java/org/seasar/doma/it/sqlfile/SqlFileSelectPagingTest.java +++ b/integration-test-java/src/test/java/org/seasar/doma/it/sqlfile/SqlFileSelectPagingTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.sqlfile; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/integration-test-java/src/test/java/org/seasar/doma/it/sqlfile/SqlFileSelectStreamTest.java b/integration-test-java/src/test/java/org/seasar/doma/it/sqlfile/SqlFileSelectStreamTest.java index 2c02e2021..1094afcfe 100644 --- a/integration-test-java/src/test/java/org/seasar/doma/it/sqlfile/SqlFileSelectStreamTest.java +++ b/integration-test-java/src/test/java/org/seasar/doma/it/sqlfile/SqlFileSelectStreamTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.sqlfile; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/integration-test-java/src/test/java/org/seasar/doma/it/sqlfile/SqlFileSelectTest.java b/integration-test-java/src/test/java/org/seasar/doma/it/sqlfile/SqlFileSelectTest.java index f5a2fa018..581dfca3e 100644 --- a/integration-test-java/src/test/java/org/seasar/doma/it/sqlfile/SqlFileSelectTest.java +++ b/integration-test-java/src/test/java/org/seasar/doma/it/sqlfile/SqlFileSelectTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.sqlfile; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/integration-test-java/src/test/java/org/seasar/doma/it/sqlfile/SqlFileUpdateTest.java b/integration-test-java/src/test/java/org/seasar/doma/it/sqlfile/SqlFileUpdateTest.java index b44c9edad..f44703353 100644 --- a/integration-test-java/src/test/java/org/seasar/doma/it/sqlfile/SqlFileUpdateTest.java +++ b/integration-test-java/src/test/java/org/seasar/doma/it/sqlfile/SqlFileUpdateTest.java @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.sqlfile; import static org.junit.jupiter.api.Assertions.assertEquals; diff --git a/integration-test-kotlin/src/main/kotlin/org/seasar/doma/it/criteria/Address.kt b/integration-test-kotlin/src/main/kotlin/org/seasar/doma/it/criteria/Address.kt index 30a683b81..38b61f597 100644 --- a/integration-test-kotlin/src/main/kotlin/org/seasar/doma/it/criteria/Address.kt +++ b/integration-test-kotlin/src/main/kotlin/org/seasar/doma/it/criteria/Address.kt @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.criteria import org.seasar.doma.Entity diff --git a/integration-test-kotlin/src/main/kotlin/org/seasar/doma/it/criteria/Department.kt b/integration-test-kotlin/src/main/kotlin/org/seasar/doma/it/criteria/Department.kt index 30dcc40f4..208a7d7a9 100644 --- a/integration-test-kotlin/src/main/kotlin/org/seasar/doma/it/criteria/Department.kt +++ b/integration-test-kotlin/src/main/kotlin/org/seasar/doma/it/criteria/Department.kt @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.criteria import org.seasar.doma.Entity diff --git a/integration-test-kotlin/src/main/kotlin/org/seasar/doma/it/criteria/DepartmentArchive.kt b/integration-test-kotlin/src/main/kotlin/org/seasar/doma/it/criteria/DepartmentArchive.kt index 6ce326bb5..24a5d8fbe 100644 --- a/integration-test-kotlin/src/main/kotlin/org/seasar/doma/it/criteria/DepartmentArchive.kt +++ b/integration-test-kotlin/src/main/kotlin/org/seasar/doma/it/criteria/DepartmentArchive.kt @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.criteria import org.seasar.doma.Entity diff --git a/integration-test-kotlin/src/main/kotlin/org/seasar/doma/it/criteria/Dept.kt b/integration-test-kotlin/src/main/kotlin/org/seasar/doma/it/criteria/Dept.kt index 34c535927..c06e6ea0c 100644 --- a/integration-test-kotlin/src/main/kotlin/org/seasar/doma/it/criteria/Dept.kt +++ b/integration-test-kotlin/src/main/kotlin/org/seasar/doma/it/criteria/Dept.kt @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.criteria import org.seasar.doma.Entity diff --git a/integration-test-kotlin/src/main/kotlin/org/seasar/doma/it/criteria/Emp.kt b/integration-test-kotlin/src/main/kotlin/org/seasar/doma/it/criteria/Emp.kt index 06c20a6a3..87d13b283 100644 --- a/integration-test-kotlin/src/main/kotlin/org/seasar/doma/it/criteria/Emp.kt +++ b/integration-test-kotlin/src/main/kotlin/org/seasar/doma/it/criteria/Emp.kt @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.criteria import org.seasar.doma.Entity diff --git a/integration-test-kotlin/src/main/kotlin/org/seasar/doma/it/criteria/Employee.kt b/integration-test-kotlin/src/main/kotlin/org/seasar/doma/it/criteria/Employee.kt index 3f3c1f975..6244527b8 100644 --- a/integration-test-kotlin/src/main/kotlin/org/seasar/doma/it/criteria/Employee.kt +++ b/integration-test-kotlin/src/main/kotlin/org/seasar/doma/it/criteria/Employee.kt @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.criteria import org.seasar.doma.Entity diff --git a/integration-test-kotlin/src/main/kotlin/org/seasar/doma/it/criteria/EmployeeInfo.kt b/integration-test-kotlin/src/main/kotlin/org/seasar/doma/it/criteria/EmployeeInfo.kt index c42b9bbf3..a27ea1053 100644 --- a/integration-test-kotlin/src/main/kotlin/org/seasar/doma/it/criteria/EmployeeInfo.kt +++ b/integration-test-kotlin/src/main/kotlin/org/seasar/doma/it/criteria/EmployeeInfo.kt @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.criteria import org.seasar.doma.Embeddable diff --git a/integration-test-kotlin/src/main/kotlin/org/seasar/doma/it/criteria/Salary.kt b/integration-test-kotlin/src/main/kotlin/org/seasar/doma/it/criteria/Salary.kt index 39ad4ae9d..1862d4dc3 100644 --- a/integration-test-kotlin/src/main/kotlin/org/seasar/doma/it/criteria/Salary.kt +++ b/integration-test-kotlin/src/main/kotlin/org/seasar/doma/it/criteria/Salary.kt @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.criteria import org.seasar.doma.Domain diff --git a/integration-test-kotlin/src/main/kotlin/org/seasar/doma/it/criteria/Street.kt b/integration-test-kotlin/src/main/kotlin/org/seasar/doma/it/criteria/Street.kt index 3ade9101d..ee7241263 100644 --- a/integration-test-kotlin/src/main/kotlin/org/seasar/doma/it/criteria/Street.kt +++ b/integration-test-kotlin/src/main/kotlin/org/seasar/doma/it/criteria/Street.kt @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.criteria import org.seasar.doma.Domain diff --git a/integration-test-kotlin/src/test/kotlin/org/seasar/doma/it/criteria/KMetamodelTest.kt b/integration-test-kotlin/src/test/kotlin/org/seasar/doma/it/criteria/KMetamodelTest.kt index 6336030a5..d31dcd88d 100644 --- a/integration-test-kotlin/src/test/kotlin/org/seasar/doma/it/criteria/KMetamodelTest.kt +++ b/integration-test-kotlin/src/test/kotlin/org/seasar/doma/it/criteria/KMetamodelTest.kt @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.criteria import org.junit.jupiter.api.Assertions.assertEquals diff --git a/integration-test-kotlin/src/test/kotlin/org/seasar/doma/it/criteria/KQueryDslEntityBatchDeleteTest.kt b/integration-test-kotlin/src/test/kotlin/org/seasar/doma/it/criteria/KQueryDslEntityBatchDeleteTest.kt index 5f7667ce3..a1f0e7f0d 100644 --- a/integration-test-kotlin/src/test/kotlin/org/seasar/doma/it/criteria/KQueryDslEntityBatchDeleteTest.kt +++ b/integration-test-kotlin/src/test/kotlin/org/seasar/doma/it/criteria/KQueryDslEntityBatchDeleteTest.kt @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.criteria import org.junit.jupiter.api.Assertions.assertArrayEquals diff --git a/integration-test-kotlin/src/test/kotlin/org/seasar/doma/it/criteria/KQueryDslEntityBatchInsertTest.kt b/integration-test-kotlin/src/test/kotlin/org/seasar/doma/it/criteria/KQueryDslEntityBatchInsertTest.kt index 37ab35e47..c65443aac 100644 --- a/integration-test-kotlin/src/test/kotlin/org/seasar/doma/it/criteria/KQueryDslEntityBatchInsertTest.kt +++ b/integration-test-kotlin/src/test/kotlin/org/seasar/doma/it/criteria/KQueryDslEntityBatchInsertTest.kt @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.criteria import org.junit.jupiter.api.Assertions.assertEquals diff --git a/integration-test-kotlin/src/test/kotlin/org/seasar/doma/it/criteria/KQueryDslEntityBatchUpdateTest.kt b/integration-test-kotlin/src/test/kotlin/org/seasar/doma/it/criteria/KQueryDslEntityBatchUpdateTest.kt index 5983a6c9b..585d613a5 100644 --- a/integration-test-kotlin/src/test/kotlin/org/seasar/doma/it/criteria/KQueryDslEntityBatchUpdateTest.kt +++ b/integration-test-kotlin/src/test/kotlin/org/seasar/doma/it/criteria/KQueryDslEntityBatchUpdateTest.kt @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.criteria import org.junit.jupiter.api.Assertions diff --git a/integration-test-kotlin/src/test/kotlin/org/seasar/doma/it/criteria/KQueryDslEntityDeleteTest.kt b/integration-test-kotlin/src/test/kotlin/org/seasar/doma/it/criteria/KQueryDslEntityDeleteTest.kt index 6a64c9d1d..bf4a6b872 100644 --- a/integration-test-kotlin/src/test/kotlin/org/seasar/doma/it/criteria/KQueryDslEntityDeleteTest.kt +++ b/integration-test-kotlin/src/test/kotlin/org/seasar/doma/it/criteria/KQueryDslEntityDeleteTest.kt @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.criteria import org.junit.jupiter.api.Assertions.assertEquals diff --git a/integration-test-kotlin/src/test/kotlin/org/seasar/doma/it/criteria/KQueryDslEntityInsertTest.kt b/integration-test-kotlin/src/test/kotlin/org/seasar/doma/it/criteria/KQueryDslEntityInsertTest.kt index 562514f9b..ddc59d695 100644 --- a/integration-test-kotlin/src/test/kotlin/org/seasar/doma/it/criteria/KQueryDslEntityInsertTest.kt +++ b/integration-test-kotlin/src/test/kotlin/org/seasar/doma/it/criteria/KQueryDslEntityInsertTest.kt @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.criteria import org.junit.jupiter.api.Assertions.assertEquals diff --git a/integration-test-kotlin/src/test/kotlin/org/seasar/doma/it/criteria/KQueryDslEntitySelectTest.kt b/integration-test-kotlin/src/test/kotlin/org/seasar/doma/it/criteria/KQueryDslEntitySelectTest.kt index 27a25166c..013b1396c 100644 --- a/integration-test-kotlin/src/test/kotlin/org/seasar/doma/it/criteria/KQueryDslEntitySelectTest.kt +++ b/integration-test-kotlin/src/test/kotlin/org/seasar/doma/it/criteria/KQueryDslEntitySelectTest.kt @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.criteria import org.junit.jupiter.api.Assertions.assertEquals diff --git a/integration-test-kotlin/src/test/kotlin/org/seasar/doma/it/criteria/KQueryDslEntityUpdateTest.kt b/integration-test-kotlin/src/test/kotlin/org/seasar/doma/it/criteria/KQueryDslEntityUpdateTest.kt index d42b60af3..afb58d3b4 100644 --- a/integration-test-kotlin/src/test/kotlin/org/seasar/doma/it/criteria/KQueryDslEntityUpdateTest.kt +++ b/integration-test-kotlin/src/test/kotlin/org/seasar/doma/it/criteria/KQueryDslEntityUpdateTest.kt @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.criteria import org.junit.jupiter.api.Assertions.assertEquals diff --git a/integration-test-kotlin/src/test/kotlin/org/seasar/doma/it/criteria/KQueryDslImmutableTest.kt b/integration-test-kotlin/src/test/kotlin/org/seasar/doma/it/criteria/KQueryDslImmutableTest.kt index dc32290be..ae83dd054 100644 --- a/integration-test-kotlin/src/test/kotlin/org/seasar/doma/it/criteria/KQueryDslImmutableTest.kt +++ b/integration-test-kotlin/src/test/kotlin/org/seasar/doma/it/criteria/KQueryDslImmutableTest.kt @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.criteria import org.junit.jupiter.api.Assertions.assertEquals diff --git a/integration-test-kotlin/src/test/kotlin/org/seasar/doma/it/criteria/KQueryDslSqlDeleteTest.kt b/integration-test-kotlin/src/test/kotlin/org/seasar/doma/it/criteria/KQueryDslSqlDeleteTest.kt index 159d627a1..b9cbe64ec 100644 --- a/integration-test-kotlin/src/test/kotlin/org/seasar/doma/it/criteria/KQueryDslSqlDeleteTest.kt +++ b/integration-test-kotlin/src/test/kotlin/org/seasar/doma/it/criteria/KQueryDslSqlDeleteTest.kt @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.criteria import org.junit.jupiter.api.Assertions.assertEquals diff --git a/integration-test-kotlin/src/test/kotlin/org/seasar/doma/it/criteria/KQueryDslSqlInsertTest.kt b/integration-test-kotlin/src/test/kotlin/org/seasar/doma/it/criteria/KQueryDslSqlInsertTest.kt index 65fb94b21..8549c2221 100644 --- a/integration-test-kotlin/src/test/kotlin/org/seasar/doma/it/criteria/KQueryDslSqlInsertTest.kt +++ b/integration-test-kotlin/src/test/kotlin/org/seasar/doma/it/criteria/KQueryDslSqlInsertTest.kt @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.criteria import org.junit.jupiter.api.Assertions.assertEquals diff --git a/integration-test-kotlin/src/test/kotlin/org/seasar/doma/it/criteria/KQueryDslSqlSelectTest.kt b/integration-test-kotlin/src/test/kotlin/org/seasar/doma/it/criteria/KQueryDslSqlSelectTest.kt index 98e9c696d..a1d16ca6c 100644 --- a/integration-test-kotlin/src/test/kotlin/org/seasar/doma/it/criteria/KQueryDslSqlSelectTest.kt +++ b/integration-test-kotlin/src/test/kotlin/org/seasar/doma/it/criteria/KQueryDslSqlSelectTest.kt @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.criteria import org.junit.jupiter.api.Assertions diff --git a/integration-test-kotlin/src/test/kotlin/org/seasar/doma/it/criteria/KQueryDslSqlUpdateTest.kt b/integration-test-kotlin/src/test/kotlin/org/seasar/doma/it/criteria/KQueryDslSqlUpdateTest.kt index 1e3ce1186..ca7104038 100644 --- a/integration-test-kotlin/src/test/kotlin/org/seasar/doma/it/criteria/KQueryDslSqlUpdateTest.kt +++ b/integration-test-kotlin/src/test/kotlin/org/seasar/doma/it/criteria/KQueryDslSqlUpdateTest.kt @@ -1,3 +1,18 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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 org.seasar.doma.it.criteria import org.junit.jupiter.api.Assertions.assertEquals diff --git a/spotless/copyright.java b/spotless/copyright.java new file mode 100644 index 000000000..ae2035b3f --- /dev/null +++ b/spotless/copyright.java @@ -0,0 +1,15 @@ +/* + * Copyright Doma Authors + * + * 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 + * + * https://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. + */