summaryrefslogtreecommitdiff
path: root/src/fjbg/ch/epfl/lamp/fjbg/JReferenceType.java
blob: 646b0f878ddafab45c8a27f7e5dccfe3b29bbf0e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* FJBG -- Fast Java Bytecode Generator
 * Copyright 2002-2011 LAMP/EPFL
 * @author  Michel Schinz
 */

package ch.epfl.lamp.fjbg;

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

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

    abstract public String getDescriptor();
}