blob: 63a70a761d8179ff1f31d0e2e282181e3b89ecac [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.orm;
import java.util.ListIterator;
import org.eclipse.jpt.core.internal.context.base.IJpaContextNode;
import org.eclipse.jpt.core.internal.context.base.INamedNativeQuery;
import org.eclipse.jpt.core.internal.resource.orm.NamedNativeQuery;
public class XmlNamedNativeQuery extends AbstractXmlQuery<NamedNativeQuery>
implements INamedNativeQuery
{
protected String resultClass;
protected String resultSetMapping;
protected XmlNamedNativeQuery(IJpaContextNode parent) {
super(parent);
}
public String getResultClass() {
return this.resultClass;
}
public void setResultClass(String newResultClass) {
String oldResultClass = this.resultClass;
this.resultClass = newResultClass;
queryResource().setResultClass(newResultClass);
firePropertyChanged(INamedNativeQuery.RESULT_CLASS_PROPERTY, oldResultClass, newResultClass);
}
public String getResultSetMapping() {
return this.resultSetMapping;
}
public void setResultSetMapping(String newResultSetMapping) {
String oldResultSetMapping = this.resultSetMapping;
this.resultSetMapping = newResultSetMapping;
queryResource().setResultSetMapping(newResultSetMapping);
firePropertyChanged(INamedNativeQuery.RESULT_SET_MAPPING_PROPERTY, oldResultSetMapping, newResultSetMapping);
}
@Override
public void initialize(NamedNativeQuery queryResource) {
super.initialize(queryResource);
this.resultClass = queryResource.getResultClass();
this.resultSetMapping = queryResource.getResultSetMapping();
}
@Override
public void update(NamedNativeQuery queryResource) {
super.update(queryResource);
this.setResultClass(queryResource.getResultClass());
this.setResultSetMapping(queryResource.getResultSetMapping());
}
@Override
@SuppressWarnings("unchecked")
public ListIterator<XmlQueryHint> hints() {
return super.hints();
}
}