summaryrefslogtreecommitdiff
path: root/src/fjbg/ch/epfl/lamp/fjbg/JReferenceType.java
blob: 99c6acff71820b786dfcc46e2fd8737b14f5396c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// $Id$

package ch.epfl.lamp.fjbg;

/**
 * Types for Java references, i.e. arrays and objects.
 *
 * @version 1.0
 * @author Michel Schinz
 */

abstract public class JReferenceType extends JType {
    public boolean isReferenceType() { return true; }

    abstract public String getDescriptor();
}