diff --git a/examples/gradle/GradleTransfuse/src/main/java/org/gradletransfuse/Module.java b/examples/gradle/GradleTransfuse/src/main/java/org/gradletransfuse/Module.java index d76470b6..278ab586 100644 --- a/examples/gradle/GradleTransfuse/src/main/java/org/gradletransfuse/Module.java +++ b/examples/gradle/GradleTransfuse/src/main/java/org/gradletransfuse/Module.java @@ -1,3 +1,18 @@ +/** + * Copyright 2011-2015 John Ericksen + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package org.gradletransfuse; import org.androidtransfuse.annotations.*; diff --git a/examples/gradle/testlibrary/src/main/java/com/example/john/testlibrary/TestLibraryModule.java b/examples/gradle/testlibrary/src/main/java/com/example/john/testlibrary/TestLibraryModule.java index 43fbaf6f..89fd30d7 100644 --- a/examples/gradle/testlibrary/src/main/java/com/example/john/testlibrary/TestLibraryModule.java +++ b/examples/gradle/testlibrary/src/main/java/com/example/john/testlibrary/TestLibraryModule.java @@ -1,3 +1,18 @@ +/** + * Copyright 2011-2015 John Ericksen + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package com.example.john.testlibrary; import org.androidtransfuse.annotations.*; diff --git a/examples/gradle/testlibrary/src/main/java/com/example/john/testlibrary/ViewWrapper.java b/examples/gradle/testlibrary/src/main/java/com/example/john/testlibrary/ViewWrapper.java index 26929653..cddf2cb1 100644 --- a/examples/gradle/testlibrary/src/main/java/com/example/john/testlibrary/ViewWrapper.java +++ b/examples/gradle/testlibrary/src/main/java/com/example/john/testlibrary/ViewWrapper.java @@ -1,3 +1,18 @@ +/** + * Copyright 2011-2015 John Ericksen + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package com.example.john.testlibrary; import android.support.v7.app.AppCompatActivity; diff --git a/transfuse-api/src/main/java/org/androidtransfuse/annotations/Bridge.java b/transfuse-api/src/main/java/org/androidtransfuse/annotations/Bridge.java index 778f0c7a..35d2220e 100644 --- a/transfuse-api/src/main/java/org/androidtransfuse/annotations/Bridge.java +++ b/transfuse-api/src/main/java/org/androidtransfuse/annotations/Bridge.java @@ -1,3 +1,18 @@ +/** + * Copyright 2011-2015 John Ericksen + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package org.androidtransfuse.annotations; /** diff --git a/transfuse-api/src/main/java/org/androidtransfuse/annotations/RMapping.java b/transfuse-api/src/main/java/org/androidtransfuse/annotations/RMapping.java index 4d179597..0289ed5c 100644 --- a/transfuse-api/src/main/java/org/androidtransfuse/annotations/RMapping.java +++ b/transfuse-api/src/main/java/org/androidtransfuse/annotations/RMapping.java @@ -1,3 +1,18 @@ +/** + * Copyright 2011-2015 John Ericksen + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package org.androidtransfuse.annotations; /** diff --git a/transfuse-api/src/main/java/org/androidtransfuse/scope/ScopesUtil.java b/transfuse-api/src/main/java/org/androidtransfuse/scope/ScopesUtil.java index 21ae8cb1..37f557b6 100644 --- a/transfuse-api/src/main/java/org/androidtransfuse/scope/ScopesUtil.java +++ b/transfuse-api/src/main/java/org/androidtransfuse/scope/ScopesUtil.java @@ -1,3 +1,18 @@ +/** + * Copyright 2011-2015 John Ericksen + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package org.androidtransfuse.scope; import org.androidtransfuse.annotations.TransfuseModule; diff --git a/transfuse-support/src/test/java/org/androidtransfuse/adapter/ASTUtilsTest.java b/transfuse-support/src/test/java/org/androidtransfuse/adapter/ASTUtilsTest.java index e59b16f4..93294e83 100644 --- a/transfuse-support/src/test/java/org/androidtransfuse/adapter/ASTUtilsTest.java +++ b/transfuse-support/src/test/java/org/androidtransfuse/adapter/ASTUtilsTest.java @@ -1,7 +1,23 @@ +/** + * Copyright 2011-2015 John Ericksen + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package org.androidtransfuse.adapter; import org.androidtransfuse.adapter.classes.ASTClassFactory; -import org.junit.*; +import org.junit.Before; +import org.junit.Test; import static org.junit.Assert.assertFalse; import static org.junit.Assert.assertTrue; diff --git a/transfuse/src/main/java/org/androidtransfuse/rbridge/ProcessingScope.java b/transfuse/src/main/java/org/androidtransfuse/rbridge/ProcessingScope.java index 944ba182..3722f831 100644 --- a/transfuse/src/main/java/org/androidtransfuse/rbridge/ProcessingScope.java +++ b/transfuse/src/main/java/org/androidtransfuse/rbridge/ProcessingScope.java @@ -1,5 +1,5 @@ /** - * Copyright 2014-2015 John Ericksen + * Copyright 2011-2015 John Ericksen * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/transfuse/src/main/java/org/androidtransfuse/rbridge/RBridgeAnnotationProcessor.java b/transfuse/src/main/java/org/androidtransfuse/rbridge/RBridgeAnnotationProcessor.java index 79ba68c4..f2020cea 100644 --- a/transfuse/src/main/java/org/androidtransfuse/rbridge/RBridgeAnnotationProcessor.java +++ b/transfuse/src/main/java/org/androidtransfuse/rbridge/RBridgeAnnotationProcessor.java @@ -1,5 +1,5 @@ /** - * Copyright 2014-2015 John Ericksen + * Copyright 2011-2015 John Ericksen * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/transfuse/src/main/java/org/androidtransfuse/rbridge/RBridgeProcessor.java b/transfuse/src/main/java/org/androidtransfuse/rbridge/RBridgeProcessor.java index 459a55bc..82f50bc0 100644 --- a/transfuse/src/main/java/org/androidtransfuse/rbridge/RBridgeProcessor.java +++ b/transfuse/src/main/java/org/androidtransfuse/rbridge/RBridgeProcessor.java @@ -1,5 +1,5 @@ /** - * Copyright 2014-2015 John Ericksen + * Copyright 2011-2015 John Ericksen * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/transfuse/src/main/java/org/androidtransfuse/rbridge/RBridgeWorker.java b/transfuse/src/main/java/org/androidtransfuse/rbridge/RBridgeWorker.java index 95cb2a26..9b0edc7f 100644 --- a/transfuse/src/main/java/org/androidtransfuse/rbridge/RBridgeWorker.java +++ b/transfuse/src/main/java/org/androidtransfuse/rbridge/RBridgeWorker.java @@ -1,5 +1,5 @@ /** - * Copyright 2014-2015 John Ericksen + * Copyright 2011-2015 John Ericksen * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License.