01: package com.sun.xml.bind.v2.model.annotation;
02:
03: import java.lang.annotation.Annotation;
04: import javax.xml.bind.annotation.XmlRootElement;
05:
06: final class XmlRootElementQuick extends Quick implements XmlRootElement {
07:
08: private final XmlRootElement core;
09:
10: public XmlRootElementQuick(Locatable upstream, XmlRootElement 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 XmlRootElementQuick(upstream,
21: ((XmlRootElement) core));
22: }
23:
24: public Class<XmlRootElement> annotationType() {
25: return XmlRootElement.class;
26: }
27:
28: public String name() {
29: return core.name();
30: }
31:
32: public String namespace() {
33: return core.namespace();
34: }
35:
36: }
|