blob: e97bd63d552c7b7b39cec230029c98f25735e296 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004-2008 Gabor Bergmann and Daniel Varro
* 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:
* Gabor Bergmann - initial API and implementation
*******************************************************************************/
package org.eclipse.viatra2.gtasm.patternmatcher.incremental.rete.boundary;
/**
* @author Bergmann Gábor
*
*/
public interface IManipulationListener extends Disconnectable {
/**
* @param element
* @param termEvaluatorNode
*/
void registerSensitiveTerm(Object element,
PredicateEvaluatorNode termEvaluatorNode);
/**
* @param element
* @param termEvaluatorNode
*/
void unregisterSensitiveTerm(Object element,
PredicateEvaluatorNode termEvaluatorNode);
}