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