/******************************************************************************* * 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.incquery.runtime.rete.boundary; import org.eclipse.incquery.runtime.rete.matcher.IPatternMatcherRuntimeContext; import org.eclipse.incquery.runtime.rete.network.Network; import org.eclipse.incquery.runtime.rete.network.Receiver; import org.eclipse.incquery.runtime.rete.remote.Address; public class GeneralizationFeeder extends Feeder { /** * @param receiver * @param context * @param network * @param boundary */ public GeneralizationFeeder(Address<? extends Receiver> receiver, IPatternMatcherRuntimeContext<?> context, Network network, ReteBoundary<?> boundary) { super(receiver, context, network, boundary); // TODO Auto-generated constructor stub } @Override public void feed() { context.enumerateAllGeneralizations(pairCrawler()); } }