- Fixed: Missing file level doc blocks with license in the DatabaseSchema component.


git-svn-id: https://svn.apache.org/repos/asf/incubator/zetacomponents/trunk@1036360 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/DatabaseSchema/tests/oracle_nodb_test.php b/DatabaseSchema/tests/oracle_nodb_test.php
index d0985eb..ff33ab5 100644
--- a/DatabaseSchema/tests/oracle_nodb_test.php
+++ b/DatabaseSchema/tests/oracle_nodb_test.php
@@ -1,4 +1,29 @@
 <?php
+/**
+ * File containing test code for the DatabaseSchema component.
+ *
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.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 DatabaseSchema
+ * @version //autogentag//
+ * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License, Version 2.0
+ */
+
 
 class ezcDatabaseSchemaOracleNoDbTest extends ezcTestCase
 {
diff --git a/DatabaseSchema/tests/testfiles/broken_schema.php b/DatabaseSchema/tests/testfiles/broken_schema.php
index d0743b8..748cf2f 100644
--- a/DatabaseSchema/tests/testfiles/broken_schema.php
+++ b/DatabaseSchema/tests/testfiles/broken_schema.php
@@ -1,3 +1,28 @@
 <?php
+/**
+ * File containing test code for the DatabaseSchema component.
+ *
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.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 DatabaseSchema
+ * @version //autogentag//
+ * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License, Version 2.0
+ */
+
 return array();
 ?>
diff --git a/DatabaseSchema/tests/testfiles/classes/custom_classes.php b/DatabaseSchema/tests/testfiles/classes/custom_classes.php
index 47e86f5..e8f244f 100644
--- a/DatabaseSchema/tests/testfiles/classes/custom_classes.php
+++ b/DatabaseSchema/tests/testfiles/classes/custom_classes.php
@@ -1,4 +1,29 @@
 <?php
+/**
+ * File containing test code for the DatabaseSchema component.
+ *
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.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 DatabaseSchema
+ * @version //autogentag//
+ * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License, Version 2.0
+ */
+
 class myCustomDbTable extends ezcDbSchemaTable {}
 class myCustomDbField extends ezcDbSchemaField {}
 class myCustomDbIndex extends ezcDbSchemaIndex {}
diff --git a/DatabaseSchema/tests/testfiles/persistent_schema.php b/DatabaseSchema/tests/testfiles/persistent_schema.php
index 774597f..77dc06c 100644
--- a/DatabaseSchema/tests/testfiles/persistent_schema.php
+++ b/DatabaseSchema/tests/testfiles/persistent_schema.php
@@ -1,4 +1,29 @@
 <?php
+/**
+ * File containing test code for the DatabaseSchema component.
+ *
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.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 DatabaseSchema
+ * @version //autogentag//
+ * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License, Version 2.0
+ */
+
 return array (
   'ce_bad_word' => 
   ezcDbSchemaTable::__set_state(array(
diff --git a/DatabaseSchema/tests/testfiles/schema-handler-implementations.php b/DatabaseSchema/tests/testfiles/schema-handler-implementations.php
index d212e9a..ece9c0e 100644
--- a/DatabaseSchema/tests/testfiles/schema-handler-implementations.php
+++ b/DatabaseSchema/tests/testfiles/schema-handler-implementations.php
@@ -1,4 +1,29 @@
 <?php
+/**
+ * File containing test code for the DatabaseSchema component.
+ *
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.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 DatabaseSchema
+ * @version //autogentag//
+ * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License, Version 2.0
+ */
+
 class TestSchemaReaderImplementation implements ezcDbSchemaReader
 {
     public function getReaderType()