All Downloads are FREE. Search and download functionalities are using the official Maven repository.

se.l4.silo.search.query.AbstractQueryPart Maven / Gradle / Ivy

The newest version!
package se.l4.silo.search.query;

import se.l4.silo.search.QueryPart;

public abstract class AbstractQueryPart
	implements QueryPart
{
	protected R parent;
	protected QueryReceiver receiver;

	@Override
	public void parent(R path, QueryReceiver receiver)
	{
		this.parent = path;
		this.receiver = receiver;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy