mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-09-27 15:30:47 +00:00
prepare for Issue #350 (Allow to open multiple SWF files into the same ffdec instance) 2
This commit is contained in:
@@ -16,11 +16,16 @@
|
||||
*/
|
||||
package com.jpexs.decompiler.flash.gui.abc;
|
||||
|
||||
import com.jpexs.decompiler.flash.SWF;
|
||||
import java.util.StringTokenizer;
|
||||
|
||||
public class Tree {
|
||||
|
||||
private final TreeElement ROOT = new TreeElement("", "", null, null);
|
||||
private final TreeElement ROOT;
|
||||
|
||||
public Tree(SWF swf) {
|
||||
ROOT = new TreeElement(swf, "", "", null, null);
|
||||
}
|
||||
|
||||
public void add(String name, String path, Object item) {
|
||||
StringTokenizer st = new StringTokenizer(path, ".");
|
||||
|
||||
Reference in New Issue
Block a user