blob: 56f7b6a48ff56c05f8f72a95d74c06b7a1f9e374 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009, 2012 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.jpa.eclipselink.core.internal.resource.java.binary;
import java.util.Vector;
import org.eclipse.jdt.core.IAnnotation;
import org.eclipse.jpt.common.core.resource.java.JavaResourceAnnotatedElement;
import org.eclipse.jpt.common.core.utility.TextRange;
import org.eclipse.jpt.common.utility.internal.iterables.ListIterable;
import org.eclipse.jpt.common.utility.internal.iterables.LiveCloneListIterable;
import org.eclipse.jpt.jpa.eclipselink.core.resource.java.EclipseLink;
import org.eclipse.jpt.jpa.eclipselink.core.resource.java.EclipseLinkConversionValueAnnotation;
import org.eclipse.jpt.jpa.eclipselink.core.resource.java.EclipseLinkObjectTypeConverterAnnotation;
/**
* <code>org.eclipse.persistence.annotations.ObjectTypeConverter</code>
*/
public final class BinaryEclipseLinkObjectTypeConverterAnnotation
extends BinaryEclipseLinkBaseTypeConverterAnnotation
implements EclipseLinkObjectTypeConverterAnnotation
{
private String defaultObjectValue;
private final Vector<EclipseLinkConversionValueAnnotation> conversionValues;
public BinaryEclipseLinkObjectTypeConverterAnnotation(JavaResourceAnnotatedElement parent, IAnnotation jdtAnnotation) {
super(parent, jdtAnnotation);
this.defaultObjectValue = this.buildDefaultObjectValue();
this.conversionValues = this.buildConversionValues();
}
public String getAnnotationName() {
return ANNOTATION_NAME;
}
@Override
public void update() {
super.update();
this.setDefaultObjectValue_(this.buildDefaultObjectValue());
this.updateConversionValues();
}
// ********** BinaryNamedConverterAnnotation implementation **********
@Override
String getNameElementName() {
return EclipseLink.OBJECT_TYPE_CONVERTER__NAME;
}
// ********** BinaryBaseTypeConverterAnnotation implementation **********
@Override
String getDataTypeElementName() {
return EclipseLink.OBJECT_TYPE_CONVERTER__DATA_TYPE;
}
@Override
String getObjectTypeElementName() {
return EclipseLink.OBJECT_TYPE_CONVERTER__OBJECT_TYPE;
}
// ********** ObjectTypeConverterAnnotation implementation **********
// ***** default object value
public String getDefaultObjectValue() {
return this.defaultObjectValue;
}
public void setDefaultObjectValue(String defaultObjectValue) {
throw new UnsupportedOperationException();
}
private void setDefaultObjectValue_(String defaultObjectValue) {
String old = this.defaultObjectValue;
this.defaultObjectValue = defaultObjectValue;
this.firePropertyChanged(DEFAULT_OBJECT_VALUE_PROPERTY, old, defaultObjectValue);
}
private String buildDefaultObjectValue() {
return (String) this.getJdtMemberValue(EclipseLink.OBJECT_TYPE_CONVERTER__DEFAULT_OBJECT_VALUE);
}
public TextRange getDefaultObjectValueTextRange() {
throw new UnsupportedOperationException();
}
// ***** conversion values
public ListIterable<EclipseLinkConversionValueAnnotation> getConversionValues() {
return new LiveCloneListIterable<EclipseLinkConversionValueAnnotation>(this.conversionValues);
}
public int getConversionValuesSize() {
return this.conversionValues.size();
}
public EclipseLinkConversionValueAnnotation conversionValueAt(int index) {
return this.conversionValues.get(index);
}
public EclipseLinkConversionValueAnnotation addConversionValue(int index) {
throw new UnsupportedOperationException();
}
public void moveConversionValue(int targetIndex, int sourceIndex) {
throw new UnsupportedOperationException();
}
public void removeConversionValue(int index) {
throw new UnsupportedOperationException();
}
private Vector<EclipseLinkConversionValueAnnotation> buildConversionValues() {
Object[] jdtConversionValues = this.getJdtMemberValues(EclipseLink.OBJECT_TYPE_CONVERTER__CONVERSION_VALUES);
Vector<EclipseLinkConversionValueAnnotation> result = new Vector<EclipseLinkConversionValueAnnotation>(jdtConversionValues.length);
for (Object jdtConversionValue : jdtConversionValues) {
result.add(new BinaryEclipseLinkConversionValueAnnotation(this, (IAnnotation) jdtConversionValue));
}
return result;
}
// TODO
private void updateConversionValues() {
throw new UnsupportedOperationException();
}
}