01: /*
02: * Licensed to the Apache Software Foundation (ASF) under one or more
03: * contributor license agreements. See the NOTICE file distributed with
04: * this work for additional information regarding copyright ownership.
05: * The ASF licenses this file to You under the Apache License, Version 2.0
06: * (the "License"); you may not use this file except in compliance with
07: * the License. You may obtain a copy of the License at
08: *
09: * http://www.apache.org/licenses/LICENSE-2.0
10: *
11: * Unless required by applicable law or agreed to in writing, software
12: * distributed under the License is distributed on an "AS IS" BASIS,
13: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14: * See the License for the specific language governing permissions and
15: * limitations under the License.
16: */
17:
18: package org.drools.commons.jci.compilers;
19:
20: import java.util.ArrayList;
21: import java.util.Collection;
22:
23: import org.drools.commons.jci.problems.CompilationProblem;
24:
25: /**
26: * A CompilationResult represents the result of a compilation.
27: * It includes errors (which failed the compilation) or warnings
28: * (that can be ignored and do not affect the creation of the
29: * class files)
30: *
31: * @author tcurdt
32: */
33: public final class CompilationResult {
34:
35: private final CompilationProblem[] errors;
36: private final CompilationProblem[] warnings;
37:
38: public CompilationResult(final CompilationProblem[] pProblems) {
39: final Collection errorsColl = new ArrayList();
40: final Collection warningsColl = new ArrayList();
41:
42: for (int i = 0; i < pProblems.length; i++) {
43: final CompilationProblem problem = pProblems[i];
44: if (problem.isError()) {
45: errorsColl.add(problem);
46: } else {
47: warningsColl.add(problem);
48: }
49: }
50:
51: errors = new CompilationProblem[errorsColl.size()];
52: errorsColl.toArray(errors);
53:
54: warnings = new CompilationProblem[warningsColl.size()];
55: warningsColl.toArray(warnings);
56: }
57:
58: public CompilationProblem[] getErrors() {
59: return errors;
60: }
61:
62: public CompilationProblem[] getWarnings() {
63: return warnings;
64: }
65: }
|