1 /*
2  * Copyright (c) 1997, 2018 Oracle and/or its affiliates. All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Distribution License v. 1.0, which is available at
6  * http://www.eclipse.org/org/documents/edl-v10.php.
7  *
8  * SPDX-License-Identifier: BSD-3-Clause
9  */

10
11 package com.sun.xml.bind.v2.model.impl;
12
13 import java.lang.reflect.Type;
14
15 import com.sun.xml.bind.v2.model.nav.Navigator;
16 import com.sun.xml.bind.v2.model.runtime.RuntimeNonElement;
17 import com.sun.xml.bind.v2.runtime.Transducer;
18
19 /**
20  * @author Kohsuke Kawaguchi
21  */

22 final class RuntimeAnyTypeImpl extends AnyTypeImpl<Type,Class> implements RuntimeNonElement {
23     private RuntimeAnyTypeImpl() {
24         super(Utils.REFLECTION_NAVIGATOR);
25     }
26
27     public <V> Transducer<V> getTransducer() {
28         return null;
29     }
30
31     static final RuntimeNonElement theInstance = new RuntimeAnyTypeImpl();
32 }
33