]> git.argeo.org Git - gpl/argeo-slc.git/blobdiff - runtime/org.argeo.slc.core/src/main/java/org/argeo/slc/core/test/tree/CompositeTreeTestDefinition.java
Improve demo
[gpl/argeo-slc.git] / runtime / org.argeo.slc.core / src / main / java / org / argeo / slc / core / test / tree / CompositeTreeTestDefinition.java
index 1f5e89342ed5f8dd7c028b38375e65847ad8a87c..4be0c798e17ccf39326fca9ab9e50c3948d019cd 100644 (file)
@@ -1,3 +1,19 @@
+/*\r
+ * Copyright (C) 2010 Mathieu Baudier <mbaudier@argeo.org>\r
+ *\r
+ * Licensed under the Apache License, Version 2.0 (the "License");\r
+ * you may not use this file except in compliance with the License.\r
+ * You may obtain a copy of the License at\r
+ *\r
+ *         http://www.apache.org/licenses/LICENSE-2.0\r
+ *\r
+ * Unless required by applicable law or agreed to in writing, software\r
+ * distributed under the License is distributed on an "AS IS" BASIS,\r
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
+ * See the License for the specific language governing permissions and\r
+ * limitations under the License.\r
+ */\r
+\r
 package org.argeo.slc.core.test.tree;\r
 \r
 import java.util.List;\r
@@ -28,6 +44,7 @@ public class CompositeTreeTestDefinition implements TestDefinition,
        private TreeSPath path;\r
        private StructureRegistry<TreeSPath> registry;\r
 \r
+       @SuppressWarnings({ "unchecked", "rawtypes" })\r
        public void execute(TestRun testRun) {\r
                if (log.isTraceEnabled())\r
                        log.trace("Execute sequence of test definitions...");\r
@@ -36,8 +53,8 @@ public class CompositeTreeTestDefinition implements TestDefinition,
                for (TestDefinition task : tasks) {\r
                        TestResult result = testRun.getTestResult();\r
                        if (result instanceof StructureAware) {\r
-                               ((StructureAware) result).notifyCurrentPath(registry, taskPaths\r
-                                               .get(i));\r
+                               ((StructureAware) result).notifyCurrentPath(registry,\r
+                                               taskPaths.get(i));\r
                        }\r
 \r
                        task.execute(testRun);\r
@@ -58,6 +75,7 @@ public class CompositeTreeTestDefinition implements TestDefinition,
                }\r
        }\r
 \r
+       @SuppressWarnings("unchecked")\r
        public void notifyCurrentPath(StructureRegistry<TreeSPath> registry,\r
                        TreeSPath path) {\r
                this.path = path;\r