blob: 24d813e95cede1e03ee38a99ff6252e6d54f84ff [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007 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.internal.context.base;
public interface INamedNativeQuery extends IQuery
{
String getResultClass();
void setResultClass(String value);
String RESULT_CLASS_PROPERTY = "resultClassProperty";
String getResultSetMapping();
void setResultSetMapping(String value);
String RESULT_SET_MAPPING_PROPERTY = "resultSetMappingProperty";
}