/* * Copyright (C) 2010 Mathieu Baudier * * Licensed under the Apache License, Version 2.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.argeo.slc.core.test.tree; import java.util.List; import java.util.Vector; import org.argeo.slc.test.TestResultPart; import org.argeo.slc.test.TestStatus; /** * List of TestResultPart. It can be used to build complex * TestResult affording the possibility to a * TestDefinition to add a list of result part under the same * StructurePath. * * @see TreeTestResult */ public class PartSubList { /** For ORM */ private Long tid; private List parts = new Vector(); /** Gets the result parts. */ public List getParts() { return parts; } /** Sets the result parts. */ public void setParts(List parts) { this.parts = parts; } Long getTid() { return tid; } void setTid(Long tid) { this.tid = tid; } public Boolean getIsPassed() { for (TestResultPart part : parts) { if (part.getStatus() != TestStatus.PASSED) { return false; } } return true; } }