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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
/*
 * %W% %E%
 *
 * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved.
 * ORACLE PROPRIETARY/CONFIDENTIAL.  Use is subject to license terms.
 * 
 */

package com.sun.tools.javadoc;


import com.sun.javadoc.*;

import com.sun.tools.javac.code.Type;


/**
 * Abstract implementation of <code>Type</code>, with useful
 * defaults for the methods in <code>Type</code> (and a couple from
 * <code>ProgramElementDoc</code>).
 *
 * @author Scott Seligman
 * @version %I% %E%
 * @since 1.5
 */
abstract class AbstractTypeImpl implements com.sun.javadoc.Type {

    protected final DocEnv env;
    protected final Type type;

    protected AbstractTypeImpl(DocEnv env, Type type) {
    this.env = env;
    this.type = type;
    }

    public String typeName() {
    return type.tsym.name.toString();
    }

    public String qualifiedTypeName() {
    return type.tsym.getQualifiedName().toString();
    }

    public String simpleTypeName() {
    return type.tsym.name.toString();
    }

    public String name() {
    return typeName();
    }

    public String qualifiedName() {
    return qualifiedTypeName();
    }

    public String toString() {
    return qualifiedTypeName();
    }

    public String dimension() {
    return "";
    }

    public boolean isPrimitive() {
    return false;
    }

    public ClassDoc asClassDoc() {
    return null;
    }

    public TypeVariable asTypeVariable() {
    return null;
    }

    public WildcardType asWildcardType() {
    return null;
    }

    public ParameterizedType asParameterizedType() {
    return null;
    }

    public AnnotationTypeDoc asAnnotationTypeDoc() {
    return null;
    }
}
			
			

Browsed Source: [clear]