blob: a7a8b6b135dbd48d4ba6cd93d16c69828efc8d80 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007 Oracle Corporation.
* 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:
* Oracle - initial API and implementation
*
********************************************************************************/
package org.eclipse.jst.jsf.common.metadata.query;
import org.eclipse.jst.jsf.common.metadata.Entity;
/**
* Entity querying interface
* NOT to implemented by clients directly. Clients should subclass AbstractEntityQueryVisitor instead.
*
*/
public interface IEntityQueryVisitor extends IEntityVisitor{
/**
* @param initialEntityContext
* @param entityKey to find relative to the passed intialEntityContext
* @return IResultSet of Entities matching the key. IResultSet must NOT be null. Implementers may return {@link EmptyResultSet}.
*/
public IResultSet/*<Entity>*/ findEntities(final Entity initialEntityContext,
final String entityKey);
}