mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-09-27 15:40:53 +00:00
prepare for Issue #350 (Allow to open multiple SWF files into the same ffdec instance) 2
This commit is contained in:
@@ -17,18 +17,23 @@
|
||||
package com.jpexs.decompiler.flash.gui;
|
||||
|
||||
import com.jpexs.decompiler.flash.SWF;
|
||||
import com.jpexs.decompiler.flash.TagNode;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author JPEXS
|
||||
*/
|
||||
public class SWFRoot {
|
||||
public class SWFRoot implements TreeNode {
|
||||
|
||||
private SWF swf;
|
||||
private String name;
|
||||
public List<TagNode> list;
|
||||
|
||||
public SWFRoot(SWF swf, String name) {
|
||||
public SWFRoot(SWF swf, String name, List<TagNode> list) {
|
||||
this.swf = swf;
|
||||
this.name = name;
|
||||
this.list = list;
|
||||
}
|
||||
|
||||
public SWF getSwf() {
|
||||
|
||||
Reference in New Issue
Block a user