OSDN Git Service

delete branches. use stigmata/plugins/{tags, branches}
[stigmata/stigmata-plugins.git] / wsp / src / main / java / jp / sourceforge / stigmata / birthmarks / wsp / LabelOpcode.java
1 package jp.sourceforge.stigmata.birthmarks.wsp;
2
3 /*
4  * $Id$
5  */
6
7 import org.objectweb.asm.Label;
8
9 /**
10  * 
11  * @author Haruaki Tamada
12  * @version $Revision$
13  */
14 public class LabelOpcode extends Opcode{
15     private static final long serialVersionUID = -346783431316464L;
16
17     private Label label;
18
19     public LabelOpcode(Label label){
20         super(-1, "targeter", 0, 0, Category.TARGETER);
21         this.label = label;
22     }
23
24     public Label getLabel(){
25         return label;
26     }
27 }