blob: 6a4eaa81f82d69aa1b39688463f83e0c13b5d4c5 [file] [log] [blame]
/**
* <copyright>
*
* Copyright (c) 2009-2010 Thales Corporate Services S.A.S.
* 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:
* Thales Corporate Services S.A.S - initial API and implementation
*
* </copyright>
*/
package org.eclipse.egf.pattern.execution;
import org.eclipse.egf.model.pattern.BundleAccessor;
import org.eclipse.egf.model.pattern.PatternExecutionReporter;
/**
* @author Thomas Guiu
*
*/
public class ExecutionContext extends DefaultInternalPatternContext {
private PatternExecutionReporter reporter;
public ExecutionContext(BundleAccessor accessor) {
super(accessor);
}
public ExecutionContext(InternalPatternContext parent) {
super((InternalPatternContext) parent);
}
public void setReporter(PatternExecutionReporter reporter) {
this.reporter = reporter;
}
public boolean hasReporter() {
return reporter != null;
}
public boolean useReporter() {
return parent == null;
}
public PatternExecutionReporter getReporter() {
if (reporter == null) {
// no need for a chain of command
// if (parent == null)
throw new IllegalStateException();
}
return reporter;
}
}