Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 5d27e9278ddb85b9ba50f510c65cd144f93838d9 (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
68
69
70
71
72
73
74
75
76
77
/*******************************************************************************
 * Copyright (c) 2000, 2004 IBM Corporation and others.
 * All rights reserved. This program and the accompanying materials 
 * are made available under the terms of the Common Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/cpl-v10.html
 * 
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/
package org.eclipse.ui.internal.console;

import org.eclipse.core.runtime.CoreException;
import org.eclipse.ui.console.IConsole;
import org.eclipse.ui.console.IPatternMatchListener;
import org.eclipse.ui.console.IPatternMatchListenerDelegate;
import org.eclipse.ui.console.PatternMatchEvent;

public class PatternMatchListener implements IPatternMatchListener {

    private PatternMatchListenerExtension fExtension;
    private IPatternMatchListenerDelegate fDelegate;
    private int fMatchContext;
    
    public PatternMatchListener(PatternMatchListenerExtension extension) throws CoreException {
        fExtension = extension;
        fDelegate = fExtension.createDelegate();
        if (fExtension.getMatchContext().equals("document")) { //$NON-NLS-1$
            fMatchContext = IPatternMatchListener.DOCUMENT_MATCH;
        } else {
            fMatchContext = IPatternMatchListener.LINE_MATCH;
        }
    }   

    /* (non-Javadoc)
     * @see org.eclipse.ui.console.IPatternMatchListener#getPattern()
     */
    public String getPattern() {
        return fExtension.getPattern();
    }

    /* (non-Javadoc)
     * @see org.eclipse.ui.console.IPatternMatchListener#getCompilerFlags()
     */
    public int getCompilerFlags() {
        return fExtension.getCompilerFlags();
    }
    
    /* (non-Javadoc)
     * @see org.eclipse.ui.console.IPatternMatchListener#getMatchContext()
     */
    public int getMatchContext() {
        return fMatchContext;
    }
    
    /* (non-Javadoc)
     * @see org.eclipse.ui.console.IPatternMatchListener#matchFound(org.eclipse.ui.console.PatternMatchEvent)
     */
    public void matchFound(PatternMatchEvent event) {
        fDelegate.matchFound(event);
    }

    /* (non-Javadoc)
     * @see org.eclipse.ui.console.IPatternMatchListener#connect(org.eclipse.ui.console.IConsole)
     */
    public void connect(IConsole console) {
        fDelegate.connect(console);
    }

    /* (non-Javadoc)
     * @see org.eclipse.ui.console.IPatternMatchListener#disconnect()
     */
    public void disconnect() {
        fDelegate.disconnect();
    }

}

Back to the top