blob: 721650ac72d65b9c3170fa6f5418d83d628cd5ce [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 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.eclipselink.core.internal.context.orm;
import org.eclipse.jpt.core.context.XmlContextNode;
import org.eclipse.jpt.eclipselink.core.context.EclipseLinkConverter;
import org.eclipse.jpt.eclipselink.core.context.TypeConverter;
import org.eclipse.jpt.eclipselink.core.resource.orm.XmlTypeConverter;
public class EclipseLinkOrmTypeConverter extends EclipseLinkOrmConverter
implements TypeConverter
{
private String dataType;
private String objectType;
public EclipseLinkOrmTypeConverter(XmlContextNode parent, XmlTypeConverter xmlResource) {
super(parent, xmlResource);
}
public String getType() {
return EclipseLinkConverter.TYPE_CONVERTER;
}
@Override
protected XmlTypeConverter getXmlResource() {
return (XmlTypeConverter) super.getXmlResource();
}
// **************** data type **********************************************
public String getDataType() {
return this.dataType;
}
public void setDataType(String newDataType) {
String oldDataType = this.dataType;
this.dataType = newDataType;
getXmlResource().setDataType(newDataType);
firePropertyChanged(DATA_TYPE_PROPERTY, oldDataType, newDataType);
}
protected void setDataType_(String newDataType) {
String oldDataType = this.dataType;
this.dataType = newDataType;
firePropertyChanged(DATA_TYPE_PROPERTY, oldDataType, newDataType);
}
// **************** object type ********************************************
public String getObjectType() {
return this.objectType;
}
public void setObjectType(String newObjectType) {
String oldObjectType = this.objectType;
this.objectType = newObjectType;
getXmlResource().setObjectType(newObjectType);
firePropertyChanged(OBJECT_TYPE_PROPERTY, oldObjectType, newObjectType);
}
protected void setObjectType_(String newObjectType) {
String oldObjectType = this.objectType;
this.objectType = newObjectType;
firePropertyChanged(OBJECT_TYPE_PROPERTY, oldObjectType, newObjectType);
}
// **************** resource interaction ***********************************
protected void initialize(XmlTypeConverter xmlResource) {
super.initialize(xmlResource);
this.dataType = calculateDataType();
this.objectType = calculateObjectType();
}
public void update() {
super.update();
setDataType_(calculateDataType());
setObjectType_(calculateObjectType());
}
protected String calculateDataType() {
return getXmlResource().getDataType();
}
protected String calculateObjectType() {
return getXmlResource().getObjectType();
}
}