Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: a8631f97b34e67b42c37ebe2f8dff43a9aa8bd91 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/*******************************************************************************
 * 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;
import org.eclipse.jst.jsf.common.metadata.Trait;

/**
 * Trait querying interface
 * <p>NOT to implemented by clients directly.   Clients should subclass AbstractTraitQueryVisitor instead.
 * <p><b>Provisional API - subject to change</b></p>
 */
public interface ITraitQueryVisitor extends ITraitVisitor{
	/**
	 * @param entity
	 * @param traitKey
	 * @return IResultSet of Traits.  IResultSet must NOT be null.  Implementers may return {@link EmptyResultSet}.
	 */
	public IResultSet<Trait> findTraits(final Entity entity,
			final String traitKey);

}

Back to the top