blob: 31933550b3dc66c4b4074a0ae9bc7389b3a09caa [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008 Oracle.
* 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.jpt.core.context.orm;
import java.util.ListIterator;
import org.eclipse.jpt.core.context.NamedQuery;
import org.eclipse.jpt.core.resource.orm.XmlNamedQuery;
public interface OrmNamedQuery extends OrmQuery, NamedQuery
{
ListIterator<OrmQueryHint> hints();
void initialize(XmlNamedQuery queryResource);
void update(XmlNamedQuery queryResource);
}