KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sun > enterprise > deployment > annotation > impl > ProcessingResultImpl


1 /*
2  * The contents of this file are subject to the terms
3  * of the Common Development and Distribution License
4  * (the License). You may not use this file except in
5  * compliance with the License.
6  *
7  * You can obtain a copy of the license at
8  * https://glassfish.dev.java.net/public/CDDLv1.0.html or
9  * glassfish/bootstrap/legal/CDDLv1.0.txt.
10  * See the License for the specific language governing
11  * permissions and limitations under the License.
12  *
13  * When distributing Covered Code, include this CDDL
14  * Header Notice in each file and include the License file
15  * at glassfish/bootstrap/legal/CDDLv1.0.txt.
16  * If applicable, add the following below the CDDL Header,
17  * with the fields enclosed by brackets [] replaced by
18  * you own identifying information:
19  * "Portions Copyrighted [year] [name of copyright owner]"
20  *
21  * Copyright 2006 Sun Microsystems, Inc. All rights reserved.
22  */

23
24 package com.sun.enterprise.deployment.annotation.impl;
25
26 import java.util.Map JavaDoc;
27 import java.util.HashMap JavaDoc;
28 import java.lang.reflect.AnnotatedElement JavaDoc;
29
30 import com.sun.enterprise.deployment.annotation.ProcessingResult;
31 import com.sun.enterprise.deployment.annotation.ResultType;
32 import com.sun.enterprise.deployment.annotation.HandlerProcessingResult;
33
34 /**
35  * Implementation of the ProcessingResult interface
36  *
37  * @author Jerome Dochez
38  */

39 public class ProcessingResultImpl implements ProcessingResult {
40     
41     Map JavaDoc<AnnotatedElement JavaDoc, HandlerProcessingResult> results;
42     ResultType overallResult = ResultType.UNPROCESSED;
43     
44     /** Creates a new instance of ProcessingResultImpl */
45     public ProcessingResultImpl() {
46         results = new HashMap JavaDoc<AnnotatedElement JavaDoc, HandlerProcessingResult>();
47     }
48     
49     public void add(ProcessingResult pr) {
50         
51         Map JavaDoc<AnnotatedElement JavaDoc, HandlerProcessingResult> results = pr.getResults();
52         for (AnnotatedElement JavaDoc element : results.keySet()) {
53             add(element, results.get(element));
54         }
55     }
56     
57     public void add(AnnotatedElement JavaDoc element, HandlerProcessingResult elementResult) {
58
59         if (elementResult.getOverallResult().compareTo(overallResult)>0) {
60             overallResult = elementResult.getOverallResult();
61         }
62         if (results.containsKey(element)) {
63             HandlerProcessingResultImpl previousResult = (HandlerProcessingResultImpl) results.get(element);
64             previousResult.addAll(elementResult);
65         } else {
66             if (elementResult instanceof HandlerProcessingResultImpl) {
67                 results.put(element, elementResult);
68             } else {
69                 HandlerProcessingResultImpl result = new HandlerProcessingResultImpl();
70                 result.addAll(elementResult);
71                 results.put(element, result);
72             }
73         }
74     }
75     
76     public Map JavaDoc<AnnotatedElement JavaDoc,HandlerProcessingResult> getResults() {
77         return results;
78     }
79     
80     public ResultType getOverallResult(){
81         return overallResult;
82     }
83 }
84
Popular Tags