blob: e86a8de5aa49e14255e92f35238670af02338cd6 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007, 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.internal.context.java;
import org.eclipse.jdt.core.dom.CompilationUnit;
import org.eclipse.jpt.core.context.QueryHint;
import org.eclipse.jpt.core.context.java.JavaQuery;
import org.eclipse.jpt.core.context.java.JavaQueryHint;
import org.eclipse.jpt.core.resource.java.QueryHintAnnotation;
import org.eclipse.jpt.core.utility.TextRange;
public class GenericJavaQueryHint extends AbstractJavaJpaContextNode implements JavaQueryHint
{
protected String name;
protected String value;
protected QueryHintAnnotation queryHint;
public GenericJavaQueryHint(JavaQuery 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(QueryHint.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(QueryHint.VALUE_PROPERTY, oldValue, newValue);
}
public void initializeFromResource(QueryHintAnnotation queryHint) {
this.queryHint = queryHint;
this.name = queryHint.getName();
this.value = queryHint.getValue();
}
public void update(QueryHintAnnotation queryHint) {
this.queryHint = queryHint;
this.setName(queryHint.getName());
this.setValue(queryHint.getValue());
}
public TextRange getValidationTextRange(CompilationUnit astRoot) {
// TODO Auto-generated method stub
return null;
}
}