blob: 5b10162054ceaf8c3d33eaed8df0fac847e1afe0 [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 org.eclipse.jpt.core.internal.context.base.IQueryHint;
import org.eclipse.jpt.core.internal.context.base.JpaContextNode;
import org.eclipse.jpt.core.internal.resource.orm.QueryHint;
public class XmlQueryHint extends JpaContextNode implements IQueryHint
{
protected String name;
protected String value;
protected QueryHint queryHint;
public XmlQueryHint(AbstractXmlQuery<?> parent) {
super(parent);
}
public String getName() {
return this.name;
}
public void setName(String newName) {
String oldName = this.name;
this.name = newName;
this.queryHint.setName(newName);
firePropertyChanged(IQueryHint.NAME_PROPERTY, oldName, newName);
}
public String getValue() {
return this.value;
}
public void setValue(String newValue) {
String oldValue = this.value;
this.value = newValue;
this.queryHint.setValue(newValue);
firePropertyChanged(IQueryHint.VALUE_PROPERTY, oldValue, newValue);
}
public void initialize(QueryHint queryHint) {
this.queryHint = queryHint;
this.name = queryHint.getName();
this.value = queryHint.getValue();
}
public void update(QueryHint queryHint) {
this.queryHint = queryHint;
this.setName(queryHint.getName());
this.setValue(queryHint.getValue());
}
}