summaryrefslogtreecommitdiff
path: root/src/fjbg/ch/epfl/lamp/fjbg/JReferenceType.java
blob: 73d1026c04760f3da732de0d029bd1219bbe0094 (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-2013 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();
}