prepare for Issue #350 (Allow to open multiple SWF files into the same ffdec instance) 2

This commit is contained in:
Honfika
2013-12-21 23:36:06 +01:00
parent 727d7a74e5
commit b9a1269505
30 changed files with 753 additions and 458 deletions
@@ -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() {