Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 5e24cdd73b2b210549637ccc5da09635b1b1fa63 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
/*******************************************************************************
 *  Copyright (c) 2011  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.jaxb.core.internal.resource.java.binary;

import java.util.Vector;
import org.eclipse.jdt.core.IAnnotation;
import org.eclipse.jpt.common.utility.internal.iterables.ListIterable;
import org.eclipse.jpt.common.utility.internal.iterables.LiveCloneListIterable;
import org.eclipse.jpt.jaxb.core.resource.java.JAXB;
import org.eclipse.jpt.jaxb.core.resource.java.JavaResourceNode;
import org.eclipse.jpt.jaxb.core.resource.java.XmlElementRefAnnotation;
import org.eclipse.jpt.jaxb.core.resource.java.XmlElementRefsAnnotation;


public class BinaryXmlElementRefsAnnotation
		extends BinaryAnnotation
		implements XmlElementRefsAnnotation {
	
	private final Vector<XmlElementRefAnnotation> xmlElementRefs;
	
	
	public BinaryXmlElementRefsAnnotation(JavaResourceNode parent, IAnnotation jdtAnnotation) {
		super(parent, jdtAnnotation);
		this.xmlElementRefs = this.buildXmlElementRefs();
	}
	
	
	private Vector<XmlElementRefAnnotation> buildXmlElementRefs() {
		Object[] jdtXmlElementRefs = this.getJdtMemberValues(JAXB.XML_ELEMENT_REFS__VALUE);
		Vector<XmlElementRefAnnotation> result = new Vector<XmlElementRefAnnotation>(jdtXmlElementRefs.length);
		for (Object jdtXmlElementRef : jdtXmlElementRefs) {
			result.add(new BinaryXmlElementRefAnnotation(this, (IAnnotation) jdtXmlElementRef));
		}
		return result;
	}

	public String getAnnotationName() {
		return ANNOTATION_NAME;
	}

	public ListIterable<XmlElementRefAnnotation> getXmlElementRefs() {
		return new LiveCloneListIterable<XmlElementRefAnnotation>(this.xmlElementRefs);
	}

	public int getXmlElementRefsSize() {
		return this.xmlElementRefs.size();
	}

	public XmlElementRefAnnotation xmlElementRefAt(int index) {
		return this.xmlElementRefs.elementAt(index);
	}

	public XmlElementRefAnnotation addXmlElementRef(int index) {
		throw new UnsupportedOperationException();
	}

	public void moveXmlElementRef(int targetIndex, int sourceIndex) {
		throw new UnsupportedOperationException();
	}

	public void removeXmlElementRef(int index) {
		throw new UnsupportedOperationException();
	}
}

Back to the top