KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > pluto > portalImpl > portlet > test > TestResults


1 /*
2  * Copyright 2003,2004 The Apache Software Foundation.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */

16 package org.apache.pluto.portalImpl.portlet.test;
17
18 import java.util.ArrayList JavaDoc;
19 import java.util.Collection JavaDoc;
20 import java.util.Collections JavaDoc;
21 import java.io.Serializable JavaDoc;
22
23 /**
24  * @author <a HREF="ddewolf@apache.org">David H. DeWolf</a>
25  */

26 public class TestResults implements Serializable JavaDoc {
27
28     private String JavaDoc name;
29     private ArrayList JavaDoc list = new ArrayList JavaDoc();
30     private boolean failed;
31     private boolean inQuestion;
32
33     public TestResults(String JavaDoc name) {
34         this.name = name;
35     }
36
37     public String JavaDoc getName() {
38         return name;
39     }
40
41     public void setName(String JavaDoc name) {
42         this.name = name;
43     }
44
45     public void add(TestResult res) {
46         if(TestResult.FAILED.equals(res.getReturnCode())) {
47             failed = true;
48         }
49         if(TestResult.WARNING.equals(res.getReturnCode())) {
50             inQuestion = true;
51         }
52         list.add(res);
53     }
54
55     public boolean isFailed() {
56         return failed;
57     }
58
59     public boolean isInQuestion() {
60         return inQuestion;
61     }
62
63     public Collection JavaDoc getCollection() {
64         return Collections.unmodifiableCollection(list);
65     }
66
67 }
68
Popular Tags