01: package com.sun.xml.bind.v2.model.annotation;
02:
03: import java.lang.annotation.Annotation;
04: import javax.xml.bind.annotation.XmlElementRef;
05:
06: final class XmlElementRefQuick extends Quick implements XmlElementRef {
07:
08: private final XmlElementRef core;
09:
10: public XmlElementRefQuick(Locatable upstream, XmlElementRef core) {
11: super (upstream);
12: this .core = core;
13: }
14:
15: protected Annotation getAnnotation() {
16: return core;
17: }
18:
19: protected Quick newInstance(Locatable upstream, Annotation core) {
20: return new XmlElementRefQuick(upstream, ((XmlElementRef) core));
21: }
22:
23: public Class<XmlElementRef> annotationType() {
24: return XmlElementRef.class;
25: }
26:
27: public String name() {
28: return core.name();
29: }
30:
31: public Class type() {
32: return core.type();
33: }
34:
35: public String namespace() {
36: return core.namespace();
37: }
38:
39: }
|