mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-09-25 05:00:46 +00:00
Initial version based on previous work. (Version alpha 7)
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
package com.jpexs.asdec.action.treemodel;
|
||||
|
||||
import com.jpexs.asdec.action.Action;
|
||||
|
||||
public class SetTarget2TreeItem extends TreeItem {
|
||||
public TreeItem target;
|
||||
|
||||
public SetTarget2TreeItem(Action instruction, TreeItem target) {
|
||||
super(instruction, PRECEDENCE_PRIMARY);
|
||||
this.target = target;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString(ConstantPool constants) {
|
||||
return "tellTarget(" + target.toString(constants) + ");";
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user