blob: 771057930f36f4881c4a78896db60c5929734089 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008, 2009 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.jpa1.context.orm;
import org.eclipse.jpt.core.context.Converter;
import org.eclipse.jpt.core.context.LobConverter;
import org.eclipse.jpt.core.context.orm.OrmAttributeMapping;
import org.eclipse.jpt.core.context.orm.OrmConverter;
import org.eclipse.jpt.core.internal.context.orm.AbstractOrmXmlContextNode;
import org.eclipse.jpt.core.resource.orm.XmlConvertibleMapping;
import org.eclipse.jpt.core.utility.TextRange;
public class GenericOrmLobConverter extends AbstractOrmXmlContextNode
implements LobConverter, OrmConverter
{
protected XmlConvertibleMapping resourceConvertibleMapping;
public GenericOrmLobConverter(OrmAttributeMapping parent, XmlConvertibleMapping resourceMapping) {
super(parent);
this.initialize(resourceMapping);
}
@Override
public OrmAttributeMapping getParent() {
return (OrmAttributeMapping) super.getParent();
}
public String getType() {
return Converter.LOB_CONVERTER;
}
public void initialize(XmlConvertibleMapping resourceConvertibleMapping) {
this.resourceConvertibleMapping = resourceConvertibleMapping;
}
public void update() {
//do nothing
}
public TextRange getValidationTextRange() {
return this.resourceConvertibleMapping.getLobTextRange();
}
public void addToResourceModel() {
this.resourceConvertibleMapping.setLob(true);
}
public void removeFromResourceModel() {
this.resourceConvertibleMapping.setLob(false);
}
}