blob: 91545e56f7667bea3ad63fbba97380890efc9e3c [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007, 2015 Oracle. All rights reserved.
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0, which accompanies this distribution
* and is available at https://www.eclipse.org/legal/epl-2.0/.
*
* Contributors:
* Oracle - initial API and implementation
******************************************************************************/
package org.eclipse.jpt.jpa.core.internal.context.java;
import java.util.List;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.jpt.common.core.utility.TextRange;
import org.eclipse.jpt.common.utility.internal.ObjectTools;
import org.eclipse.jpt.common.utility.internal.StringTools;
import org.eclipse.jpt.jpa.core.context.Generator;
import org.eclipse.jpt.jpa.core.context.java.JavaGenerator;
import org.eclipse.jpt.jpa.core.context.java.JavaGeneratorContainer;
import org.eclipse.jpt.jpa.core.internal.context.MappingTools;
import org.eclipse.jpt.jpa.core.resource.java.GeneratorAnnotation;
import org.eclipse.jpt.jpa.core.validation.JptJpaCoreValidationMessages;
import org.eclipse.wst.validation.internal.provisional.core.IMessage;
import org.eclipse.wst.validation.internal.provisional.core.IReporter;
/**
* Java sequence or table generator
*/
public abstract class AbstractJavaGenerator<P extends JavaGeneratorContainer, A extends GeneratorAnnotation>
extends AbstractJavaContextModel<P>
implements JavaGenerator
{
protected final A generatorAnnotation;
protected String name;
protected AbstractJavaGenerator(P parent, A generatorAnnotation) {
super(parent);
this.generatorAnnotation = generatorAnnotation;
this.name = generatorAnnotation.getName();
}
// ********** synchronize/update **********
@Override
public void synchronizeWithResourceModel(IProgressMonitor monitor) {
super.synchronizeWithResourceModel(monitor);
this.setName_(this.generatorAnnotation.getName());
}
// ********** name **********
public String getName() {
return this.name;
}
public void setName(String name) {
this.generatorAnnotation.setName(name);
this.setName_(name);
}
protected void setName_(String name) {
String old = this.name;
this.name = name;
this.firePropertyChanged(NAME_PROPERTY, old, name);
}
// ********** validation **********
public boolean supportsValidationMessages() {
return MappingTools.modelIsInternalSource(this, this.getGeneratorAnnotation());
}
@Override
public void validate(List<IMessage> messages, IReporter reporter) {
super.validate(messages, reporter);
if (StringTools.isBlank(this.name)){
messages.add(
this.buildValidationMessage(
this.getNameTextRange(),
JptJpaCoreValidationMessages.GENERATOR_NAME_UNDEFINED
)
);
}
}
public TextRange getValidationTextRange() {
TextRange textRange = this.generatorAnnotation.getTextRange();
return (textRange != null) ? textRange : this.parent.getValidationTextRange();
}
public TextRange getNameTextRange() {
return this.getValidationTextRange(this.generatorAnnotation.getNameTextRange());
}
public boolean isEquivalentTo(Generator other) {
return (this != other) &&
(this.getGeneratorType() == other.getGeneratorType()) &&
this.isEquivalentTo_(other);
}
protected boolean isEquivalentTo_(Generator other) {
return ObjectTools.equals(this.name, other.getName());
}
// ********** misc **********
public A getGeneratorAnnotation() {
return this.generatorAnnotation;
}
@Override
public void toString(StringBuilder sb) {
sb.append(this.name);
}
}