mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-09-26 21:30:46 +00:00
New icons (Silk icons)
All tags merged into one tree including AS3 classes
This commit is contained in:
@@ -0,0 +1,35 @@
|
||||
package com.jpexs.decompiler.flash.gui;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author JPEXS
|
||||
*/
|
||||
public class FrameNode {
|
||||
|
||||
private int frame;
|
||||
private Object parent;
|
||||
private boolean display;
|
||||
|
||||
public FrameNode(int frame, Object parent, boolean display) {
|
||||
this.frame = frame;
|
||||
this.parent = parent;
|
||||
this.display = display;
|
||||
}
|
||||
|
||||
public boolean isDisplayed() {
|
||||
return display;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return "frame " + frame;
|
||||
}
|
||||
|
||||
public int getFrame() {
|
||||
return frame;
|
||||
}
|
||||
|
||||
public Object getParent() {
|
||||
return parent;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user