01: package com.sun.xml.bind.v2.model.annotation;
02:
03: import java.lang.annotation.Annotation;
04: import javax.xml.bind.annotation.XmlValue;
05:
06: final class XmlValueQuick extends Quick implements XmlValue {
07:
08: private final XmlValue core;
09:
10: public XmlValueQuick(Locatable upstream, XmlValue 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 XmlValueQuick(upstream, ((XmlValue) core));
21: }
22:
23: public Class<XmlValue> annotationType() {
24: return XmlValue.class;
25: }
26:
27: }
|