summaryrefslogtreecommitdiff
path: root/sources/scalac/atree/AMember.java
blob: 4275180a4d12a1c192f1fa8608d82b516518c8c0 (plain) (blame)
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
/*     ____ ____  ____ ____  ______                                     *\
**    / __// __ \/ __// __ \/ ____/    SOcos COmpiles Scala             **
**  __\_ \/ /_/ / /__/ /_/ /\_ \       (c) 2002, LAMP/EPFL              **
** /_____/\____/\___/\____/____/                                        **
\*                                                                      */

// $Id$

package scalac.atree;

import scalac.symtab.Symbol;

/** This class represents an attributed class member. */
public abstract class AMember {

    //########################################################################
    // Private Fields

    /** The member symbol */
    private final Symbol symbol;

    /** The static flag */
    private final boolean isStatic;

    /** The member code */
    private ACode code;

    //########################################################################
    // Public Constructors

    /** Initializes this instance. */
    public AMember(Symbol symbol, boolean isStatic) {
        this.symbol = symbol;
        this.isStatic = isStatic;
        this.code = ACode.Void;
    }

    //########################################################################
    // Public Methods

    /** Returns the symbol of this member. */
    public Symbol symbol() {
        return symbol;
    }

    /** Is this member public? */
    public boolean isPublic() {
        return symbol().isPublic();
    }

    /** Is this member private? */
    public boolean isPrivate() {
        return symbol().isPrivate();
    }

    /** Is this member protected? */
    public boolean isProtected() {
        return symbol().isProtected();
    }

    /** Is this member static? */
    public boolean isStatic() {
        return isStatic;
    }

    /** Is this member deprecated? */
    public boolean isDeprecated() {
        return false; // !!!
    }

    /** Is this member synthetic? */
    public boolean isSynthetic() {
        return symbol().isSynthetic();
    }

    /** Returns the member code. */
    public ACode code() {
        return code;
    }

    /** Sets the member code. */
    public void setCode(ACode code) {
        this.code = code;
    }

    //########################################################################
}