summaryrefslogblamecommitdiff
path: root/src/fjbg/ch/epfl/lamp/fjbg/JLabel.java
blob: 96f3b4ebefe52d0207249ce77ecfff5d9a8fdf10 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
                                       
                                

                         





                                                
                        
               








                                                                      
                            



                                       
                             


                             
/* FJBG -- Fast Java Bytecode Generator
 * Copyright 2002-2013 LAMP/EPFL
 * @author  Michel Schinz
 */

package ch.epfl.lamp.fjbg;

/**
 * Labels which can be attached to instructions.
 *
 * @author Michel Schinz
 * @version 1.0
 */

public class JLabel {
    public final static int UNDEFINED_ANCHOR = -1;
    protected int anchor = UNDEFINED_ANCHOR;

    public boolean isAnchored() { return anchor != UNDEFINED_ANCHOR; }

    public int getAnchor() {
        assert isAnchored();
        return anchor;
    }

    public void setAnchor(int anchor) {
        assert !isAnchored();
        this.anchor = anchor;
    }
}