Skip to main content
summaryrefslogtreecommitdiffstats
blob: 148057d70824dc418b0ac415e5d99be22b000ffe (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
/*******************************************************************************
 * Copyright (c) 2001, 2008 Oracle Corporation and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 * 
 * Contributors:
 *     Oracle Corporation - initial API and implementation
 *******************************************************************************/
/**
 * 
 */
package org.eclipse.jst.jsf.validation.el.tests.base;

import java.util.ArrayList;
import java.util.List;

import org.eclipse.emf.common.util.Diagnostic;
import org.eclipse.jst.jsf.core.tests.validation.MockValidationReporter.ReportedProblem;
import org.eclipse.jst.jsf.validation.internal.IJSFViewValidator.IValidationReporter;
import org.eclipse.jst.jsf.validation.internal.el.diagnostics.DiagnosticFactory;
import org.eclipse.wst.validation.internal.provisional.core.IMessage;

public class MockELValidationReporter implements IValidationReporter
{
    final List<ReportedProblem>         _syntaxProblems;
    final List<ReportedProblem>         _semanticProblems;
    
    public MockELValidationReporter()
    {
        _syntaxProblems = new ArrayList<ReportedProblem>();
        _semanticProblems = new ArrayList<ReportedProblem>();
    }

    public void report(Diagnostic problem, int start, int length)
    {
        if (isASyntaxError(problem))
        {
            _syntaxProblems.add(new ReportedProblem(problem, start, length));
        }
        else
        {
            _semanticProblems.add(new ReportedProblem(problem, start, length));
        }
    }

    public List<ReportedProblem> getSyntaxProblems()
    {
        return _syntaxProblems;
    }

    public List<ReportedProblem> getSemanticProblems()
    {
        return _semanticProblems;
    }

    private boolean isASyntaxError(final Diagnostic problem)
    {
        return problem.getCode() == DiagnosticFactory.GENERAL_SYNTAX_ERROR_ID;
    }
    
    public void report(IMessage message)
    {
        throw new UnsupportedOperationException();
    }
}

Back to the top