blob: 6e7fbb65b65780da5d8e573a9e28559c81f5984b [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.netbeans.modules.j2ee.persistenceapi.metadata.orm.annotation;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import javax.lang.model.element.AnnotationMirror;
import javax.lang.model.element.AnnotationValue;
import javax.lang.model.type.TypeMirror;
import org.netbeans.modules.j2ee.metadata.model.api.support.annotation.AnnotationModelHelper;
import org.netbeans.modules.j2ee.metadata.model.api.support.annotation.parser.AnnotationParser;
import org.netbeans.modules.j2ee.metadata.model.api.support.annotation.parser.ArrayValueHandler;
import org.netbeans.modules.j2ee.metadata.model.api.support.annotation.parser.ParseResult;
import org.netbeans.modules.j2ee.persistence.api.metadata.orm.*;
public class JoinTableImpl implements JoinTable {
private final ParseResult parseResult;
public JoinTableImpl(final AnnotationModelHelper helper, AnnotationMirror annotation) {
AnnotationParser parser = AnnotationParser.create(helper);
ArrayValueHandler joinColumnHandler = new ArrayValueHandler() {
public Object handleArray(List<AnnotationValue> arrayMembers) {
List<JoinColumn> result = new ArrayList<JoinColumn>();
for (AnnotationValue arrayMember : arrayMembers) {
AnnotationMirror joinColumnAnnotation = (AnnotationMirror)arrayMember.getValue();
result.add(new JoinColumnImpl(helper, joinColumnAnnotation));
}
return result;
}
};
TypeMirror joinColumnType = helper.resolveType("javax.persistence.JoinColumn"); // NOI18N
parser.expectAnnotationArray("joinColumn", joinColumnType, joinColumnHandler, parser.defaultValue(Collections.emptyList())); // NOI18N
parser.expectAnnotationArray("inverseJoinColumn", joinColumnType, joinColumnHandler, parser.defaultValue(Collections.emptyList())); // NOI18N
parseResult = parser.parse(annotation);
}
public void setName(String value) {
throw new UnsupportedOperationException("This operation is not implemented yet."); // NOI18N
}
public String getName() {
throw new UnsupportedOperationException("This operation is not implemented yet."); // NOI18N
}
public void setCatalog(String value) {
throw new UnsupportedOperationException("This operation is not implemented yet."); // NOI18N
}
public String getCatalog() {
throw new UnsupportedOperationException("This operation is not implemented yet."); // NOI18N
}
public void setSchema(String value) {
throw new UnsupportedOperationException("This operation is not implemented yet."); // NOI18N
}
public String getSchema() {
throw new UnsupportedOperationException("This operation is not implemented yet."); // NOI18N
}
public void setJoinColumn(int index, JoinColumn value) {
throw new UnsupportedOperationException("This operation is not implemented yet."); // NOI18N
}
public JoinColumn getJoinColumn(int index) {
@SuppressWarnings("unchecked") // can this be avoided?
List<JoinColumn> result = parseResult.get("joinColumn", List.class); // NOI18N
return result.get(index);
}
public int sizeJoinColumn() {
throw new UnsupportedOperationException("This operation is not implemented yet."); // NOI18N
}
public void setJoinColumn(JoinColumn[] value) {
throw new UnsupportedOperationException("This operation is not implemented yet."); // NOI18N
}
public JoinColumn[] getJoinColumn() {
@SuppressWarnings("unchecked") // can this be avoided?
List<JoinColumn> result = parseResult.get("joinColumn", List.class); // NOI18N
return result.toArray(new JoinColumn[result.size()]);
}
public int addJoinColumn(JoinColumn value) {
throw new UnsupportedOperationException("This operation is not implemented yet."); // NOI18N
}
public int removeJoinColumn(JoinColumn value) {
throw new UnsupportedOperationException("This operation is not implemented yet."); // NOI18N
}
public JoinColumn newJoinColumn() {
throw new UnsupportedOperationException("This operation is not implemented yet."); // NOI18N
}
public void setInverseJoinColumn(int index, JoinColumn value) {
throw new UnsupportedOperationException("This operation is not implemented yet."); // NOI18N
}
public JoinColumn getInverseJoinColumn(int index) {
@SuppressWarnings("unchecked") // can this be avoided?
List<JoinColumn> result = parseResult.get("inverseJoinColumn", List.class); // NOI18N
return result.get(index);
}
public int sizeInverseJoinColumn() {
throw new UnsupportedOperationException("This operation is not implemented yet."); // NOI18N
}
public void setInverseJoinColumn(JoinColumn[] value) {
throw new UnsupportedOperationException("This operation is not implemented yet."); // NOI18N
}
public JoinColumn[] getInverseJoinColumn() {
@SuppressWarnings("unchecked") // can this be avoided?
List<JoinColumn> result = parseResult.get("inverseJoinColumn", List.class); // NOI18N
return result.toArray(new JoinColumn[result.size()]);
}
public int addInverseJoinColumn(JoinColumn value) {
throw new UnsupportedOperationException("This operation is not implemented yet."); // NOI18N
}
public int removeInverseJoinColumn(JoinColumn value) {
throw new UnsupportedOperationException("This operation is not implemented yet."); // NOI18N
}
public void setUniqueConstraint(int index, UniqueConstraint value) {
throw new UnsupportedOperationException("This operation is not implemented yet."); // NOI18N
}
public UniqueConstraint getUniqueConstraint(int index) {
throw new UnsupportedOperationException("This operation is not implemented yet."); // NOI18N
}
public int sizeUniqueConstraint() {
throw new UnsupportedOperationException("This operation is not implemented yet."); // NOI18N
}
public void setUniqueConstraint(UniqueConstraint[] value) {
throw new UnsupportedOperationException("This operation is not implemented yet."); // NOI18N
}
public UniqueConstraint[] getUniqueConstraint() {
throw new UnsupportedOperationException("This operation is not implemented yet."); // NOI18N
}
public int addUniqueConstraint(UniqueConstraint value) {
throw new UnsupportedOperationException("This operation is not implemented yet."); // NOI18N
}
public int removeUniqueConstraint(UniqueConstraint value) {
throw new UnsupportedOperationException("This operation is not implemented yet."); // NOI18N
}
public UniqueConstraint newUniqueConstraint() {
throw new UnsupportedOperationException("This operation is not implemented yet."); // NOI18N
}
}